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
|
|
}
|