This component no longer exists. It was in @nivalis/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Textarea
nivalis-ui/textareaRemovedComponent
A textarea component.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/nivalis-studio/nivalis-ui/main/public/r/textarea.jsonSource
1import { cn } from '@/lib/classnames';2import type { ComponentProps } from 'react';34function Textarea({ className, ...props }: ComponentProps<'textarea'>) {5 return (6 <textarea7 className={cn(8 'field-sizing-content flex min-h-16 w-full rounded-md border border-input bg-transparent px-3 py-2 text-base shadow-xs outline-none transition-[color,box-shadow] placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:aria-invalid:ring-destructive/40',9 className,10 )}11 data-slot='textarea'12 {...props}13 />14 );15}1617export { Textarea };
