Skip to content

Instantly share code, notes, and snippets.

@fjaguero
Created June 6, 2017 12:10
Show Gist options
  • Save fjaguero/64ef88e5e5577f7e8176fd888f701b1a to your computer and use it in GitHub Desktop.
Save fjaguero/64ef88e5e5577f7e8176fd888f701b1a to your computer and use it in GitHub Desktop.
Styled components: Using props from a <ThemeProvider />
// Define our button, but with the use of props.theme this time
const Button = styled.button`
font-size: 1em;
margin: 1em;
padding: 0.25em 1em;
border-radius: 3px;
/* Color the border and text with theme properties */
color: ${props => props.theme.darkGray};
border: 2px solid ${props => props.theme.darkGray};
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment