UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

12 lines (11 loc) 432 B
/// <reference types="react" /> /// <reference types="react" /> import { BaseComponentAttributes } from '../utils/types'; export interface CalendarTimePickerProps extends BaseComponentAttributes { value?: Date; label?: string; format?: string; onChange?: (date?: Date) => void; onPickerToggle?: (show?: boolean) => void; } export default function CalendarTimePicker(props: CalendarTimePickerProps): JSX.Element;