mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 11:21:21 +00:00
11 lines
494 B
TypeScript
11 lines
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 {};
|