diff --git a/src/atoms/inputWrapper/component.tsx b/src/atoms/inputWrapper/component.tsx index 3b48bb80..7aeaa416 100644 --- a/src/atoms/inputWrapper/component.tsx +++ b/src/atoms/inputWrapper/component.tsx @@ -11,12 +11,14 @@ import { HidingView } from '../../wrappers'; export interface IInputWrapperProps extends IComponentProps, ISingleAnyChildProps { messageText?: string; isEnabled?: boolean; + isFullWidth?: boolean; onClicked?: () => void; } export function InputWrapper({ className = '', variant = 'default', + isFullWidth = false, ...props }: IInputWrapperProps): React.ReactElement { const [isFocussed, setIsFocussed] = React.useState(false); @@ -34,7 +36,7 @@ export function InputWrapper({ return (