diff --git a/src/stories/Library/link-with-icon/LinkWithIcon.tsx b/src/stories/Library/link-with-icon/LinkWithIcon.tsx index 4f6ec766a..f9ec75c8b 100644 --- a/src/stories/Library/link-with-icon/LinkWithIcon.tsx +++ b/src/stories/Library/link-with-icon/LinkWithIcon.tsx @@ -1,5 +1,5 @@ import clsx from "clsx"; -import { ReactComponent as ArrowLargeRight } from "../Arrows/icon-arrow-ui/icon-arrow-ui-large-right.svg"; +import { ReactComponent as ArrowSmallRight } from "../Arrows/icon-arrow-ui/icon-arrow-ui-small-right.svg"; import { IconType, LinkType } from "./LinkTypes"; export type LinksProps = { @@ -36,13 +36,13 @@ export const LinkWithIcon = ({ href, linkText, linkType }: LinksProps) => {
{linkText} - +
); };