Skip to content

Instantly share code, notes, and snippets.

@gregoryanderson
Created February 11, 2020 17:37
Show Gist options
  • Save gregoryanderson/fddecb8bbcd19a66a7a94aea93ee5388 to your computer and use it in GitHub Desktop.
Save gregoryanderson/fddecb8bbcd19a66a7a94aea93ee5388 to your computer and use it in GitHub Desktop.
import styled from 'styled-components';
export const Title = styled.h1`
color:dodgerblue;
height: 4em;
`
export const Button = styled.button`
background-color: ${props => props.card ? "rebeccapurple" : "papayawhip"};
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment