Utility
AI
Terminal
Installation
pnpm dlx shadcn@latest add https://termcn.dev/r/password-input.json
Usage
import { PasswordInput } from "@/components/ui/password-input";<PasswordInput
label="Password"
placeholder="Enter password"
showToggle
onSubmit={(value) => console.log("Password:", value)}
/>API Reference
PasswordInput
| Prop | Type | Default |
|---|---|---|
value | string | undefined |
onChange | (value: string) => void | undefined |
onSubmit | (value: string) => void | undefined |
placeholder | string | "" |
mask | string | "●" |
showToggle | boolean | false |
label | string | undefined |
id | string | undefined |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |
width | number | undefined |
cursor | string | "█" |