PluginProbe
Ultimate Store Kit / 3.1.2
Ultimate Store Kit v3.1.2
3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 92 releases
ultimate-store-kit / src / admin / components / Icon.js

Icon.js in Ultimate Store Kit 3.1.2, at src/admin/components/Icon.js

11 lines 284 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { applyFilters } from '@wordpress/hooks';
2 import { adminIconMap } from '../icons';
3
4 const Icon = ({ name }) => {
5 const iconMap = applyFilters('usk.admin.iconMap', adminIconMap);
6 const Component = iconMap[name] || iconMap.info;
7 return <Component />;
8 };
9
10 export default Icon;
11