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
If there a way to same through props types like in vue-styled-components https://github.com/styled-components/vue-styled-components#adapting-based-on-props
I have a issue where the prop value is not removed the the Dom. e.g.
const StyledBox = styled('div')` background-color: ${props => props.background};
<template> <StyledBox background="red"> <slot/> </StyledBox> </template>
renders
<div data-v-02e4c64b="" data-v-469af010="" background="red" class="css-1a3rjkp">Box 1</div>
Ideally we should not be seeing background="red" as an attribute.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If there a way to same through props types like in vue-styled-components
https://github.com/styled-components/vue-styled-components#adapting-based-on-props
I have a issue where the prop value is not removed the the Dom. e.g.
renders
Ideally we should not be seeing background="red" as an attribute.
The text was updated successfully, but these errors were encountered: