diff --git a/packages/react/src/components/Button/Button-story.js b/packages/react/src/components/Button/Button-story.js index 1207138ef49d..51ea235169ae 100644 --- a/packages/react/src/components/Button/Button-story.js +++ b/packages/react/src/components/Button/Button-story.js @@ -6,7 +6,6 @@ */ import React from 'react'; -import { action } from '@storybook/addon-actions'; import { withKnobs, boolean, select, text } from '@storybook/addon-knobs'; import { iconAddSolid, iconSearch } from 'carbon-icons'; import { @@ -83,8 +82,6 @@ const props = { 'Icon description (iconDescription)', 'Button icon' ), - onClick: action('onClick'), - onFocus: action('onFocus'), }; }, iconOnly: () => { @@ -117,8 +114,6 @@ const props = { ['start', 'center', 'end'], 'center' ), - onClick: action('onClick'), - onFocus: action('onFocus'), }; }, set: () => { @@ -134,8 +129,6 @@ const props = { 'Button icon' ), stacked: boolean('Stack buttons vertically (stacked)', false), - onClick: action('onClick'), - onFocus: action('onFocus'), }; }, }; @@ -227,12 +220,7 @@ export const Playground = () => { }; export const IconButton = () => ( -