From 24533f13df234b347a4065d8148896d530237959 Mon Sep 17 00:00:00 2001 From: Stefan Malzner Date: Tue, 19 Mar 2019 16:24:18 +0100 Subject: Add support for custom className --- uidev/src/stories/infobox.stories.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'uidev/src') diff --git a/uidev/src/stories/infobox.stories.tsx b/uidev/src/stories/infobox.stories.tsx index 2a5e8b0d5..144855376 100644 --- a/uidev/src/stories/infobox.stories.tsx +++ b/uidev/src/stories/infobox.stories.tsx @@ -10,6 +10,7 @@ interface IStoreArgs { ctaLabel?: string; type?: string; dismissable?: boolean; + className?: string; } const createStore = (args?: IStoreArgs) => { @@ -29,6 +30,7 @@ const WithStoreInfobox = observer(({ store, children }: { store: any, children: type={store.type} ctaOnClick={store.ctaOnClick} dismissable={store.dismissable} + className={store.className} > {children} @@ -123,4 +125,11 @@ storiesOf('Infobox') > Welcome to the world of tomorrow + )) + .add('With className', () => ( + + Welcome to the world of tomorrow + )); -- cgit v1.2.3-54-g00ecf