typestyle / css-to-typestyle

Convert raw CSS to TypeStyle

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CSS to TypeStyle converter

Convert your raw CSS to TypeScript

npm version Build Status Downloads

Why build this?

CSS comes from all kinds of sources. Rather than sticking css in cssRaw in TypeStyle, why not convert it to TypeStyle?

How to use it

import { convertCss } from 'css-to-typestyle';

convertCss('.redClass{ color: red }')
  .then((typestyleSource) => {
    // write out to file
  });

About

Convert raw CSS to TypeStyle


Languages

Language:TypeScript 100.0%