sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
21 lines (20 loc) • 595 B
TypeScript
import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
export interface CoolIconProps {
rootStyle?: StyleValue;
rootClass?: string;
shape?: 'circle' | 'square' | 'oval' | 'triangle' | 'flower';
size?: string;
iconSize?: string;
color?: string;
background?: string;
}
export declare const defaultCoolIconProps: () => DefaultProps<CoolIconProps>;
export interface CoolIconSlots {
default?(props: Record<string, never>): any;
}
export interface CoolIconEmits {
(e: 'click', event: any): void;
}
export interface CoolIconExpose {
}