import type { Meta, StoryObj } from '@storybook/react'; import { Textarea } from '@konobangu/design-system/components/ui/textarea'; /** * Displays a form textarea or a component that looks like a textarea. */ const meta = { title: 'ui/Textarea', component: Textarea, tags: ['autodocs'], argTypes: {}, args: { placeholder: 'Type your message here.', disabled: false, }, } satisfies Meta; export default meta; type Story = StoryObj; /** * The default form of the textarea. */ export const Default: Story = {}; /** * Use the `disabled` prop to disable the textarea. */ export const Disabled: Story = { args: { disabled: true, }, }; /** * Use the `Label` component to includes a clear, descriptive label above or * alongside the text area to guide users. */ export const WithLabel: Story = { render: (args) => (