UNPKG

view-ui-plus

Version:

A high quality UI components Library with Vue.js 3

25 lines (19 loc) 356 B
import type { DefineComponent } from 'vue'; export declare const Icon: DefineComponent<{ /** * 图标的名称 */ type?: string; /** * 图标的大小,单位是 px */ size?: number | string; /** * 图标的颜色 */ color?: string; /** * 自定义图标 */ custom?: string; }>