diff --git a/scss/bitstyles/atoms/flash/flash.stories.js b/scss/bitstyles/atoms/flash/flash.stories.js index 28ce916dc..f570c6227 100644 --- a/scss/bitstyles/atoms/flash/flash.stories.js +++ b/scss/bitstyles/atoms/flash/flash.stories.js @@ -1,4 +1,3 @@ -import Dropdown from '../dropdown/Dropdown'; import Flash from './Flash'; export default { @@ -33,41 +32,6 @@ export default { const Template = (args) => Flash(args); const dummyOnClick = () => {}; -const dropdownDecorator = (story) => { - const render = ` - - `; - return Dropdown({ children: render }); -}; // ***** Theme variants ****************** // @@ -77,7 +41,6 @@ Base.parameters = { zeplinLink: 'https://app.zeplin.io/styleguide/63079b90d0bf4a646c46c227/components?coid=6331bd93290bbf15ece3af28', }; -Base.decorators = [dropdownDecorator]; export const Danger = Template.bind({}); Danger.args = { theme: 'danger' }; @@ -171,14 +134,3 @@ PositiveIconButton.parameters = { zeplinLink: 'https://app.zeplin.io/styleguide/63079b90d0bf4a646c46c227/components?coid=6331bd96d1e9ea1a4033367b', }; - -export const InDropdown = Template.bind({}); -InDropdown.args = { - icon: 'info-circle', - onClick: dummyOnClick, - children: 'In dropdown', -}; -InDropdown.parameters = { - zeplinLink: 'https://zpl.io/8lBBP44', -}; -InDropdown.decorators = [dropdownDecorator];