eazy-ease
v1.0.2
Published
A lib of JS bezier easings. Can be used anywhere as a string, primarily made for styled-components
Downloads
22
Maintainers
Readme
Eazy Ease
npm install --save eazy-ease
Styled Components Example
import { easeInOutCirc } from 'eazy-ease';
const MiniCartWrapper = styled.div`
width: 100%;
min-height: 247px;
z-index: 10;
padding: 20px 40px;
transition: 0.3s ${easeInOutCirc} all;
`;