import * as React from 'react' import { withTheme } from 'utils' import { storiesOf } from '@storybook/react' import Title from '.' import Box from 'Box' import Subtitle from 'Subtitle' // import Link from '../Link' const stories = storiesOf('Title + Subtitle', module) stories.add('with different sizes', withTheme(() => { return ( Title Huge This is Subtitle Large, under title Title XLarge This is Subtitle Normal, under title Title Large This is Subtitle Small, under title Title Normal Title Tiny ) }) ) stories.add('with colors', withTheme(() => { return ( Title Default This is Subtitle gray, under title Title Primary This is Subtitle primary tone 1, under title Title Success This is Subtitle success tone 1, under title ) }) ) // .add('as link colors', withTheme(() => { // return ( // // // Title Default // // // Title Black // // // ) // }))