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

13 lines
325 B
TypeScript

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