-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75bb155
commit b08e006
Showing
48 changed files
with
851 additions
and
317 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,14 @@ | ||
- [Buttons] (#/Components/Buttons) | ||
- [Forms] (#/Components/Forms) | ||
- [Typography] (#/Components/Typography) | ||
- [Grid] (#/Components/Grid) | ||
- [Icon] (#/Components/Icon) | ||
- [SVGIcon] (#/Components/SVGIcon) | ||
- [Link] (#/Components/Link) | ||
- [Loading] (#/Components/Loading) | ||
- [Menus] (#/Components/Menus) | ||
- [NavigationPills] (#/Components/NavigationPills) | ||
- [Pill] (#/Components/Pill) | ||
- [ScrollTrack] (#/Components/ScrollTrack) | ||
- [Tooltip] (#/Components/Tooltip) | ||
- [Transitions] (#/Components/Transitions) |
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 |
---|---|---|
@@ -1,14 +1,11 @@ | ||
import React, { Component } from 'react'; | ||
import { StyleRoot } from 'radium' | ||
import React from 'react' | ||
import SetStyles from '../../src/styles/SetStyles' | ||
|
||
export default class Wrapper extends Component { | ||
render() { | ||
return ( | ||
<StyleRoot> | ||
<SetStyles assetsUrl={'src/fonts'} /> | ||
{ this.props.children } | ||
</StyleRoot> | ||
) | ||
} | ||
export default function Wrapper(props) { | ||
return ( | ||
<> | ||
<SetStyles assetsUrl={'src/fonts'} /> | ||
{props.children} | ||
</> | ||
) | ||
} |
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
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
Oops, something went wrong.