aboutsummaryrefslogtreecommitdiffstats
path: root/uidev
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-15 11:59:39 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-15 11:59:39 +0100
commite31248830eb63c8bff3d9add3baa4ca8916b74e1 (patch)
tree5424634ccd5861fdf53340ad3f1001922394c5a9 /uidev
parentPublish (diff)
downloadferdium-app-e31248830eb63c8bff3d9add3baa4ca8916b74e1.tar.gz
ferdium-app-e31248830eb63c8bff3d9add3baa4ca8916b74e1.tar.zst
ferdium-app-e31248830eb63c8bff3d9add3baa4ca8916b74e1.zip
Button, add missing success state
Diffstat (limited to 'uidev')
-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 21778e081..b5906211a 100644
--- a/uidev/src/stories/button.stories.tsx
+++ b/uidev/src/stories/button.stories.tsx
@@ -42,6 +42,11 @@ storiesOf('Button')
42 buttonType: 'secondary', 42 buttonType: 'secondary',
43 })} /> 43 })} />
44 )) 44 ))
45 .add('Success', () => (
46 <WithStoreButton store={createStore({
47 buttonType: 'success',
48 })} />
49 ))
45 .add('Warning', () => ( 50 .add('Warning', () => (
46 <WithStoreButton store={createStore({ 51 <WithStoreButton store={createStore({
47 buttonType: 'warning', 52 buttonType: 'warning',