Skip to content

Instantly share code, notes, and snippets.

@spences10
Created March 28, 2018 15:20
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 spences10/6d9ef0c1cb62e322ef170ad206f63df8 to your computer and use it in GitHub Desktop.
Save spences10/6d9ef0c1cb62e322ef170ad206f63df8 to your computer and use it in GitHub Desktop.
export const Button = styled.button`
font-size: 1rem;
border-radius: 5px;
padding: 0.25rem 1rem;
margin: 0 1rem;
background: transparent;
color: ${props => props.theme.primary};
border: 2px solid ${props => props.theme.primary};
${props =>
props.primary &&
css`
background: ${props => props.theme.primary};
color: white;
`};
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment