cssinjs / styled-jss

Styled Components on top of JSS.
http://cssinjs.org/styled-jss
MIT License
217 stars 25 forks source link

babel-plugin-styled-jss #5

Closed lttb closed 7 years ago

lttb commented 7 years ago

We can provide babel plugin with prejss under the hood, that would transform

const Button = styled.button`
  color: red;
`

to

const Button = styled('button', {color: 'red'})

for better performance