import { HTMLAttributes, CSSProperties } from 'react';
export interface IconFontProps extends HTMLAttributes {
/**
* 图标类型
*/
name?: string;
/**
* 尺寸
* @default undefined
*/
size?: 'small' | 'medium' | 'large' | string | number;
/**
* 渲染容器元素
* @default 'i'
*/
tag?: 'i' | 'span' | 'div';
/**
* 样式
*/
style?: CSSProperties;
/**
* 类名
*/
className?: string;
/**
* 图标地址
*/
url?: string | string[];
/**
* @default true
*/
loadDefaultIcons?: boolean;
}
/**
* 图标组件
* iconfont 版本
*/
export declare const IconFont: import("react").ForwardRefExoticComponent>;