import type { Meta, StoryObj } from '@storybook/react' import { InputHooks } from './InputHooks' const meta: Meta = { component: InputHooks, title: 'molecules/InputHooks', args: { } } export default meta type Story = StoryObj export const InputHooksPrimary: Story = { args: { autoComplete: 'off', value: 'Hello World!', title: 'Hello World!', error: false } } export const InputHooksError: Story = { args: { autoComplete: 'off', value: 'Hello World!', title: 'Hello World!', error: true } } export const InputHooksInfo: Story = { args: { autoComplete: 'off', value: 'Hello World!', title: 'Hello World!', error: true, info: 'This is an info message' } }