Lib: Add non-lazy variants for card, image and dropdown
This commit is contained in:
10
src/lib/components/form/Dropdown.ts
Normal file
10
src/lib/components/form/Dropdown.ts
Normal file
@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user