@passflow/passflow-react-sdk
Version:
Passflow React UI Kit
11 lines • 365 B
TypeScript
import { ChangeEvent, FC, InputHTMLAttributes } from 'react';
type TFieldPhone = InputHTMLAttributes<HTMLInputElement> & {
id: string;
onChange: (e: ChangeEvent<HTMLInputElement>) => void;
isError?: boolean;
className?: string;
ref?: null;
};
export declare const FieldPhone: FC<TFieldPhone>;
export {};
//# sourceMappingURL=field-phone.d.ts.map