Created
February 11, 2020 17:37
-
-
Save gregoryanderson/fddecb8bbcd19a66a7a94aea93ee5388 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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