Last active
December 8, 2018 19:05
-
-
Save sht5/da77f459a281314696581faba449b1ba to your computer and use it in GitHub Desktop.
styled components example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Button = styled.button` | |
background: ${props => props.primary ? "blue" : "white"}; | |
color: ${props => props.primary ? "white" : "blue"}; | |
font-size: 1em; | |
margin: 1em; | |
padding: 0.25em 1em; | |
border: 2px solid palevioletred; | |
border-radius: 3px; | |
`; | |
render( | |
<div> | |
<Button>Normal</Button> | |
<Button primary>Primary</Button> | |
</div> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment