primevue-mirror/packages/icons/src/blank/BlankIcon.d.ts

13 lines
296 B
TypeScript
Raw Normal View History

import type { DefineComponent } from '@primevue/core';
import type { Icon } from '@primevue/icons/baseicon';
2024-01-24 10:17:05 +00:00
declare class BlankIcon extends Icon {}
declare module 'vue' {
export interface GlobalComponents {
BlankIcon: DefineComponent<BlankIcon>;
2024-01-24 10:17:05 +00:00
}
}
export default BlankIcon;