@seplan/diti-ds
Version:
Reusable UI component library developed by DITI (Technology and Innovation Directorate of SEPLAN PI) based on Mantine and Tailwind CSS
17 lines • 476 B
TypeScript
import React from 'react';
type Shortcut = {
label: string;
fn: () => {
fromDate: Date;
toDate: Date;
};
};
interface DateRangeFilterProps {
children?: React.ReactNode;
minDate?: Date;
maxDate?: Date;
shortcuts?: Shortcut[];
}
export declare function DateRangeFilter({ children, minDate, maxDate, shortcuts }: DateRangeFilterProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=date-range-filter.d.ts.map