UNPKG

@useloops/design-system

Version:

The official React based Loops design system

17 lines (14 loc) 489 B
import * as react from 'react'; import { SxProps, Theme } from '@mui/material'; import { IconName } from '../../../BrandCore/Icon.js'; declare const iconSizeMap: Record<string, number>; interface IconProps { color?: string; name: IconName; disabled?: boolean; size?: number; sx?: SxProps<Theme>; } declare const Icon: react.ForwardRefExoticComponent<IconProps & react.RefAttributes<SVGSVGElement>>; export { Icon as default, iconSizeMap }; export type { IconProps };