From ee5414b296bb5268dc1cb1fe090452180bf86108 Mon Sep 17 00:00:00 2001 From: sam-m-m Date: Thu, 13 Aug 2020 13:48:27 -0700 Subject: [PATCH] Feat #43 - Add semantic-ui to Button --- .storybook/preview.tsx | 1 - src/components/Button/index.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 93c0ef91..03761e27 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -2,7 +2,6 @@ import { addDecorator, addParameters } from '@storybook/react' import { withInfo } from '@storybook/addon-info' import { DocsPage, DocsContainer } from '@storybook/addon-docs/blocks' import React, { ReactNode } from 'react' -import 'semantic-ui-css/semantic.css' import 'antd/dist/antd.css' const infoOptions = { diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx index d74f62cc..977d97a6 100644 --- a/src/components/Button/index.tsx +++ b/src/components/Button/index.tsx @@ -1,6 +1,6 @@ +import 'semantic-ui-css/semantic.min.css' import classnames from 'classnames' import React, { FC, ReactNode } from 'react' - export type ButtonType = 'submit' | 'button' | 'reset' export interface ButtonProps {