@open-condo/ui
Version:
A set of React UI components for developing applications inside the condo ecosystem
9 lines • 473 B
TypeScript
import React from 'react';
import type { PhoneInputProps as DefaultPhoneInputProps } from 'react-phone-input-2';
export type PhoneInputProps = Pick<DefaultPhoneInputProps, 'country' | 'placeholder' | 'onChange' | 'value' | 'onMount' | 'disabled'> & {
inputProps?: Omit<React.InputHTMLAttributes<HTMLInputElement>, 'style' | 'value' | 'onChange'>;
id?: string;
};
declare const Phone: React.FC<PhoneInputProps>;
export { Phone, };
//# sourceMappingURL=phone.d.ts.map