25 lines
338 B
QML
25 lines
338 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
implicitWidth: 100
|
|
implicitHeight: 50
|
|
|
|
property bool active: false
|
|
property string icon: "?"
|
|
|
|
color: active
|
|
? "#5b6078"
|
|
: "#494d64"
|
|
radius: 12
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
|
|
text: parent.icon
|
|
|
|
font.pointSize: 28
|
|
color: "#cad3f5"
|
|
}
|
|
}
|