diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index 4a45aa6..73a6a04 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -48,14 +48,15 @@ interface InputFrameProps const InputFrame = React.forwardRef( (props, ref) => { - const [variantProps, otherPropsUnsafe] = resolveInputVariantProps(props); - const { children, ...otherPropsSafe } = otherPropsUnsafe; + const [variantProps, otherPropsCompressed] = + resolveInputVariantProps(props); + const { children, ...otherPropsExtracted } = otherPropsCompressed; return ( @@ -85,8 +86,8 @@ interface InputProps } const Input = React.forwardRef((props, ref) => { - const [variantProps, otherPropsUnsafe] = resolveInputVariantProps(props); - const { type, invalid, ...otherPropsSafe } = otherPropsUnsafe; + const [variantProps, otherPropsCompressed] = resolveInputVariantProps(props); + const { type, invalid, ...otherPropsExtracted } = otherPropsCompressed; const innerRef = React.useRef(null); @@ -108,7 +109,7 @@ const Input = React.forwardRef((props, ref) => { } }} className={inputVariant(variantProps)} - {...otherPropsSafe} + {...otherPropsExtracted} /> ); });