This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-22 18:40:17 +02:00

19 lines
376 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
ToolButton {
property alias imageSource: image.source
contentItem: Item {
height: 20
width: 20
Image {
id: image
anchors.fill: parent
anchors.margins: app.margins / 2
sourceSize.height: height
sourceSize.width: width
}
}
}