mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-24 11:08:16 +08:00
20 lines
295 B
TypeScript
20 lines
295 B
TypeScript
export interface IconsOptions {
|
|
/**
|
|
* The prefix of the icon className
|
|
* @default 'vp-mdi'
|
|
*/
|
|
prefix?: string
|
|
|
|
/**
|
|
* The size of the icon
|
|
* @default '1em'
|
|
*/
|
|
size?: string | number
|
|
|
|
/**
|
|
* The color of the icon
|
|
* @default 'currentColor'
|
|
*/
|
|
color?: string
|
|
}
|