@tplc/wot
Version:
33 lines (32 loc) • 594 B
TypeScript
export declare const iconProps: {
/**
* 使用的图标名字,可以使用链接图片
*/
name: {
type: StringConstructor
required: true
}
/**
* 图标的颜色
*/
color: StringConstructor
/**
* 图标的字体大小
*/
size: StringConstructor
/**
* 类名前缀,用于使用自定义图标
*/
classPrefix: {
type: import('vue').PropType<string>
default: string
}
customStyle: {
type: import('vue').PropType<string>
default: string
}
customClass: {
type: import('vue').PropType<string>
default: string
}
}