Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created March 25, 2021 16:01
Show Gist options
  • Save bengrunfeld/7e67fb18486414412d3113004b3b652d to your computer and use it in GitHub Desktop.
Save bengrunfeld/7e67fb18486414412d3113004b3b652d to your computer and use it in GitHub Desktop.
Styled Components and Themeing
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