MathiasGilson/Tailwind-Styled-Component

css snippet support

MrOxMasTer opened this issue · 1 comments

Hello, I would like to know. Will there be support for css fragments from styled components or some equivalent? Very simply this is not enough

image
image

As a workaround, you can do something like

const flag = () => `
  mt-20
`

const StyledH1 = tw.h1`
  ${flag}
`