import type { Meta, StoryObj } from "@storybook/react"; import { Search } from "lucide-react"; import { ThemeProviderDecorators } from "@/storybook/Decorator"; import { Input } from "./input"; const meta = { title: "UI/Input", component: Input, tags: ["autodocs"], decorators: ThemeProviderDecorators, } satisfies Meta; export default meta; type Story = StoryObj; export const DefaultInput: Story = { args: { placeholder: "E-Posta Adresi", }, }; export const FloatInput: Story = { args: { label: "E-Posta Adresi", }, }; export const FloatInputWithIcon: Story = { args: { label: "Seyahat Yeri", leftIcon: , size: "lg", }, };