From ad25a0591a9c0fa29cb632a9bfffeb6fed8b450a Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Tue, 6 Oct 2020 23:16:08 +0200 Subject: [PATCH] type check fix --- src/components/atoms/Input/InputElement.tsx | 8 +++++++- src/components/atoms/Input/index.tsx | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/atoms/Input/InputElement.tsx b/src/components/atoms/Input/InputElement.tsx index 8e106d005..3d1acba98 100644 --- a/src/components/atoms/Input/InputElement.tsx +++ b/src/components/atoms/Input/InputElement.tsx @@ -6,7 +6,13 @@ import FilesInput from '../../molecules/FormFields/FilesInput' import Terms from '../../molecules/FormFields/Terms' import Price from '../../molecules/FormFields/Price' -const DefaultInput = ({ small, ...props }: InputProps) => ( +const DefaultInput = ({ + small, + prefix, + postfix, + additionalComponent, + ...props +}: InputProps) => (