import { Meta, StoryObj } from "@storybook/react"; import { FileInput } from "."; import { InputControls } from "@sb/helpers"; const meta: Meta = { title: "Inputs/Choose State/FileInput", component: FileInput, parameters: { layout: "centered", }, argTypes: { ...InputControls, file: { control: false, }, }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { label: "Choose a file...", }, }; export const WithFile: Story = { args: { ...Primary.args, file: new File(["test"], "test.txt"), }, };