UNPKG

react-time-picker

Version:

A time picker for your React app.

10 lines (9 loc) 377 B
import Input from './Input.js'; type MinuteInputProps = { hour?: string | null; maxTime?: string; minTime?: string; showLeadingZeros?: boolean; } & Omit<React.ComponentProps<typeof Input>, 'max' | 'min' | 'name'>; export default function MinuteInput({ hour, maxTime, minTime, showLeadingZeros, ...otherProps }: MinuteInputProps): React.ReactElement; export {};