UNPKG

vue3-treeview

Version:

A simple vue js 3 treeview component

17 lines (16 loc) 355 B
export interface IIcon { width: number; height: number; draw?: string; name?: string; stroke?: string; strokeWidth?: number; src?: string; alt?: string; style?: string | {}; type?: IconType; class?: string | string[]; viewBox?: string; fill?: string; } export type IconType = "shape" | "class" | "img";