Textarea Readonly

PreviousNext

textarea-readonly-demo

Docs
intentuipage

Preview

Loading preview…
components/docs/forms/textarea/textarea-readonly-demo.tsx
"use client"

import { Label } from "@/components/ui/field"
import { TextField } from "@/components/ui/text-field"
import { Textarea } from "@/components/ui/textarea"

export default function TextareaReadonlyDemo() {
  return (
    <TextField isReadOnly>
      <Label>Address</Label>
      <Textarea />
    </TextField>
  )
}

Installation

npx shadcn@latest add @intentui/textarea-readonly-demo

Usage

Usage varies by registry entry. Refer to the registry docs or source files below for details.