UNPKG

@quanxi/ui

Version:

全悉组件库

11 lines (10 loc) 464 B
import React from "react"; import type { TimePickerProps as AntdTimePickerProps, TimeRangePickerProps as AntdRangePickerProps } from "antd/es/time-picker"; import "./style.scss"; export type TimePickerProps = AntdTimePickerProps; export type TimeRangePickerProps = AntdRangePickerProps; declare const TimePicker: { (props: TimePickerProps): React.JSX.Element; RangerPicker: (props: TimeRangePickerProps) => React.JSX.Element; }; export default TimePicker;