import { useId } from 'react'
import { Label } from '@/registry/new-york/ui/label'
import { Textarea } from '@/registry/new-york/ui/textarea'
const TextareaFilledDemo = () => {
const id = useId()
return (
<div className='w-full max-w-xs space-y-2'>
<Label htmlFor={id}>Filled Textarea</Label>
<Textarea className='bg-muted border-transparent shadow-none' placeholder='Type your feedback here' id={id} />
</div>
)
}
export default TextareaFilledDemo
npx shadcn@latest add @shadcn-studio/textarea-09import { Textarea09 } from "@/components/textarea-09"<Textarea09 />