UNPKG

@fe6/icon-cube-vue

Version:

Water Icon 的支持自定义图标

12 lines (11 loc) 525 B
import type { App, DefineComponent, ComponentOptions } from 'vue'; import * as mapIcon from './map'; import { IIconProps } from './runtime'; export declare type IconType = keyof typeof mapIcon; export interface IIconAllProps extends IIconProps { type: IconType | string; } export declare type IIconAllOptions = ComponentOptions<IIconAllProps>; export declare type TAllIcon = DefineComponent<IIconAllProps>; export declare const IconKeg: TAllIcon; export declare const iconKegInstall: (Vue: App, prefix?: string) => void;