import { useId } from 'react'
import { Input } from '@/registry/new-york/ui/input'
import { Label } from '@/registry/new-york/ui/label'
const InputLabelDemo = () => {
const id = useId()
return (
<div className='w-full max-w-xs space-y-2'>
<Label htmlFor={id}>Input with label</Label>
<Input id={id} type='email' placeholder='Email address' />
</div>
)
}
export default InputLabelDemo
npx shadcn@latest add @shadcn-studio/input-02import { Input02 } from "@/components/input-02"<Input02 />