Fieldset
A styled <fieldset>. disabled disables every form control inside (native behaviour).
import { Fieldset, FormField, TextInput } from '@gg-software/ui';
<Fieldset legend="Shipping address" description="Where should we send the order?">
<FormField label="Street">
<TextInput placeholder="Street and number" />
</FormField>
<FormField label="City">
<TextInput placeholder="City" />
</FormField>
</Fieldset>Props
| Prop | Type | Default | Description |
|---|---|---|---|
legend | ReactNode | — | |
description | ReactNode | — | |
disabled | boolean | — | |
className | string | — | |
children* | ReactNode | — | content rendered inside the component |
* required · generated from packages/ui/src/input/Fieldset/Fieldset.tsx