diff --git a/packages/clay-form/src/Input.tsx b/packages/clay-form/src/Input.tsx index b9b796f68c..327dbff5d7 100644 --- a/packages/clay-form/src/Input.tsx +++ b/packages/clay-form/src/Input.tsx @@ -174,7 +174,7 @@ interface IProps extends React.InputHTMLAttributes { /** * Selects the height of the input. */ - sizing?: 'lg' | 'sm'; + sizing?: 'lg' | 'regular' | 'sm'; } const ClayInput = React.forwardRef( @@ -184,7 +184,7 @@ const ClayInput = React.forwardRef( component: Component = 'input', insetAfter, insetBefore, - sizing, + sizing = 'regular', type = 'text', ...otherProps }: IProps, @@ -193,7 +193,7 @@ const ClayInput = React.forwardRef(