import type { Meta, StoryObj } from "@storybook/react"; import { TextInput as TextInputComponent } from "../src/components/text-input"; export default { title: "Input/Text", component: TextInputComponent, } as Meta; export const Text: StoryObj = { args: { label: "Text input", placeholder: "Text input", }, };