@kadconsulting/dry
Version:
KAD Reusable Component Library
15 lines (14 loc) • 566 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react';
import Link from './Link';
declare const meta: Meta<typeof Link>;
export default meta;
type Story = StoryObj<typeof Link>;
export declare const Default: Story;
export declare const WithChildren: Story;
export declare const WithCustomClassName: Story;
export declare const ExternalLink: Story;
export declare const WithValueAndChildren: Story;
export declare const DisabledLink: Story;
export declare const NextJSLink: Story;
export declare const LinkWithIcon: Story;
export declare const MultipleLinks: Story;