Fieldset#

Fieldset is a container for grouping related form elements. Use Fieldset.Legend for the title and Label for description text.

Import#

TSX
import { Fieldset, Label, Input, Button, Join, Row, Col, Text } from '@sigx/daisyui';

Basic Usage#

TSX
Loading preview...

Styled Fieldset#

Add background, border, and padding with Tailwind utility classes.

TSX
Loading preview...

Multiple Inputs#

Group several labeled inputs together.

TSX
Loading preview...

With Join#

Combine inputs and buttons inside a fieldset using Join.

TSX
Loading preview...

Login Form#

A complete login form example.

TSX
Loading preview...

Props#

Fieldset#

PropTypeDefaultDescription
classstringundefinedAdditional CSS classes (e.g. bg-base-200 border p-4)
childrenJSX.ElementChild elements (legend, labels, inputs)

Fieldset.Legend#

PropTypeDefaultDescription
classstringundefinedAdditional CSS classes
childrenJSX.ElementLegend text content

Label#

PropTypeDefaultDescription
classstringundefinedAdditional CSS classes
childrenJSX.ElementLabel/description text