2024-10-09 08:04:31 +00:00
|
|
|
import type { DefineComponent } from '@primevue/core';
|
2024-06-11 22:03:46 +00:00
|
|
|
import type { Icon } from '@primevue/icons';
|
2023-03-31 21:45:03 +00:00
|
|
|
|
|
|
|
declare class BarsIcon extends Icon {}
|
|
|
|
|
2024-03-14 22:58:11 +00:00
|
|
|
declare module 'vue' {
|
|
|
|
export interface GlobalComponents {
|
2024-10-09 08:04:31 +00:00
|
|
|
BarsIcon: DefineComponent<BarsIcon>;
|
2023-03-31 21:45:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default BarsIcon;
|