Created
May 6, 2019 18:31
-
-
Save mfix22/f48aec2bbb52552dbbb7229b64b46ce8 to your computer and use it in GitHub Desktop.
Basic styled-system component that accesses theme
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
// No need to import `react` or `styled-components`! | |
import system from 'system-components' | |
export const Heading = system( | |
{ | |
is: 'h1', | |
// primary, medium, text, etc. are all theme variables! | |
fontFamily: 'primary', | |
fontSize: 5, | |
fontWeight: 'medium', | |
lineHeight: 'normal', | |
m: 0, | |
color: 'text' | |
}, | |
// only allow a few props to be used | |
'fontFamily', | |
'textAlign' | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment