A simple utility to automatically add vendor prefixes to CSS properties in JavaScript styling solutions.
npm install autoprefixer-css-jsbash
npm install autoprefixer-css-js
`
Usage
Import the autoprefix_with_styles function and use it to add prefixes to your style objects.
`javascript
import auto_prefix_with_styles from 'css-in-js-autoprefixer';
const userStyles = {
transition: 'all 0.3s ease',
userSelect: 'none',
boxSizing: 'border-box',
};
const prefixedStyles = autoprefix_with_styles(userStyles);
``