aboutsummaryrefslogtreecommitdiffstats
path: root/uidev/src/stories/button.stories.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/src/stories/button.stories.tsx')
-rw-r--r--uidev/src/stories/button.stories.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/uidev/src/stories/button.stories.tsx b/uidev/src/stories/button.stories.tsx
index f7537895c..5c1c9246d 100644
--- a/uidev/src/stories/button.stories.tsx
+++ b/uidev/src/stories/button.stories.tsx
@@ -1,10 +1,10 @@
1import { mdiInformation } from '@mdi/js';
1import { observable } from 'mobx'; 2import { observable } from 'mobx';
2import { observer } from 'mobx-react'; 3import { observer } from 'mobx-react';
3import React from 'react'; 4import React from 'react';
4import injectSheet from 'react-jss'; 5import injectSheet from 'react-jss';
5 6
6import { Button, Input } from '@meetfranz/forms'; 7import { Button, Input } from '@meetfranz/forms';
7import { classes } from 'istanbul-lib-coverage';
8import { Classes } from 'jss'; 8import { Classes } from 'jss';
9import { storiesOf } from '../stores/stories'; 9import { storiesOf } from '../stores/stories';
10 10
@@ -92,7 +92,7 @@ storiesOf('Button')
92 )) 92 ))
93 .add('With icon', () => ( 93 .add('With icon', () => (
94 <WithStoreButton store={createStore({ 94 <WithStoreButton store={createStore({
95 icon: 'mdiInformation', 95 icon: mdiInformation,
96 })} /> 96 })} />
97 )) 97 ))
98 .add('As link', () => ( 98 .add('As link', () => (
@@ -131,7 +131,7 @@ storiesOf('Button')
131 <div className={classes.combinedElements}> 131 <div className={classes.combinedElements}>
132 <Input showLabel={false} className={classes.input} noMargin /> 132 <Input showLabel={false} className={classes.input} noMargin />
133 <WithStoreButton store={createStore({ 133 <WithStoreButton store={createStore({
134 icon: 'mdiInformation', 134 icon: mdiInformation,
135 })} /> 135 })} />
136 </div> 136 </div>
137 )), 137 )),