@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 404 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { IconSelector } from '../../../components/IconSelector';
import { useAdaptable } from '../../AdaptableContext';
export const AdaptableIconSelector = (props) => {
const adaptable = useAdaptable();
const customIcons = adaptable.api.userInterfaceApi.getCustomIcons();
return _jsx(IconSelector, { customIcons: customIcons, ...props });
};