UNPKG

component-library-mustafa-akagunduz

Version:

Air Command System projesi için geliştirilmiş React component kütüphanesi

25 lines (24 loc) 942 B
import type { Meta, StoryObj } from '@storybook/react-vite'; import { type InputProps } from '../components/Input'; type InputStoryProps = InputProps & { placeholder?: string; disabled?: boolean; type?: string; value?: string; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void; onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void; }; declare const meta: Meta<InputStoryProps>; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story; export declare const Outlined: Story; export declare const WithError: Story; export declare const Disabled: Story; export declare const FullWidth: Story; export declare const Email: Story; export declare const Password: Story; export declare const Number: Story; export declare const OutlinedWithError: Story; export declare const FullWidthOutlined: Story;