13 lines
320 B
TypeScript
13 lines
320 B
TypeScript
|
|
import type { DefineComponent } from '@primevue/core';
|
||
|
|
import type { Icon } from '@primevue/icons/baseicon';
|
||
|
|
|
||
|
|
declare class TimesCircleIcon extends Icon {}
|
||
|
|
|
||
|
|
declare module 'vue' {
|
||
|
|
export interface GlobalComponents {
|
||
|
|
TimesCircleIcon: DefineComponent<TimesCircleIcon>;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default TimesCircleIcon;
|