"use client"
import { Description, Label } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
export default function InputLabelDescriptionDemo() {
return (
<div className="space-y-2">
<Label htmlFor="name">Name</Label>
<Input id="name" aria-label="Name" placeholder="Your name" />
<Description>Please enter your full name.</Description>
</div>
)
}
npx shadcn@latest add @intentui/input-label-description-demoUsage varies by registry entry. Refer to the registry docs or source files below for details.