Password Field
A secure text input for passwords with a visibility toggle button. Allows users to show or hide their password while typing, improving usability without compromising security.
Component props
| Name | Type | Description |
|---|---|---|
| label | string | Label text displayed above the field |
| value | string | Controlled value |
| defaultValue | string | Default value (uncontrolled) |
| isDisabled | boolean | Disables the field |
| onChange | (value: string) => void | Called when value changes |