UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

31 lines (30 loc) 768 B
import { IconScale } from '.'; import type { IconWeight } from './Icon.types'; declare const CLASS_PREFIX = "md-icon"; declare const COLOR_INHERIT = "currentColor"; declare const WEIGHTS: Record<string, IconWeight>; declare const SCALES: { 25: number; 50: number; 75: number; 100: number; 125: number; 150: number; 175: number; 200: number; }; declare const SIZES: Record<IconScale, IconScale>; declare const DEFAULTS: { WEIGHT: IconWeight; AUTO_SCALE: boolean; WEIGHTLESS: boolean; }; declare const STYLE: { wrapper: string; notFound: string; coloured: string; noShrink: string; autoScales: string; scales: string; }; export { CLASS_PREFIX, COLOR_INHERIT, DEFAULTS, SCALES, SIZES, STYLE, WEIGHTS };