components/example.tsx
1
import { Textarea } from "passport-ui";components/example.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div className="w-sm"> <Textarea placeholder="Type your message here." /></div> {/* With custom rows */}<Textarea placeholder="Larger text area..." rows={6}/> {/* Disabled state */}<Textarea disabled placeholder="This textarea is disabled"/>