diff --git a/src/components/input/input.tsx b/src/components/input/input.tsx index 6626f60eff..5b4c664074 100644 --- a/src/components/input/input.tsx +++ b/src/components/input/input.tsx @@ -39,6 +39,7 @@ export type InputProps = Pick< | 'name' | 'onFocus' | 'onBlur' + | 'onPaste' | 'autoCapitalize' | 'autoCorrect' | 'onKeyDown' @@ -164,6 +165,7 @@ export const Input = forwardRef((props, ref) => { checkValue() mergedProps.onBlur?.(e) }} + onPaste={mergedProps.onPaste} id={mergedProps.id} placeholder={mergedProps.placeholder} disabled={mergedProps.disabled}