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
Recently detected that it is not possible to define width and height using tailwind directives because defaultStyles, is applied on rect.
width
height
rect
const RectShape: React.FC<Props> = ({ className, style, color }) => { const defaultStyle = { backgroundColor: color, width: '100%', height: '100%', marginRight: 10 }; return ( <div className={joinClassNames('rect-shape', className)} style={{ ...defaultStyle, ...style }} /> ); };
Would you mind modifying the API to support these use cases or would you be open to a PR without breaking changes, which allowed both behaviours?
The text was updated successfully, but these errors were encountered:
I'd be happy to look at a PR if you'd like to add the use case without breaking changes.
Sorry, something went wrong.
No branches or pull requests
Recently detected that it is not possible to define
width
andheight
using tailwind directives because defaultStyles, is applied onrect
.Would you mind modifying the API to support these use cases or would you be open to a PR without breaking changes, which allowed both behaviours?
The text was updated successfully, but these errors were encountered: