gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
19 lines (18 loc) • 411 B
TypeScript
import { type StyleValue } from 'vue';
export interface IconProps {
rootStyle?: StyleValue;
rootClass?: string;
name?: string;
family?: string;
size?: string;
color?: string;
separate?: boolean;
}
export declare const defaultIconProps: {
name: string;
family: string;
separate: IconProps["separate"];
};
export interface IconEmits {
(e: 'click', event: any): void;
}