MathiasGilson / Tailwind-Styled-Component

Create Tailwind CSS React components like styled components with class names on multiple lines and conditional class rendering

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

css snippet support

MrOxMasTer opened this issue · 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}
`