UNPKG

pick-datetime-react

Version:
10 lines (9 loc) 267 B
import { FC } from 'react'; export declare type TimeSlotsProps = { selectedTime: string; slotGap?: number; rightAlign?: boolean; startFrom?: string; onChange: (time: string) => void; }; export declare const TimeSlots: FC<TimeSlotsProps>;