Fieldset

Group a set of form controls together with these fully accessible but much easier-to-style versions of the native fieldset and legend elements.

Shipping details

If you have a tiger, we'd like to know about it.

Installation

npx headcn@latest add fieldset

Usage

Use the Fieldset and Legend components to group a set of form controls together with a title:

import { Fieldset } from "@/components/ui/fieldset"
import { Legend } from "@/components/ui/legend"
<Fieldset>
  <Legend>Title</Legend>
  {/* rest of the form components */}
</Fieldset>