UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

10 lines (9 loc) 246 B
/** * Model describing a list item. See <a href="/user-input/list">NeonList</a>. */ export interface NeonListItem { /** Unique key identifying the list item */ key: string; /** Display label of the list item */ label: string; }