Component

Textarea Disabled

Disabled textarea using the real native disabled attribute — not focusable, not submitted.

  • Component
  • React
  • TSX
  • Tailwind CSS
  • MIT

Preview

Live component

Interactive preview
Open preview
9:41 100%
devsnips.dev/library/react/components/textareas/textarea-disabled/
fluid · no fixed width 100%
No dependencies Responsive · Light/dark · Focus-visible

Install

Add to your project

terminal
npx devsnips add React/Components/Textareas/textarea-disabled
registry path: React/Components/Textareas/textarea-disabled

Source

Implementation

code.tsx
import type { ReactNode, TextareaHTMLAttributes } from "react";
import { useId } from "react";

function cx(...parts: Array<string | false | null | undefined>): string {
  return parts.filter(Boolean).join(" ");
}

const TEXTAREA_BASE =
  "w-full min-h-[80px] resize-y rounded-[var(--ds-radius-sm)] border bg-[var(--ds-color-input)] px-3 py-2 text-sm leading-5 text-[var(--ds-color-foreground)] shadow-none transition-colors duration-150 ease-out placeholder:text-[var(--ds-color-muted-foreground)] hover:bg-[var(--ds-color-input-hover,var(--ds-color-input))] focus:bg-[var(--ds-color-input-focus,var(--ds-color-input))] focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--ds-color-focus-ring)] disabled:pointer-events-none disabled:bg-[var(--ds-color-muted)] disabled:text-[var(--ds-color-muted-foreground)] disabled:opacity-60 read-only:bg-[var(--ds-color-surface-subtle)] read-only:text-[var(--ds-color-muted-foreground)] motion-reduce:transition-none";

const TEXTAREA_BORDER =
  "border-[var(--ds-color-border)] focus:border-[var(--ds-color-border-strong)]";

export interface TextareaDisabledProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
  /** Visible label; omit and pass `aria-label` for a bare control. */
  label?: ReactNode;
}

/**
 * Disabled textarea. Uses the real native `disabled` attribute (defaulted
 * to `true`) — the control is removed from the tab order, cannot be
 * focused or edited, and its value is NOT submitted with the form. The
 * disabled treatment is real, not just visual: muted surface + reduced
 * opacity come from the native `:disabled` pseudo-class. The label shows
 * a not-allowed cursor so the pair reads as unavailable.
 */
export function TextareaDisabled({ label, id, className, rows = 3, disabled = true, ...props }: TextareaDisabledProps) {
  const generatedId = useId();
  const textareaId = id ?? `textarea-${generatedId}`;

  const control = (
    <textarea
      id={textareaId}
      rows={rows}
      disabled={disabled}
      className={cx(TEXTAREA_BASE, TEXTAREA_BORDER, className)}
      {...props}
    />
  );

  if (label === undefined || label === null) {
    return control;
  }

  return (
    <div className="w-full">
      <label
        htmlFor={textareaId}
        className={cx(
          "mb-2 block text-[13px] font-medium leading-5",
          disabled
            ? "cursor-not-allowed text-[var(--ds-color-muted-foreground)]"
            : "text-[var(--ds-color-foreground)]",
        )}
      >
        {label}
      </label>
      {control}
    </div>
  );
}

export default TextareaDisabled;
63 lines UTF-8 · LF · Spaces: 2

AI-ready

Available to your agent.

This component is reachable through the DevSnips CLI, MCP server and Skills integrations — one registry, one resource path.

Resource path

devsnips://components/textareas/textarea-disabled

Continue browsing

View all