import { StoryObj, Meta } from '@storybook/react';

import { Link } from '@/components';

const meta: Meta<typeof Link> = {
  component: Link,
};

export default meta;

type TStory = StoryObj<typeof Link>;

export const SM: TStory = {
  args: {
    children: 'General',
    size: 'sm',
  },
};

export const MD: TStory = {
  args: {
    children: 'General',
    size: 'md',
  },
};

export const LG: TStory = {
  args: {
    children: 'General',
    size: 'lg',
  },
};
