michihouse-components-tmp
Version:
Biblioteca de componentes da MichiHouse
10 lines (9 loc) • 451 B
TypeScript
import * as React from "react";
import * as RPNInput from "react-phone-number-input";
export type PhoneInputProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value"> & Omit<RPNInput.Props<typeof RPNInput.default>, "onChange"> & {
onChange?: (value: RPNInput.Value) => void;
label?: string;
labelCentered?: boolean;
};
declare const PhoneInput: React.ForwardRefExoticComponent<PhoneInputProps>;
export { PhoneInput };