import type { Meta, StoryObj } from "@storybook/react-vite"; import { Button } from "../index"; const meta = { title: "UI/Button", component: Button, args: { label: "Refresh", icon: "mdi:refresh", }, } satisfies Meta; export default meta; type Story = StoryObj; export const Primary: Story = {}; export const Secondary: Story = { args: { variant: "secondary", }, };