blob: 31c8499e0cd0e5bdc8a86f7e7f33cb315f8a38c7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import * as React from 'react'
import { storiesOf } from '@storybook/react-native'
import { StoryScreen, Story, UseCase } from '../../../storybook/views'
import { Icon } from './icon'
declare let module
storiesOf('Icon', module)
.addDecorator((fn) => <StoryScreen>{fn()}</StoryScreen>)
.add('Names', () => (
<Story>
<UseCase text="back" usage="The icon for going back">
<Icon icon="back" />
</UseCase>
<UseCase text="bullet" usage="The icon for a bullet point">
<Icon icon="bullet" />
</UseCase>
</Story>
))
|