linphone-desktop/tests/ui/modules/Linphone/Image/Icon.qml
2016-09-27 09:12:10 +02:00

18 lines
409 B
QML

import QtQuick 2.7
// ===================================================================
// An icon image properly resized.
// ===================================================================
Image {
property int iconSize
property string icon
height: iconSize
width: iconSize
fillMode: Image.PreserveAspectFit
source: icon
? 'qrc:/imgs/' + icon + '.svg'
: ''
}