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