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 HugeThis is Subtitle Large, under titleTitle XLargeThis is Subtitle Normal, under titleTitle LargeThis is Subtitle Small, under titleTitle NormalTitle Tiny
)
})
)
stories.add('with colors',
withTheme(() => {
return (
Title DefaultThis is Subtitle gray, under titleTitle PrimaryThis is Subtitle primary tone 1, under titleTitle SuccessThis is Subtitle success tone 1, under title
)
})
)
// .add('as link colors', withTheme(() => {
// return (
//
//
// Title Default
//
//
// Title Black
//
//
// )
// }))