Tailwind-Styled-Component
Tailwind-Styled-Component copied to clipboard
css snippet support
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
As a workaround, you can do something like
const flag = () => `
mt-20
`
const StyledH1 = tw.h1`
${flag}
`