import React from "react"; import { PancakesIcon } from "../Svg"; import { Link, LinkExternal } from "./index"; export default { title: "Components/Link", component: Link, argTypes: { fontSize: { name: "fontSize", table: { type: { summary: "string", detail: "Fontsize in px or em" }, defaultValue: { summary: "16px" }, }, control: { type: null, }, }, }, }; export const Default: React.FC = () => { return (
Default
Custom color
External
With icon
LinkExternal
); };