styled-components-website icon indicating copy to clipboard operation
styled-components-website copied to clipboard

Add additional cases to object styles example

Open samsch opened this issue 3 years ago • 0 comments

Here -> https://styled-components.com/docs/advanced#style-objects

Same stuff the example could clear up with some tweaks:

  backgroundColor: 'red',
  // or
  'background-color': 'red',
  // does stuff like this work?
  backgroundColor: props => props.background,
  ':hover': props => css`background-color: red;`,

samsch avatar Mar 17 '21 21:03 samsch