Files
svelte-formula11/src/lib/components/form/Dropdown.ts

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;
}