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
Componentin a Shadow DOM root attached to a new wrappingdiv, with CSS rules fromstylesheetapplied
const StyledButton = css`
button {
color: red;
}
button .icon {
color: black;
}
`(Button)