import { Meta, StoryObj } from "@storybook/react"; import { Input } from "."; export default { title: "Fields/Atoms/Input", component: Input, parameters: { layout: "centered", }, argTypes: {}, } as Meta; type Story = StoryObj; export const Primary: Story = { args: { placeholder: "Type something...", type: "text", }, };