diff --git a/src/features/Common/Input/index.tsx b/src/features/Common/Input/index.tsx index 0336305d..e54d5404 100644 --- a/src/features/Common/Input/index.tsx +++ b/src/features/Common/Input/index.tsx @@ -27,6 +27,7 @@ type Props = { labelLexic?: string, labelWidth?: number, maxLength?: number, + noShadow?: boolean, onBlur?: (event: FocusEvent) => void, onChange?: (event: ChangeEvent) => void, onFocus?: (event: FocusEvent) => void, @@ -50,6 +51,7 @@ export const Input = ({ labelLexic, labelWidth, maxLength, + noShadow, onBlur, onChange, onFocus, @@ -70,6 +72,7 @@ export const Input = ({ wrapperWidth={wrapperWidth} hasRightIcon={editIcon} error={error} + noShadow={noShadow} >