Skip to content

Instantly share code, notes, and snippets.

@ivanmalagon
Created January 15, 2020 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivanmalagon/6c2e4d29aa70e9d4746c42104bed1945 to your computer and use it in GitHub Desktop.
Save ivanmalagon/6c2e4d29aa70e9d4746c42104bed1945 to your computer and use it in GitHub Desktop.
Styled Components TIps
Props tips
https://codesandbox.io/s/sc-props-ppsij
const Paragraph2 = styled.p(
props => css`
width: 400px;
margin: auto;
/* props can be accessed from the above props */
color: ${props.color};
background: ${props.background};
margin-bottom: 24px;
padding: 12px;
`
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment