@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
11 lines (10 loc) • 494 B
TypeScript
import type { TimePickerAmPmLabels, TimePickerFormat } from '../TimePicker';
interface TimeGridControlProps extends React.ComponentPropsWithoutRef<'button'> {
time: string;
active: boolean;
format: TimePickerFormat;
amPmLabels: TimePickerAmPmLabels;
withSeconds: boolean | undefined;
}
export declare function TimeGridControl({ time, active, className, amPmLabels, format, withSeconds, ...others }: TimeGridControlProps): import("react/jsx-runtime").JSX.Element;
export {};