import type { IconProps as BaseIconProps } from '@zarm-design/icons'; import { Icon as BaseIcon } from '@zarm-design/icons'; import * as React from 'react'; import type { HTMLProps } from '../utils/utilityTypes'; export interface IconCssVars { '--font-size'?: React.CSSProperties['fontSize']; '--color'?: React.CSSProperties['color']; } export declare type IconProps = Omit & HTMLProps; interface CompoundedComponent extends React.ForwardRefExoticComponent { createFromIconfont: typeof BaseIcon.createFromIconfont; } declare const Icon: CompoundedComponent; export default Icon;