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