UNPKG

vue3-icon-picker

Version:
12 lines (11 loc) 304 B
export type IconLibrary = 'antd' | 'carbon' | 'fa' | 'fluent' | 'ionicons4' | 'ionicons5' | 'material' | 'tabler'; export type ValueType = 'name' | 'svg'; export interface Icon { id: number; name: string; svgCode: string; library: string; } export interface Options { name: string; }