@i-novus/ui-core
Version:
Базовые UI компоненты
10 lines (9 loc) • 430 B
TypeScript
/// <reference types="react" />
import { ComponentBaseProps } from '../core';
import { InputProps } from './Input';
export interface InputTimeProps extends InputProps, ComponentBaseProps {
format?: string;
onChange(date: Date | null): void;
value?: Date | null;
}
export declare const InputTime: import("react").ForwardRefExoticComponent<Omit<InputTimeProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;