mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 10:29:24 +00:00
20 lines
432 B
QML
20 lines
432 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
|
|
// ===================================================================
|
|
// An icon image properly resized.
|
|
// ===================================================================
|
|
|
|
Image {
|
|
property int iconSize
|
|
property string icon
|
|
|
|
height: iconSize
|
|
width: iconSize
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
source: icon
|
|
? Constants.imagesPath + icon + Constants.imagesFormat
|
|
: ''
|
|
}
|