@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 586 B
TypeScript
import { FunctionComponent } from 'react';
import { CustomIcon } from '../../types';
export interface IconSelectorPanelProps {
customIcons?: CustomIcon[];
value?: string;
onChange: (iconName: string) => void;
className?: string;
showTitle?: boolean;
}
export declare const IconSelectorPanel: FunctionComponent<IconSelectorPanelProps>;
export interface IconSelectorProps {
customIcons?: CustomIcon[];
value?: string;
onChange: (iconName: string) => void;
clearable?: boolean;
}
export declare const IconSelector: FunctionComponent<IconSelectorProps>;