From 769849bae139a78ca788fffd6dac8b9ac6536f66 Mon Sep 17 00:00:00 2001 From: Nicola Squartini Date: Tue, 28 Nov 2023 13:24:34 +0100 Subject: [PATCH] fix: set default value for `text` prop in `Input` --- src/Input/Input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Input/Input.tsx b/src/Input/Input.tsx index 57a37124..16b80a65 100644 --- a/src/Input/Input.tsx +++ b/src/Input/Input.tsx @@ -106,7 +106,7 @@ export const Input = ({ id, className, cssModule, - type, + type = 'text', state, tag, addon,