Skip to content

Instantly share code, notes, and snippets.

@matheusml
Created June 21, 2017 18:04
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 matheusml/080d054bc5ab29c6ffec80959af5a453 to your computer and use it in GitHub Desktop.
Save matheusml/080d054bc5ab29c6ffec80959af5a453 to your computer and use it in GitHub Desktop.
const Button = styled.a`
display: inline-block;
border-radius: 3px;
padding: 0.5rem 0;
margin: 0.5rem 1rem;
width: 11rem;
background: transparent;
color: white;
border: 2px solid white;
${props => props.primary && css`
background: white;
color: palevioletred;
`}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment