import { Meta, StoryObj } from "@storybook/react"; import { TextInput } from "."; import { TextInputControls } from "@sb/helpers"; import { getCssProps } from "@sb/cssprops"; const meta: Meta = { title: "Inputs/User Input/TextInput", component: TextInput, parameters: { layout: "centered", cssprops: getCssProps("Input"), }, argTypes: { ...TextInputControls, variant: { table: { category: "Presentation" } }, type: { control: "select", options: ["text", "password", "email", "tel", "number", "search"], }, minLength: { control: "number" }, maxLength: { control: "number" }, }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { type: "text", variant: "default", label: "Text input label", }, }; export const Floating: Story = { args: { ...Primary.args, variant: "floating", }, };