diff --git a/packages/react/src/components/Tooltip/Tooltip.stories.js b/packages/react/src/components/Tooltip/Tooltip.stories.js index e0bd0570e69e..76ce503bca53 100644 --- a/packages/react/src/components/Tooltip/Tooltip.stories.js +++ b/packages/react/src/components/Tooltip/Tooltip.stories.js @@ -7,10 +7,9 @@ import './story.scss'; +import { Help } from '@carbon/icons-react'; import React, { useRef, useEffect } from 'react'; -import { SquareOutline } from '@carbon/icons-react'; import { Tooltip } from './'; -import Button from './../Button'; import mdx from './Tooltip.mdx'; export default { @@ -56,7 +55,9 @@ export const Default = () => { 'Occasionally, services are updated in a specified time window to ensure no down time for customers.'; return ( - + ); }; @@ -64,7 +65,9 @@ export const Default = () => { export const Alignment = () => { return ( - + ); }; @@ -86,7 +89,9 @@ export const ExperimentalAutoAlign = () => { left: '2500px', }}> - + @@ -96,7 +101,9 @@ export const ExperimentalAutoAlign = () => { export const Duration = () => { return ( - + ); }; @@ -120,8 +127,8 @@ const PlaygroundStory = (props) => { label={label} leaveDelayMs={leaveDelayMs} closeOnActivation={closeOnActivation}> - );