Variable: iconList
ts
const iconList: {
icon: `mdi-${string}`;
title: string;
value: `mdi-${string}`;
}[];
List of available icon names for use in the application.
Type declaration
Name | Type | Default value |
---|---|---|
icon | `mdi-${string}` | - |
title | string | i |
value | `mdi-${string}` | - |
Remarks
This array contains all supported icon identifiers as strings.
Example
ts
iconList.includes("mdi-home"); // true if 'mdi-home' is in the list