@fe6/icon-img
Version:
Water Icon 的纯 HTML 图标
9 lines (8 loc) • 359 B
TypeScript
import * as IconMap from './map';
import { IIconProps } from './runtime';
export declare type IconType = keyof typeof IconMap;
export interface IIconAllProps extends IIconProps {
type?: IconType | string;
}
export declare const allGetContent: (svgItem: string, props: IIconProps) => string;
export declare const iconKeg: (props: IIconAllProps) => string;