@seplan/diti-ds
Version:
Reusable UI component library developed by DITI (Technology and Innovation Directorate of SEPLAN PI) based on Mantine and Tailwind CSS
13 lines • 412 B
TypeScript
import React from 'react';
interface ValueRangeFilterProps {
min: number;
max: number;
data: {
value: number;
count: number;
}[];
children: React.ReactNode;
}
export declare function ValueRangeFilter({ min, max, data, children }: ValueRangeFilterProps): import("react/jsx-runtime").JSX.Element;
export default ValueRangeFilter;
//# sourceMappingURL=value-range-filter.d.ts.map