Created
June 30, 2018 22:22
-
-
Save colmtuite/91d4b61c4fad6662fa55e856d80a6356 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
const Text = styled.p` | |
// Styles unique to this component | |
color: ${theme.GRAY_900}; | |
// Props unique to this component | |
${p => p.size1 && css` | |
font-size: ${theme.FONTSIZE_200}; | |
`} | |
${p => p.size2 && css` | |
font-size: ${theme.FONTSIZE_300}; | |
`} | |
// Imported shared utilities | |
${LineHeight} | |
${Margin} | |
${Color} | |
`; | |
export default Text; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment