Created
May 6, 2019 18:25
-
-
Save mfix22/c1b1df85c67e219d9ce380f4b1bd431c to your computer and use it in GitHub Desktop.
Basic theme-able component using `styled-components`
This file contains 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' | |
/* | |
* Basic themeable component: | |
* | |
* → Customers are able to adjust link color | |
* for this section | |
*/ | |
export const Container = styled.div` | |
p { | |
margin: 0; | |
} | |
a { | |
color: ${props => props.theme.colors.primary}; | |
} | |
` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment