diff --git a/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.stories.tsx b/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.stories.tsx deleted file mode 100644 index 99237193b..000000000 --- a/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.stories.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import React from 'react'; -import { storiesOf } from '@storybook/react'; -import { withKnobs, text } from '@storybook/addon-knobs'; -import BackgroundButton from './BackgroundButton'; - -storiesOf('atoms/Buttons/BackgroundButton', module) - .addDecorator(withKnobs) - .add('normal', () => ( - - )); diff --git a/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.ts b/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.ts deleted file mode 100644 index 0b9cc80e2..000000000 --- a/src/components/atoms/Buttons/BackgroundButton/BackgroundButton.ts +++ /dev/null @@ -1,13 +0,0 @@ -import styled from 'styled-components'; -import BorderButton from 'components/atoms/Buttons/BorderButton'; - -export default styled(BorderButton)` - color: #fff; - text-transform: none; - background-color: ${props => props.theme.button}; - - &:hover { - color: ${props => props.theme.button}; - background-color: #fff; - } -`; diff --git a/src/components/atoms/Buttons/BackgroundButton/index.ts b/src/components/atoms/Buttons/BackgroundButton/index.ts deleted file mode 100644 index 04c8a872c..000000000 --- a/src/components/atoms/Buttons/BackgroundButton/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import BackgroundButton from './BackgroundButton'; - -export default BackgroundButton;