UNPKG

@ntragas/pouncejstest

Version:

A collection of UI components from Panther labs

12 lines (11 loc) 319 B
import React from 'react'; import { Dayjs } from 'dayjs'; interface TimePickerProps { date?: Dayjs; label?: string; mode?: '12h' | '24h'; onTimeUpdate: (date?: Dayjs) => void; timezone: 'local' | 'utc'; } declare const _default: React.NamedExoticComponent<TimePickerProps>; export default _default;