css2lit
v1.0.0
Published
Converts css file to a lit-element css export
Downloads
2
Readme
CSS2Lit
Executable that converts css file to a lit-element css export
Instalation
$ npm install particles.ts
Usage
$ npx css2lit path/to/file
Example
.body { color: blue }
Output:
import {css} from 'lit-element';
export const style = css`.body { color: blue }`;