fastlion-amis
Version:
一种MIS页面生成工具
13 lines (12 loc) • 525 B
TypeScript
/**
* @file 图标支持的公共方法,主要是支持自动识别地址和 icon-font
*/
/// <reference types="react" />
import { ClassNamesFn } from '../theme';
/**
* 判断字符串来生成 i 或 img
* @param icon icon 设置
* @param className 内部用的 className
* @param classNameProp amis 配置里设置的 className
*/
export declare const generateIcon: (cx: ClassNamesFn, icon?: string | undefined, className?: string | undefined, classNameProp?: string | undefined) => JSX.Element | null;