From 3c44ce45e3c8cd0c2e62e5543dd9a17ca7848f26 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 16 Oct 2025 10:08:10 +0800 Subject: [PATCH] Added password type input --- src/components/Input/Input.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Input/Input.tsx b/src/components/Input/Input.tsx index e955bf6..990d391 100644 --- a/src/components/Input/Input.tsx +++ b/src/components/Input/Input.tsx @@ -7,6 +7,7 @@ interface Props { value: string onChange: Setter onKeyDown?: (event: KeyboardEvent) => void + isPassword?: boolean } export default (props: Props) => { @@ -16,7 +17,7 @@ export default (props: Props) => { {props.label} - + )