diff --git a/airbyte-webapp/src/components/base/Input/Input.tsx b/airbyte-webapp/src/components/base/Input/Input.tsx index 51bd0015be47..694f72face40 100644 --- a/airbyte-webapp/src/components/base/Input/Input.tsx +++ b/airbyte-webapp/src/components/base/Input/Input.tsx @@ -19,10 +19,10 @@ const getBackgroundColor = (props: IStyleProps) => { return props.theme.greyColor0; }; -export type InputProps = { +export interface InputProps extends React.InputHTMLAttributes { error?: boolean; light?: boolean; -} & React.InputHTMLAttributes; +} const InputContainer = styled.div` width: 100%;