@arshiash80/strapi-plugin-iconhub
Version:
Icon picker plugin for Strapi with Iconify integration — search, select, and store icons with raw SVG for high-performance rendering.
11 lines (10 loc) • 525 B
TypeScript
/// <reference types="react" />
import { type IconSetCollections } from '../libs/iconSetUtils';
type IconSetFilterPanelProps = {
collections: IconSetCollections;
selectedPrefixes: Set<string>;
onSelectionChange: (prefixes: Set<string>) => void;
isLoading: boolean;
};
declare const IconSetFilterPanel: import("react").MemoExoticComponent<({ collections, selectedPrefixes, onSelectionChange, isLoading }: IconSetFilterPanelProps) => import("react/jsx-runtime").JSX.Element>;
export default IconSetFilterPanel;