@activecollab/components
Version:
ActiveCollab Components
14 lines • 597 B
TypeScript
import React from "react";
import { InputProps } from "./Input";
export interface InputPhoneProps extends Omit<InputProps, "type" | "startAdornment" | "onChange" | "value" | "size"> {
/** Input value */
value?: string;
/** Default country code to be selected */
defaultCountry?: string;
/** onChange function */
onChange?: (val: string) => void;
/** Input size */
size?: "small" | "regular" | "big";
}
export declare const InputPhone: React.ForwardRefExoticComponent<InputPhoneProps & React.RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=InputPhone.d.ts.map