UNPKG

styled-hook-form

Version:

React form library for styled-components based on grommet and react-hook-form

11 lines (10 loc) 230 B
export interface TimeValue { hours: number; minutes: number; seconds: number; XM: "AM" | "PM"; } export interface TimePickerProps { value?: Date | TimeValue; onChange?: (value: Date | TimeValue) => void; }