styled-components sheet convertion to jss one
npm install styled-to-jssyarn installyarn install --devyarn global add styled-to-jss or npm install styled-to-jss -g if you use npmstyled-to-jss --path="./style.js" --output="./style.converted.js"
--path [Relative path to the file that will be converted]
--output [Where the converted version be written to (if not specified it will output to stdout)]
`$3
`javascript
import extractor from 'styled-to-jss';
const newString = extractor('background-color: red;');
console.log(newString);// backgroundColor: 'red',
``