mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 14:48:15 +00:00
18 lines
389 B
QML
18 lines
389 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'
|
|
: ''
|
|
}
|