Components
Loading preview...
A form field wrapper that provides labeling, description, and validation messaging for any input control. Supports required fields, disabled states, error messages, and real-time validity tracking via Base UI primitives.
npx shadcn@latest add https://21st.dev/r/coss.com/fieldimport { Field, FieldDescription, FieldLabel } from "@/components/ui/component";
import { Slider } from "@/components/ui/slider";
export default function FieldSliderDemo() {
return (
<div className="flex min-h-screen w-full items-center justify-center bg-background p-8">
<div className="w-full max-w-sm">
<Field className="items-stretch gap-3">
<FieldLabel>Volume</FieldLabel>
<Slider defaultValue={50} />
<FieldDescription>This is an optional field</FieldDescription>
</Field>
</div>
</div>
);
}