Files
imphnen-frontend-service/libs/ui/src/atoms/input/input.stories.tsx
T
Hafid Nur 542469bc67 feat: Update InputForm, Input, and auth page
- Perbaiki page login ke halaman utama backoffice
- Perbaiki component Input dan InputForm
2025-03-27 07:19:46 +07:00

65 lines
1005 B
TypeScript

import { Meta, StoryObj } from '@storybook/react';
import { Input } from './input';
const meta: Meta<typeof Input> = {
title: 'Components/Input',
component: Input,
tags: ['autodocs'],
} satisfies Meta<typeof Input>;
export default meta;
type Story = StoryObj<typeof Input>;
export const Large: Story = {
args: {
size: 'lg',
type: 'text',
placeholder: 'Placeholder',
},
};
export const Medium: Story = {
args: {
size: 'md',
type: 'text',
placeholder: 'Placeholder',
},
};
export const Small: Story = {
args: {
size: 'sm',
type: 'text',
placeholder: 'Placeholder',
},
};
export const TextInput: Story = {
args: {
size: 'md',
type: 'text',
},
};
export const EmailInput: Story = {
args: {
size: 'md',
type: 'email',
},
};
export const PasswordInput: Story = {
args: {
size: 'md',
type: 'password',
},
};
export const Disabled: Story = {
args: {
size: 'md',
type: 'text',
disabled: true,
},
};