cease
default exports a single function, css
.
css`stylesheet`(Component) → StyledComponent
stylesheet
- A CSS string
Component
- Your React component (class or function)
StyledComponent
- A new React component rendering the passed
Component
in a Shadow DOM root attached to a new wrappingdiv
, with CSS rules fromstylesheet
applied
const StyledButton = css`
button {
color: red;
}
button .icon {
color: black;
}
`(Button)