UNPKG

react-next-dates

Version:

Simple and Customizable DatePicker, DateRangePicker and TimePicker for React.

10 lines (9 loc) 276 B
import { FC } from 'react'; import { ClockPrecision } from '../Clock'; interface ClockMinutesProps { date?: Date | null; containerRadius: number; precision: ClockPrecision; } declare const ClockMinutes: FC<ClockMinutesProps>; export default ClockMinutes;