import type { Meta, StoryObj } from '@storybook/react-vite'; import { SearchInput } from './SearchInput'; const meta: Meta = { title: 'UI kit/Form/Inputs/SearchInput', component: SearchInput, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Default: Story = { args: {}, };