Components
Loading preview...
Color input field with labels, descriptions, validation, and HSL channel editing.
npx shadcn@latest add https://21st.dev/r/hero_ui/heroui-color-fieldimport { ColorField, Description, Label } from "@/components/ui/heroui-color-field";
export default function RequiredField() {
return (
<div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8">
<div className="flex flex-col gap-4">
<ColorField isRequired className="w-[280px]" name="color">
<Label>Brand Color</Label>
<ColorField.Group>
<ColorField.Input placeholder="#000000" />
</ColorField.Group>
</ColorField>
<ColorField isRequired className="w-[280px]" name="theme-color">
<Label>Theme Color</Label>
<ColorField.Group>
<ColorField.Input placeholder="#000000" />
</ColorField.Group>
<Description>Required field</Description>
</ColorField>
</div>
</div>
);
}
export { RequiredField };