UNPKG

react-timekeeper

Version:

Time picker based on the style of the Google Keep app

10 lines (9 loc) 252 B
/// <reference types="react" /> import { Time } from '../helpers/types'; import { MODE } from '../helpers/constants'; interface Props { mode: MODE; time: Time; } export default function ClockHand({ mode, time }: Props): JSX.Element; export {};