import type { Meta } from "@storybook/react-vite"; import { Button } from "./Button"; // More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export const meta = { title: "Example/Button", component: Button, // More on argTypes: https://storybook.js.org/docs/react/api/argtypes argTypes: { backgroundColor: { control: "color" }, }, } satisfies Meta; export default meta; export const Primary = { args: { primary: true, label: "Button", }, }; export const Secondary = { args: { label: "Button", }, }; export const Large = { args: { size: "large", label: "Button", }, }; export const Small = { args: { size: "small", label: "Button", }, };