Icon
[ Schnittstelle ]
export interface Icon {
iconPath: string;
iconWidth?: number;
iconWidthUnit?: 'px' | '%';
iconHeight?: number;
iconHeightUnit?: 'px' | '%';
}Eigenschaften
Name | Typ | Beschreibung |
|---|---|---|
iconPath | Der Pfad des Icons. | |
iconWidth | Die Breite des Icons. | |
iconWidthUnit | 'px', '%', undefined | Die Einheit der Breite des Icons. |
iconHeight | Die Höhe des Icons. | |
iconHeightUnit | 'px', '%', undefined | Die Einheit der Höhe des Icons. |