Lib: Add non-lazy variants for card, image and dropdown

This commit is contained in:
2024-12-23 01:16:48 +01:00
parent c327fe0b1f
commit 6994547d13
5 changed files with 210 additions and 0 deletions

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