signal-desktop/sticker-creator/elements/Typography.stories.tsx
2019-12-17 12:28:46 -08:00

34 lines
858 B
TypeScript

import * as React from 'react';
import { StoryRow } from './StoryRow';
import { H1, H2, Text } from './Typography';
import { storiesOf } from '@storybook/react';
import { text } from '@storybook/addon-knobs';
storiesOf('Sticker Creator/elements', module).add('Typography', () => {
const child = text('text', 'foo bar');
return (
<>
<StoryRow left={true}>
<H1>{child}</H1>
</StoryRow>
<StoryRow left={true}>
<H2>{child}</H2>
</StoryRow>
<StoryRow left={true}>
<Text>
{child} {child} {child} {child}
</Text>
</StoryRow>
<StoryRow left={true}>
<Text>
{child} {child} {child} {child}{' '}
<a href="javascript: void 0;">
Something something something dark side.
</a>
</Text>
</StoryRow>
</>
);
});