Textarea with Background Color

PreviousNext

A textarea component with background color

Docs
shadcnui-blockscomponent

Preview

Loading preview…
components/customized/textarea/textarea-02.tsx
import { Textarea } from "@/registry/ui/textarea";

export default function TextareaWithBackgroundColorDemo() {
  return (
    <Textarea
      placeholder="Type your message here."
      className="bg-muted shadow-none"
    />
  );
}

Installation

npx shadcn@latest add @shadcnui-blocks/textarea-02

Usage

import { Textarea02 } from "@/components/textarea-02"
<Textarea02 />