-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from CaptainFact/staging
Release 0.9.3
- Loading branch information
Showing
28 changed files
with
462 additions
and
264 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import styled from 'styled-components' | ||
import { fontSize, space } from 'styled-system' | ||
|
||
const StyledLabel = styled.label` | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
/** @component */ | ||
export default StyledLabel |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import styled from 'styled-components' | ||
import { fontSize, space, themeGet } from 'styled-system' | ||
|
||
export const StyledH1 = styled.h1` | ||
font-size: ${themeGet('fontSizes.0')}; | ||
margin-bottom: ${themeGet('space.4')}; | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
export const StyledH2 = styled.h2` | ||
font-size: ${themeGet('fontSizes.1')}; | ||
margin-bottom: ${themeGet('space.4')}; | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
export const StyledH3 = styled.h3` | ||
font-size: ${themeGet('fontSizes.2')}; | ||
margin-bottom: ${themeGet('space.3')}; | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
export const StyledH4 = styled.h4` | ||
font-size: ${themeGet('fontSizes.3')}; | ||
margin-bottom: ${themeGet('space.2')}; | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
export const StyledH5 = styled.h5` | ||
font-size: ${themeGet('fontSizes.4')}; | ||
margin-bottom: ${themeGet('space.2')}; | ||
${fontSize} | ||
${space} | ||
` | ||
|
||
export const StyledH6 = styled.h6` | ||
font-size: ${themeGet('fontSizes.5')}; | ||
margin-bottom: ${themeGet('space.1')}; | ||
${fontSize} | ||
${space} | ||
` |
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
Oops, something went wrong.