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-12-10 00:29:14 +01:00

19 lines
379 B
QML

import QtQuick 2.9
Item {
id: root
implicitHeight: app.iconSize * .8
implicitWidth: height
property bool on: false
Rectangle {
height: Math.min(parent.height, parent.height)
width: height
radius: width / 2
color: root.on ? "lightgreen" : "lightgray"
border.width: 1
border.color: app.foregroundColor
}
}