mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
import { Icon } from '../index';
|
|
|
|
declare class ChevronLeftIcon extends Icon {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
ChevronLeftIcon: GlobalComponentConstructor<ChevronLeftIcon>;
|
|
}
|
|
}
|
|
|
|
export default ChevronLeftIcon;
|