@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
5 lines (4 loc) • 423 B
TypeScript
import React, { ForwardedRef } from 'react';
import { IInputPhoneStandAlone } from './types/inputPhone';
export declare const InputPhoneStandAloneComponent: ({ dataTestId, ...props }: IInputPhoneStandAlone, ref: ForwardedRef<HTMLInputElement | undefined>) => JSX.Element;
export declare const InputPhoneStandAlone: React.ForwardRefExoticComponent<IInputPhoneStandAlone & React.RefAttributes<HTMLInputElement | undefined>>;