@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
8 lines (7 loc) • 460 B
TypeScript
import React from 'react';
import { IInputDate } from './types/inputDate';
declare const InputDateBoundary: <V extends string | unknown>(props: IInputDate<V>, ref: React.ForwardedRef<HTMLInputElement | undefined>) => JSX.Element;
declare const InputDate: <V extends string | unknown>(props: React.PropsWithChildren<IInputDate<V>> & {
ref?: React.ForwardedRef<HTMLInputElement | undefined>;
}) => ReturnType<typeof InputDateBoundary>;
export { InputDate };