Form Patterns
Fieldset
An accessible fieldset wrapper with a visible legend label. Groups related form fields together with semantic HTML.
Import
import { Fieldset } from "@mikenotthepope/substrateui"Disabled Fieldset
API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
legendrequired | string | — | Text displayed as the fieldset legend, providing an accessible group label. |
disabled | boolean | false | When true, disables all form controls within the fieldset. |
className | string | — | Additional CSS classes to apply to the fieldset element. |
childrenrequired | React.ReactNode | — | The form fields and content grouped by this fieldset. |