UNPKG

cedro

Version:

Javascript library to build user interfece based on widgets.

12 lines (10 loc) 234 B
export class SelectItem { id: string; label: string; icon: string; constructor(id: string, label: string, icon: string) { this.id = id; this.label = label; this.icon = icon; } }