React входной маски ref ref

// use inputRef
const ref = useRef<HTMLInputElement>(null);

<InputMask
  mask="xx"
  inputRef={ref}
/>
Lucas Juan