import type { Meta, StoryObj } from '@storybook/react'; import { FileText } from 'lucide-react'; import { Button } from '@/components/button'; import { Center } from './decorators'; const meta: Meta = { title: 'Button', component: Button, decorators: [Center], args: { href: '#', }, }; export default meta; type Story = StoryObj; export const WithIcon: Story = { args: { label: 'Все статьи', icon: , }, }; export const WithoutIcon: Story = { args: { label: 'Click Me', }, };