DEV Community

Discussion on: Extend usage of styled-components in React

Collapse
 
karataev profile image
Eugene Karataev

Well, if you don't want to add another SC component, you can just inline styles like in regular react component without introducing extra styles prop:

<MyButton style={{fontSize: '2rem'}}>hi</MyButton>
Thread Thread
 
hrahimi270 profile image
Hossein Rahimi

That's another point (:
It will increase the React's run-time.
Because it will be added as inline-styles in HTML tag.
But if you pass this style props into the body of styled-component, it will be used in build-time.