@sikka/hawa
Version:
Modern UI Kit made with Tailwind
29 lines (25 loc) • 709 B
TypeScript
import * as React from 'react';
import React__default, { FC } from 'react';
import { P as PositionType } from '../commonTypes-BtF87PmG.js';
type LabelProps = {
hint?: React.ReactNode;
hintSide?: PositionType;
htmlFor?: string;
required?: boolean;
};
type PhoneInputProps = {
preferredCountry?: {
label: string;
};
helperText?: any;
label?: string;
labelProps?: LabelProps;
placeholder?: string;
handleChange?: (value: string) => void;
inputProps?: React__default.InputHTMLAttributes<HTMLInputElement>;
countryCodes?: {
label: string;
}[];
};
declare const PhoneInput: FC<PhoneInputProps>;
export { PhoneInput, type PhoneInputProps };