@atlaskit/datetime-picker
Version:
A date time picker allows the user to select an associated date and time.
14 lines (13 loc) • 590 B
TypeScript
import React from 'react';
import { type TimePickerBaseProps } from '../types';
/**
* __Time picker__
*
* A time picker allows the user to select a specific time.
*
* - [Examples](https://atlassian.design/components/datetime-picker/time-picker/examples)
* - [Code](https://atlassian.design/components/datetime-picker/time-picker/code)
* - [Usage](https://atlassian.design/components/datetime-picker/time-picker/usage)
*/
declare const TimePicker: React.ForwardRefExoticComponent<React.PropsWithoutRef<TimePickerBaseProps> & React.RefAttributes<unknown>>;
export default TimePicker;