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.
Michael Zanetti 834c7a43c5 moar work!
2017-11-10 15:11:49 +01:00

18 lines
342 B
QML

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