Color Field

PreviousNext

color-field-demo

Docs
intentuipage

Preview

Loading preview…
components/docs/colors/color-field/color-field-demo.tsx
"use client"

import { ColorField } from "@/components/ui/color-field"
import { Label } from "@/components/ui/field"
import { Input } from "@/components/ui/input"

export default function ColorFieldDemo() {
  return (
    <ColorField>
      <Label>Color</Label>
      <Input placeholder="#155DFC" />
    </ColorField>
  )
}

Installation

npx shadcn@latest add @intentui/color-field-demo

Usage

Usage varies by registry entry. Refer to the registry docs or source files below for details.