InputProps: OverrideProps<"input", {
    formatOnChange?: ((value: string) => string);
    onChange?: InputChangeEventHandler;
    ref?: ComponentPropsWithRef<"input">["ref"];
    value?: string;
}>

Type declaration

  • OptionalformatOnChange?: ((value: string) => string)

    Function used to format value on blur.

      • (value): string
      • Parameters

        • value: string

        Returns string

  • OptionalonChange?: InputChangeEventHandler
  • Optionalref?: ComponentPropsWithRef<"input">["ref"]
  • Optionalvalue?: string