Icon
[ Interface ]
export interface Icon {
iconPath: string;
iconWidth?: number;
iconWidthUnit?: 'px' | '%';
iconHeight?: number;
iconHeightUnit?: 'px' | '%';
}Properties
Name | Type | Description |
|---|---|---|
iconPath | The path of the icon. | |
iconWidth | The width of the icon. | |
iconWidthUnit | 'px', '%', undefined | The unit of the width of the icon. |
iconHeight | The height of the icon. | |
iconHeightUnit | 'px', '%', undefined | The unit of the height of the icon. |