@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.
13 lines (12 loc) • 463 B
TypeScript
type IconGridProps = {
icons: string[];
onClick: (icon: string) => void;
defaultSelectdIcon?: string;
showLabel?: boolean;
minColumnWidth?: number;
iconSize?: number;
tileHeight?: number;
contentPadding?: string;
};
declare const IconGrid: ({ icons, defaultSelectdIcon, onClick, showLabel, minColumnWidth, iconSize, tileHeight, contentPadding, }: IconGridProps) => import("react/jsx-runtime").JSX.Element;
export default IconGrid;