blob: d119ed407a38dbe0a9535d844769875a35ac875d (
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>
))
|