diff --git a/src/components/Link/Link.stories.tsx b/src/components/Link/Link.stories.tsx index 03fe018aec..31afd99f3e 100644 --- a/src/components/Link/Link.stories.tsx +++ b/src/components/Link/Link.stories.tsx @@ -4,8 +4,6 @@ import StyleDocs from '../../storybook/docs.stories.style.mdx'; import Link, { LinkProps } from './'; import argTypes from './Link.stories.args'; import Documentation from './Link.stories.docs.mdx'; -import Icon from '../Icon'; -import Text from '../Text'; import React from 'react'; import { omit } from 'lodash'; @@ -67,76 +65,4 @@ LinkHasIcon.args = { LinkHasIcon.argTypes = { ...argTypes }; -const ButtonCircleLink = Template(Link).bind({}); - -ButtonCircleLink.args = { - href: 'https://www.webex.com/', - tooltipContent: 'opens a new tab', - tooltipType: 'description', - style: { borderRadius: '100vh' }, - children: ( -
- -
- ), -}; - -ButtonCircleLink.argTypes = { ...argTypes }; -ButtonCircleLink.argTypes = omit(ButtonCircleLink.argTypes, ['children', 'disabled', 'inverted']); - -const ButtonPillLink = Template(Link).bind({}); - -ButtonPillLink.args = { - href: 'https://www.webex.com/', - tooltipContent: 'opens a new tab', - tooltipType: 'description', - style: { textDecoration: 'none', borderRadius: '100vh' }, - children: ( -
- Go to Download page - -
- ), -}; - -ButtonPillLink.argTypes = { ...argTypes }; -ButtonPillLink.argTypes = omit(ButtonPillLink.argTypes, ['children', 'disabled', 'inverted']); - -export { Example, States, LinkHasIcon, ButtonCircleLink, ButtonPillLink }; +export { Example, States, LinkHasIcon };