Textarea

Textarea is a component that allows users to enter and edit text.

'use client'
import { Textarea } from '@nerdfish/ui'
export function TextareaExample() {
return <Textarea placeholder="Type your message here." />
}

Usage

import { Textarea } from '@nerdfish/ui'
<Textarea name="message" placeholder="placeholder message" />