import type { Meta, StoryObj } from "@storybook/react"; import { Input } from "./Input"; const meta = { title: "UI/Input", component: Input, parameters: { layout: "centered", docs: { description: { component: "A flexible input component with support for various types, icons, labels, and validation states.", }, }, }, tags: ["autodocs"], argTypes: { type: { control: { type: "select" }, options: ["text", "email", "password", "number", "tel", "url"], }, size: { control: { type: "select" }, options: ["sm", "md", "lg"], }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { placeholder: "Enter text...", }, }; export const WithLabel: Story = { args: { label: "Email Address", placeholder: "Enter your email", type: "email", }, }; export const Password: Story = { args: { label: "Password", type: "password", placeholder: "Enter your password", }, }; export const WithError: Story = { args: { label: "Username", placeholder: "Enter username", error: true, }, }; export const Disabled: Story = { args: { label: "Disabled Input", placeholder: "This is disabled", disabled: true, }, }; export const Sizes: Story = { render: () => (
), };