import * as React from 'react' import { withTheme } from 'utils' import { storiesOf } from '@storybook/react' import Box from 'Box' import Text from '.' storiesOf('Text', module).add('default', withTheme(() => { return (
This is some text, no color. This is some text, with color primary. This is some text, with color danger.
) }))