sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
16 lines (15 loc) • 409 B
TypeScript
import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
export interface IconProps {
rootStyle?: StyleValue;
rootClass?: string;
name?: string;
family?: string;
size?: string;
color?: string;
separate?: boolean;
}
export declare const defaultIconProps: () => DefaultProps<IconProps>;
export interface IconEmits {
(e: 'click', event: any): void;
}