Created
March 25, 2021 16:01
-
-
Save bengrunfeld/7e67fb18486414412d3113004b3b652d to your computer and use it in GitHub Desktop.
Styled Components and Themeing
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 { theme } from '../theme' | |
export const SubmitButton = styled.button` | |
background: ${({theme}) => theme.colors.blue}; | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment