This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 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
accelya-ui-lib/textareaRemovedComponent
shadcn/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/textarea.jsonSource
1import * as React from "react"23import { cn } from "@/lib/utils"45const Textarea = React.forwardRef<6 HTMLTextAreaElement,7 React.ComponentProps<"textarea">8>(({ className, ...props }, ref) => {9 return (10 <textarea11 className={cn(12 "flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-base ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",13 className14 )}15 ref={ref}16 {...props}17 />18 )19})20Textarea.displayName = "Textarea"2122export { Textarea }
