UNPKG

@kadconsulting/dry

Version:
11 lines (10 loc) 335 B
/// <reference types="react" /> export interface TimePickerProps extends React.HTMLAttributes<HTMLElement> { passProps?: object; /** Support @testing-library/react `screen.getByTestId` */ 'data-testid'?: string; value: string; onChange: (date: string) => void; militaryTime?: boolean; disabled?: boolean; }