Input field that hides characters to keep sensitive info
| Prop | Type | Description |
|---|---|---|
| name | string | HTML name attribute |
| onChange | (event: ChangeEvent<HTMLTextAreaElement>) => void | onChane property |
| label? | string | Label assosiated with the input |
| className? | string | Sets class attribute |
| value? | "string" | "number" | Actual value of the input |
| error? | string | Error message |
| maxLength? | number | Limits the max input length |
| placeholder? | string | Placeholder text in the input |
| style? | CSSProperties | Sets CSS styles |
import { PasswordInput } from "@brick-uikit/input";