@jswork/styled-css
v1.0.9
Published
Zero-runtime CSS string creator in JS library.
Downloads
20
Maintainers
Readme
styled-css
Zero-runtime CSS string creator in JS library.
installation
npm install @jswork/styled-css
usage
import css from '@jswork/styled-css';
const bg = '#f00';
const bg_ = '#f50';
const results = css`
${bg && 'background: ' + bg + ';'}
${bg_ && '> * { background: ' + bg + '; }'}
`;
// results
[
'\n ',
'background: #f00;',
'\n ',
'> * { background: #f00; }',
'\n '
]
license
Code released under the MIT license.