22 lines
400 B
QML
22 lines
400 B
QML
import QtQuick
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
Image {
|
|
id: icon
|
|
|
|
property string color: ""
|
|
property string path: ""
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
source: path
|
|
|
|
layer{
|
|
enabled: color != ""
|
|
effect: ColorOverlay {
|
|
color: icon.color
|
|
}
|
|
}
|
|
|
|
sourceSize: Qt.size(width*3, height*3) // for better resolution when loading svg files
|
|
}
|