UNPKG

@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) 349 B
import { FunctionComponent } from 'react'; import { UserInterfaceOptions } from '../../types'; export interface IconSelectorProps { customIcons?: UserInterfaceOptions['customIcons']; value?: string; onChange: (iconName: string) => void; clearable?: boolean; } export declare const IconSelector: FunctionComponent<IconSelectorProps>;