Forge Docs
FormTextareaField

TextareaField

テキストエリアフィールドコンポーネント

概要

複数行テキスト入力フィールド。

Storybook で確認

Props

Prop必須説明
labelstringYesフィールドラベル
descriptionstringヘルパーテキスト
errorstringエラーメッセージ
...restComponentProps<"textarea">ネイティブ textarea の属性

使用例

import { TextareaField } from "@unitto/ui";

<TextareaField label="自己紹介" placeholder="自己紹介を入力してください" />

<TextareaField label="説明" error="説明は必須です" />

On this page