We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
right now we generate class names for binary expressions
e.g.
const Button styled.button` ${({$primary}) => $primary ? css`color:red` : css`color:blue`}; `
becomes Button__primary or Button__not-primary
Button__primary
Button__not-primary
we should also extend that for string and number values
e.g.:
const Button styled.button` ${({$variant}) => $variant === 'primary' ? css`color:red` : css`color:blue`}; `
could become Button__variant-primary or Button__variant-not-primary
Button__variant-primary
Button__variant-not-primary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
right now we generate class names for binary expressions
e.g.
becomes
Button__primary
orButton__not-primary
we should also extend that for string and number values
e.g.:
could become
Button__variant-primary
orButton__variant-not-primary
The text was updated successfully, but these errors were encountered: