import type { Meta, StoryObj } from '@storybook/react' import Input from './Input' import { InputGroup } from './InputGroup' const meta = { title: 'Components/InputGroup', component: InputGroup, argTypes: { isReadOnly: { control: 'boolean' }, }, } satisfies Meta export default meta type Story = StoryObj export const Default: Story = { render: (args) => ( ), } export const WithValue: Story = { render: (args) => ( ), } export const Disabled: Story = { render: () => ( ), } export const ReadOnly: Story = { args: { isReadOnly: true, }, render: (args) => ( ), } export const NumberInput: Story = { render: () => ( ), } export const WithPrefix: Story = { render: () => ( @ ), } export const WithSuffix: Story = { render: () => ( ), } export const CustomWidth: Story = { render: () => ( ), }