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
I'm looking to use glamor for a very simple use-case: generating inline style attribute text.
glamor
glamor.inline({backgroundColor: blue, borderRadius: 12}) => "background-color:blue;border-radius:12px"
The text was updated successfully, but these errors were encountered:
@ccorcos , if you want write inline css, you can use just react for this:
<p style={{backgroundColor: blue, borderRadius: 12}}}>Hi</p>
Sorry, something went wrong.
I am not using React in this context
So, in this case, I suppose this package can't help you. According to implementation specification, this tool go to another direction.
And, I think this tool is not maintained. The last version is from 8 years ago, and the last commit to this repository, was 7 years ago.
No branches or pull requests
I'm looking to use
glamor
for a very simple use-case: generating inline style attribute text.The text was updated successfully, but these errors were encountered: