react98

Fieldset

A Windows 98 fieldset and legend pair for grouped controls.

Preview

fieldset.exe
Preferences

Installation

pnpm dlx shadcn@latest add https://react98-ui.vercel.app/r/fieldset.json
npx shadcn@latest add https://react98-ui.vercel.app/r/fieldset.json
yarn dlx shadcn@latest add https://react98-ui.vercel.app/r/fieldset.json
bunx shadcn@latest add https://react98-ui.vercel.app/r/fieldset.json

Usage

import { Fieldset, Legend } from "@/components/ui/98/fieldset";

export function Example() {
  return (
    <Fieldset>
      <Legend>Options</Legend>
      Content
    </Fieldset>
  );
}

Props

ComponentPropsDescription
FieldsetFieldsetHTMLAttributes<HTMLFieldSetElement>Grouping container.
LegendHTMLAttributes<HTMLLegendElement>Fieldset caption.

On this page