# extendify/3.1.6/src/Notifications/icons.js

Extendify, version 3.1.6. 59 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.6/code/src/Notifications/icons.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.6/raw/src/Notifications/icons.js
- Modified: 2026-08-27T17:39:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.6/code/src/Notifications/icons.js#L10-L20`.

```javascript
import {
	bell,
	box,
	calendar,
	caution,
	check,
	cog,
	dashboard,
	error,
	gift,
	globe,
	help,
	info,
	key,
	lock,
	mapMarker,
	notAllowed,
	payment,
	plusCircle,
	published,
	receipt,
	scheduled,
	starFilled,
	tag,
	tool,
	trendingUp,
} from '@wordpress/icons';

const ICONS = {
	bell,
	box,
	calendar,
	caution,
	check,
	cog,
	dashboard,
	error,
	gift,
	globe,
	help,
	info,
	key,
	lock,
	mapMarker,
	notAllowed,
	payment,
	plusCircle,
	published,
	receipt,
	scheduled,
	starFilled,
	tag,
	tool,
	trendingUp,
};

// An unbundled name renders nothing rather than a broken glyph.
export const iconFor = (name) => ICONS[name] ?? null;

```
