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.
2018-06-26 04:14:19 +02:00

19 lines
386 B
QML

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