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