@arkhas/inertia-datatable
Version:
A Laravel Inertia React Datatable component
10 lines (9 loc) • 461 B
TypeScript
import React from 'react';
interface IconRendererProps {
iconName: string;
className?: string;
icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>;
}
export declare const IconRenderer: React.FC<IconRendererProps>;
export declare const getIconComponent: (iconName: string, icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>) => React.ComponentType<React.SVGProps<SVGSVGElement>> | undefined;
export {};