Package Exports
- css-in-js-easing
- css-in-js-easing/dist/index.cjs.js
- css-in-js-easing/dist/index.esm.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (css-in-js-easing) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
css-in-js-easing
This library retrieves easing-function for CSS property. It is primarily intended for use with CSS-in-JS.
install
npm i -D css-in-js-easing
usage
import { easeInOutBack } from 'css-in-js-easing';
const sample = styled.div`
transition-timing-function: ${easeInOutBack};
`