UNPKG

desmy-react

Version:

Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.

24 lines (23 loc) 538 B
import { Component } from 'react'; interface FilterItem { id: string; name: string; value: any; label: string; } interface FilterPanelProps { filterhead: FilterItem[]; showFilter: boolean; onRemoveFilter: (label: string) => void; onFiltered: (filters: { [key: string]: any; }) => void; onClose: () => void; filter: { url: string; }; } export declare class FilterPanel extends Component<FilterPanelProps> { render(): import("react/jsx-runtime").JSX.Element; } export {};