Component
Textarea With Label
Textarea with a properly associated visible label — clicking the label focuses the field.
- Component
- React
- TSX
- Tailwind CSS
- MIT
Preview
Live component
9:41 100%
devsnips.dev/library/react/components/textareas/textarea-with-label/ fluid · no fixed width 100%
Install
Add to your project
npx devsnips add React/Components/Textareas/textarea-with-label React/Components/Textareas/textarea-with-label 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 TextareaWithLabelProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
/** Visible label — required; clicking it focuses the textarea. */
label: ReactNode;
}
/**
* Textarea with a properly associated visible label. The label uses
* `<label htmlFor>` pointing at the textarea's `id`, so clicking the label
* activates the control. Renders a `*` indicator when `required` (the
* native `required` attribute still carries the semantics — the asterisk
* is decorative and hidden from assistive tech).
*/
export function TextareaWithLabel({ label, id, className, rows = 3, required, ...props }: TextareaWithLabelProps) {
const generatedId = useId();
const textareaId = id ?? `textarea-${generatedId}`;
return (
<div className="w-full">
<label
htmlFor={textareaId}
className="mb-2 block text-[13px] font-medium leading-5 text-[var(--ds-color-foreground)]"
>
{label}
{required ? (
<span aria-hidden="true" className="ml-0.5 text-[var(--ds-color-destructive)]">*</span>
) : null}
</label>
<textarea
id={textareaId}
rows={rows}
required={required}
className={cx(TEXTAREA_BASE, TEXTAREA_BORDER, className)}
{...props}
/>
</div>
);
}
export default TextareaWithLabel; /* DevSnips React — JavaScript parity build.
* Same API, behavior, and classes as code.tsx; TypeScript types removed.
* Regenerated from code.tsx — edit code.tsx and re-run the generator.
*/
import { useId } from "react";
function cx(...parts) {
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 function TextareaWithLabel({ label, id, className, rows = 3, required, ...props }) {
const generatedId = useId();
const textareaId = id ?? `textarea-${generatedId}`;
return <div className="w-full">
<label
htmlFor={textareaId}
className="mb-2 block text-[13px] font-medium leading-5 text-[var(--ds-color-foreground)]"
>
{label}
{required ? <span aria-hidden="true" className="ml-0.5 text-[var(--ds-color-destructive)]">*</span> : null}
</label>
<textarea
id={textareaId}
rows={rows}
required={required}
className={cx(TEXTAREA_BASE, TEXTAREA_BORDER, className)}
{...props}
/>
</div>;
}
export default TextareaWithLabel; # Textarea With Label
Textarea with a properly associated visible label — clicking the label focuses the field.
## Usage
```tsx
<TextareaWithLabel label="Support message" required rows={4} />
```
## JavaScript
A `code.jsx` build is provided for projects that ship plain JSX. It exposes the same API and behavior as `code.tsx` — only the TypeScript types are removed.
```jsx
<TextareaWithLabel label="Support message" required rows={4} />
```
## Props
| Name | Type | Default | Description |
|---|---|---:|---|
| `label` | `ReactNode` (required) | — | Visible label above the control. |
| `value` / `defaultValue` | `string` | — | Controlled / uncontrolled value. |
| `onChange` | `(event) => void` | — | Native change callback. |
| `rows` | `number` | `3` | Visible rows — the natural height floor (with `min-h-[80px]`). |
| `placeholder` | `string` | — | Muted placeholder (never critical information). |
| `disabled` | `boolean` | — | Native disabled — not focusable, not submitted. |
| `readOnly` | `boolean` | — | Native read-only — focusable, selectable, submitted. |
| `required` / `name` / `id` | `boolean` / `string` | — | Native form semantics (`id` also the label `htmlFor`). |
| `minLength` / `maxLength` | `number` | — | Native length constraints. |
| `className` | `string` | — | Extra Tailwind classes merged onto the control. |
| other native props / `aria-*` | — | — | Passed through to the `<textarea>`. |
## States
Same native textarea as the reference, but `label` is required and always rendered as `<label htmlFor>` above the control, so clicking the label text activates the field. Renders a `*` when `required` (the native `required` attribute carries the semantics; the asterisk is `aria-hidden`).
## Accessibility
`<label htmlFor>` association gives the control an accessible name and a larger click target. `required` is the native attribute (form validation + SR announcement); the visible asterisk is decorative and hidden from assistive tech. Visible `focus-visible` ring.
## Styling
Built with React, Tailwind CSS, and DevSnips design tokens. The component consumes the `--ds-*` semantic tokens via arbitrary values (for example `bg-[var(--ds-color-input)]`). Define the tokens once in your theme — no component-specific CSS file is required.
## Design Tokens
See [React/DESIGN_TOKENS.md](../../../DESIGN_TOKENS.md) for the authoritative token specification. This textarea uses the semantic color, radius, spacing, and motion tokens.
## Notes
Use this when the field needs only a label. Reach for `textarea-with-description` when the user needs context before typing, or `textarea-with-helper` when guidance belongs below the field. 52 lines UTF-8 · LF · Spaces: 2
Continue browsing