Lib: Move form stuff into form/ directory

This commit is contained in:
2024-12-18 14:59:55 +01:00
parent 344b4c0a78
commit 301750e1a6
5 changed files with 26 additions and 27 deletions

View File

@ -0,0 +1,16 @@
export interface LazyDropdownOption {
/** 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;
/** The aspect ratio width of the optional icon */
icon_width?: number;
/** The aspect ratio height of the optional icon */
icon_height?: number;
}