コンテンツにスキップ
Vantage
日本語
Esc
navigateopen⌘Jpreview

Textarea

複数行のテキスト入力。

複数行の入力です。props はネイティブの <textarea> と同じです。

export const client = "only";

import { Textarea, Label } from "@squadbase/vantage/ui";

export default function Example() {
  return (
    <div className="grid w-80 gap-2">
      <Label htmlFor="note">メモ</Label>
      <Textarea id="note" rows={4} placeholder="この数字について気づいたことを書く" />
    </div>
  );
}
import { Textarea } from "@squadbase/vantage/ui";

高さは rowsclassNamemin-h-32 など)で決めます。aria-invalid を付けるとエラー色に なるのは Input と同じです。

上下にツールバーを付けたいときは、InputGroupInputGroupTextareaalign="block-end" の組み合わせが使えます。

このページは役に立ちましたか?