babel-plugin-css-to-js
babel-plugin-css-to-js copied to clipboard
Fallback values
When a CSS property is defined more than once, you want to be able to access them all.
css`display: flex; display: -webkit-flex`
Into
({ display: ['flex', '-webkit-flex'] })