11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
export interface DropdownOption {
|
|
/** The label displayed in the list of options. */
|
|
label: string;
|
|
|
|
/** The value assigned to the dropdown value variable */
|
|
value: string;
|
|
|
|
/** An optional icon displayed left to the label */
|
|
icon_url?: string;
|
|
}
|