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