mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
25 lines
921 B
JavaScript
25 lines
921 B
JavaScript
import { Size } from '../../../helpers/constants/design-system';
|
|
|
|
/**
|
|
* The ICON_NAMES object contains all the possible icon names.
|
|
*
|
|
* Search for an icon: https://metamask.github.io/metamask-storybook/?path=/story/components-componentlibrary-icon--default-story
|
|
*
|
|
* Add an icon: https://metamask.github.io/metamask-storybook/?path=/docs/components-componentlibrary-icon--default-story#adding-a-new-icon
|
|
*
|
|
* ICON_NAMES is generated using svgs in app/images/icons and
|
|
* the generateIconNames script in development/generate-icon-names.js
|
|
* then stored as an environment variable
|
|
*/
|
|
|
|
/* 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 = JSON.parse(process.env.ICON_NAMES);
|
|
export const ICON_SIZES = {
|
|
XS: Size.XS,
|
|
SM: Size.SM,
|
|
MD: Size.MD,
|
|
LG: Size.LG,
|
|
XL: Size.XL,
|
|
AUTO: Size.inherit,
|
|
};
|