@primevue/icons
Version:
13 lines (9 loc) • 352 B
TypeScript
import type { DefineComponent } from '@primevue/core';
import type { Icon } from '@primevue/icons/baseicon';
declare class ExclamationTriangleIcon extends Icon {}
declare module 'vue' {
export interface GlobalComponents {
ExclamationTriangleIcon: DefineComponent<ExclamationTriangleIcon>;
}
}
export default ExclamationTriangleIcon;