This component no longer exists. It was in skyroc-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-10 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
skyroc-ui/textareaRemovedBlock
skyroc-ui publishes no description for this item.
Install it
npx shadcn@latest add https://ui-play.skyroc.me/r/textarea.jsonSource
1'use client';23import { forwardRef } from 'react';4import { useComponentConfig } from '../config-provider/context';5import TextareaUI from './TextareaUI';6import type { TextareaProps } from './types';78const Textarea = forwardRef<HTMLTextAreaElement, TextareaProps>((props, ref) => {9 const config = useComponentConfig('textarea');1011 const mergedProps = {12 ...config,13 ...props14 };1516 return (17 <TextareaUI18 {...mergedProps}19 ref={ref}20 />21 );22});2324Textarea.displayName = 'Textarea';2526export default Textarea;
What it pulls in
Other registry items
