Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 472 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 472 Bytes

This high order component allows rendering inline styles with the !important flag.

Install it with npm

npm install react-with-important-style

To use it, import it, and then wrap either a dom component or a custom component.

import withImportantStyle from 'react-with-important-style';
var MySpan = withImportantStyle('span');
// or withImportantStyle(MyComponent);

var C = () => <MySpan style={{backgroundColor: 'red !important'}} />;

That's it!