@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
55 lines • 1.12 kB
JavaScript
var CLASS_PREFIX = 'md-icon';
var COLOR_INHERIT = 'currentColor';
var WEIGHTS = {
light: 'light',
regular: 'regular',
bold: 'bold',
filled: 'filled',
};
var SCALES = {
25: 25,
50: 50,
75: 75,
100: 100,
125: 125,
150: 150,
175: 175,
200: 200,
};
var SIZES = {
8: 8,
10: 10,
12: 12,
14: 14,
16: 16,
18: 18,
20: 20,
22: 22,
24: 24,
28: 28,
32: 32,
36: 36,
40: 40,
48: 48,
56: 56,
64: 64,
120: 120,
124: 124,
auto: 'auto',
inherit: 'inherit',
};
var DEFAULTS = {
WEIGHT: WEIGHTS.regular,
AUTO_SCALE: false,
WEIGHTLESS: false,
};
var STYLE = {
wrapper: "".concat(CLASS_PREFIX, "-wrapper"),
notFound: "".concat(CLASS_PREFIX, "-not-found"),
coloured: "".concat(CLASS_PREFIX, "-coloured"),
noShrink: "".concat(CLASS_PREFIX, "-no-shrink"),
autoScales: "".concat(CLASS_PREFIX, "-auto-scales"),
scales: "".concat(CLASS_PREFIX, "-scales"),
};
export { CLASS_PREFIX, COLOR_INHERIT, DEFAULTS, SCALES, SIZES, STYLE, WEIGHTS };
//# sourceMappingURL=Icon.constants.js.map