import type { Meta, StoryObj } from "@storybook/react"; import { Switch as SwitchComponent } from "./index.js"; const meta = { component: SwitchComponent, argTypes: { isDisabled: { control: "boolean", table: { category: "State", }, }, isPending: { control: "boolean", table: { category: "State", }, }, onChange: { table: { category: "Behavior", }, }, children: { control: "text", table: { category: "Label", }, }, }, } satisfies Meta; export default meta; export const Switch = { args: { children: "Click me!", isDisabled: false, isPending: false, }, } satisfies StoryObj;