linphone-desktop/tests/ui/components/image/Icon.qml

14 lines
231 B
QML

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