import type { Meta, StoryObj } from '@storybook/react-vite'; import { SearchField } from './SearchField'; const meta: Meta = { title: 'UI kit/Form/SearchField', component: SearchField, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: { label: 'Text:', value: 'Text value', }, }; export const Loading: Story = { args: { label: 'Text:', value: 'Text value', loading: true, }, };