diff --git a/src/components/atoms/Input/InputElement.tsx b/src/components/atoms/Input/InputElement.tsx index 6a4e4487b..8e106d005 100644 --- a/src/components/atoms/Input/InputElement.tsx +++ b/src/components/atoms/Input/InputElement.tsx @@ -6,9 +6,9 @@ import FilesInput from '../../molecules/FormFields/FilesInput' import Terms from '../../molecules/FormFields/Terms' import Price from '../../molecules/FormFields/Price' -const DefaultInput = (props: InputProps) => ( +const DefaultInput = ({ small, ...props }: InputProps) => ( @@ -22,6 +22,10 @@ export default function InputElement({ postfix, small, field, + label, + help, + form, + additionalComponent, ...props }: InputProps): ReactElement { switch (type) {