UNPKG

vue-icon-gallery

Version:

Vite plugin for Vue 3 that opens a local gallery to preview your SVG icons before using them in templates. Instantly browse, search, and view your icons directly from your dev server — no more guessing by file name.

9 lines (8 loc) 305 B
export interface IconInfo { name: string; path: string; } /** * Сканирует папку или папки с иконками и возвращает список найденных Vue компонентов */ export declare function scanIcons(iconsPath: string | string[]): IconInfo[];