Icon

[ Interface ]

export interface Icon {
    iconPath: string;
    iconWidth?: number;
    iconWidthUnit?: 'px' | '%';
    iconHeight?: number;
    iconHeightUnit?: 'px' | '%';
}

Properties

Name

Type

Description

iconPath

string

The path of the icon.

iconWidth

number, undefined

The width of the icon.

iconWidthUnit

'px', '%', undefined

The unit of the width of the icon.

iconHeight

number, undefined

The height of the icon.

iconHeightUnit

'px', '%', undefined

The unit of the height of the icon.