Loading...
Loading...
> A password input with visibility toggle.
1import { InputPassword } from "@/components/ui/input-password"
1<InputPassword placeholder="Enter password..." />
1<InputPassword placeholder="Password" />
1<div className="grid gap-2">2 <Label htmlFor="password">{formatLabel("Password")}</Label>3 <InputPassword id="password" placeholder="Enter your password" />4</div>
1<InputPassword placeholder="Hidden password" showToggle={false} />
1<InputPassword disabled placeholder="Disabled" />
| Prop | Type | Default | Description |
|---|---|---|---|
| showToggle | boolean | true | Show the visibility toggle button. |
| disabled | boolean | false | Disable the input and toggle button. |