mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
e69e207b7d
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
12 lines
606 B
JavaScript
12 lines
606 B
JavaScript
/**
|
|
* 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;
|