You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
606 B
11 lines
606 B
/**
|
|
* The ICON_NAMES object contains all the possible icon names.
|
|
* It is generated using the generateIconNames script in development/generate-icon-names.js
|
|
* and stored in the environment variable ICON_NAMES
|
|
* To add a new icon, add the icon svg file to app/images/icons
|
|
* Ensure the svg has been optimized, is kebab case and starts with "icon-"
|
|
* See "Adding a new icon" in ./README.md for more details
|
|
*/
|
|
|
|
/* eslint-disable prefer-destructuring*/ // process.env is not a standard JavaScript object, so we are not able to use object destructuring
|
|
export const ICON_NAMES = process.env.ICON_NAMES;
|
|
|