1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/component-library/icon/icon.constants.js

25 lines
921 B
JavaScript
Raw Normal View History

import { Size } from '../../../helpers/constants/design-system';
2022-11-23 18:58:43 +01:00
/**
* The ICON_NAMES object contains all the possible icon names.
2022-11-23 18:58:43 +01:00
*
* Search for an icon: https://metamask.github.io/metamask-storybook/?path=/story/components-componentlibrary-icon--default-story
2022-11-23 18:58:43 +01:00
*
* Add an icon: https://metamask.github.io/metamask-storybook/?path=/docs/components-componentlibrary-icon--default-story#adding-a-new-icon
2022-11-23 18:58:43 +01:00
*
* 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);
2022-11-23 18:58:43 +01:00
export const ICON_SIZES = {
XS: Size.XS,
SM: Size.SM,
MD: Size.MD,
LG: Size.LG,
XL: Size.XL,
AUTO: Size.inherit,
2022-11-23 18:58:43 +01:00
};