export default { title: "Components/Link", tags: ['autodocs'], args: { label: 'Link', href: "", target: '_blank', size: 'm', variant: 'bold' }, argTypes: { target: { options: ['_blank', '_self', '_parent'], control: { type: 'radio' } }, size: { description: "Font Size options: s (14px), m (16px), l (18px), xl (20px) - default: m", options: ['s', 'm', 'l', 'xl'], control: { type: 'radio' } }, variant: { options: ['bold', 'underlined', 'title', 'menu'], control: { type: 'radio' } } }, }; const DefaultTemplate = (args) => ` ${args.label} `; export const Default = DefaultTemplate.bind({}); const TemplateWithIcon = (args) => ` ${args.label} `; export const WithIcon = TemplateWithIcon.bind({}); //# sourceMappingURL=link.stories.js.map