claude-web/node_modules/@primevue/icons/chevronright/index.d.ts

13 lines
324 B
TypeScript
Raw Permalink Normal View History

2026-02-23 02:23:38 +00:00
import type { DefineComponent } from '@primevue/core';
import type { Icon } from '@primevue/icons/baseicon';
declare class ChevronRightIcon extends Icon {}
declare module 'vue' {
export interface GlobalComponents {
ChevronRightIcon: DefineComponent<ChevronRightIcon>;
}
}
export default ChevronRightIcon;