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.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/uidev/src/stories/button.stories.tsx b/uidev/src/stories/button.stories.tsx
index 1a54eb6bf..21778e081 100644
--- a/uidev/src/stories/button.stories.tsx
+++ b/uidev/src/stories/button.stories.tsx
@@ -71,4 +71,9 @@ storiesOf('Button')
71 <WithStoreButton store={createStore({ 71 <WithStoreButton store={createStore({
72 busy: true, 72 busy: true,
73 })} /> 73 })} />
74 ))
75 .add('With icon', () => (
76 <WithStoreButton store={createStore({
77 icon: 'mdiAccountCircle',
78 })} />
74 )); 79 ));