UNPKG

vue3-icon-picker

Version:
10 lines (9 loc) 299 B
import type { App } from 'vue'; import Icon from './components/Icon.vue'; import Vue3IconPicker from './components/Picker.vue'; import type { Options } from './types'; export { Vue3IconPicker, Icon }; declare const plugin: { install(app: App, options?: Options): void; }; export default plugin;