diff --git a/packages/components/src/tooltip/stories/index.story.tsx b/packages/components/src/tooltip/stories/index.story.tsx index 836238bf5ccf2..b006bc03aced9 100644 --- a/packages/components/src/tooltip/stories/index.story.tsx +++ b/packages/components/src/tooltip/stories/index.story.tsx @@ -36,17 +36,6 @@ const meta: Meta< typeof Tooltip > = { controls: { expanded: true }, docs: { canvas: { sourceState: 'shown' } }, }, - decorators: [ - ( Story ) => { - return ( - <> - { /* eslint-disable-next-line no-restricted-syntax */ } -

Button description

- - - ); - }, - ], }; export default meta; @@ -85,19 +74,3 @@ Nested.args = { ), text: 'Outer tooltip text', }; - -export const AlreadyWithDescription: StoryFn< typeof Tooltip > = Template.bind( - {} -); -AlreadyWithDescription.args = { - children: ( - - ), - text: 'Tooltip Text', -}; - -export const SameLabel: StoryFn< typeof Tooltip > = Template.bind( {} ); -SameLabel.args = { - children: , - text: 'Button label', -};