primevue-mirror/components/lib/icon/chevronright/index.d.ts

13 lines
329 B
TypeScript

import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class ChevronRightIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
ChevronRightIcon: GlobalComponentConstructor<ChevronRightIcon>;
}
}
export default ChevronRightIcon;