| 123456789101112131415 |
- import { GridOptionsWrapper } from '../gridOptionsWrapper';
- import { Column } from '../entities/column';
- export declare const iconNameClassMap: {
- [key: string]: string;
- };
- /**
- * If icon provided, use this (either a string, or a function callback).
- * if not, then use the default icon from the theme
- * @param {string} iconName
- * @param {GridOptionsWrapper} gridOptionsWrapper
- * @param {Column | null} [column]
- * @returns {HTMLElement}
- */
- export declare function createIcon(iconName: string, gridOptionsWrapper: GridOptionsWrapper, column: Column | null): HTMLElement;
- export declare function createIconNoSpan(iconName: string, gridOptionsWrapper: GridOptionsWrapper, column?: Column | null, forceCreate?: boolean): HTMLElement;
|