From 7e46fc8b6e93f6929061242465a1a138bdb3cc46 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Tue, 20 Apr 2021 01:20:45 +0100 Subject: [PATCH] Update input props --- src/components/Input/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Input/index.tsx b/src/components/Input/index.tsx index 120a550..ae27e3f 100644 --- a/src/components/Input/index.tsx +++ b/src/components/Input/index.tsx @@ -21,7 +21,6 @@ type InputProps = { type?: 'text' | 'email' | 'password' | 'file' | 'number'; placeholder?: string; fullWidth?: boolean; - multiline?: boolean; onChange: (event: React.ChangeEvent) => void; };