From 184c8fbaa6ea3fb13af93ec023252af8802040a3 Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Fri, 15 Oct 2021 14:02:33 +0530 Subject: Remove unused 'uidev' folder. (#2076) --- uidev/src/stories/button.stories.tsx | 175 ----------------------------------- 1 file changed, 175 deletions(-) delete mode 100644 uidev/src/stories/button.stories.tsx (limited to 'uidev/src/stories/button.stories.tsx') diff --git a/uidev/src/stories/button.stories.tsx b/uidev/src/stories/button.stories.tsx deleted file mode 100644 index 400063cea..000000000 --- a/uidev/src/stories/button.stories.tsx +++ /dev/null @@ -1,175 +0,0 @@ -import { mdiInformation } from '@mdi/js'; -import { observable } from 'mobx'; -import { observer } from 'mobx-react'; -import * as React from 'react'; -import injectSheet from 'react-jss'; - -import { Button, Input } from '@meetfranz/forms'; -import { Classes } from 'jss'; -import { storiesOf } from '../stores/stories'; - -const defaultProps = { - label: 'Button', - id: 'test1', - name: 'test1', - type: 'button', - disabled: false, -}; - -const styles = { - combinedElements: { - display: 'flex', - justifyContent: 'space-between', - }, - input: { - flex: 1, - marginRight: 20, - }, -}; - -const createStore = (args?: any) => observable({ ...defaultProps, ...args }); - -const WithStoreButton = observer(({ store }: { store: any }) => ( - <> -