Skip to content

Instantly share code, notes, and snippets.

@colmtuite
Created June 30, 2018 22:22
Show Gist options
  • Save colmtuite/91d4b61c4fad6662fa55e856d80a6356 to your computer and use it in GitHub Desktop.
Save colmtuite/91d4b61c4fad6662fa55e856d80a6356 to your computer and use it in GitHub Desktop.
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