aboutsummaryrefslogtreecommitdiff
path: root/quickshell/IconButton.qml
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-08-06 00:29:36 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-08-06 00:29:36 +0530
commit91a5f9790cfd4a98ee940633694fb512ecf24942 (patch)
treeb20bdd22e304234b6893e20d0ca5fbfd042f2184 /quickshell/IconButton.qml
parentced774e19c36fb3b0b33a3846e7c9cf874b0c206 (diff)
i3 > hyprland & x11 > wayland
Diffstat (limited to 'quickshell/IconButton.qml')
-rw-r--r--quickshell/IconButton.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/quickshell/IconButton.qml b/quickshell/IconButton.qml
deleted file mode 100644
index 96c4c7f..0000000
--- a/quickshell/IconButton.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick
-
-MouseArea {
- id: iconButton
-
- property string icon: ""
- property string tooltip: ""
-
- width: 32
- height: 32
-
- hoverEnabled: true
- cursorShape: Qt.PointingHandCursor
- enabled: true
- z: 10
-
- Rectangle {
- anchors.fill: parent
- color: "transparent"
- radius: 6
-
- Behavior on color {
- ColorAnimation { duration: 200 }
- }
-
- Text {
- id: iconText
- anchors.centerIn: parent
- text: iconButton.icon
- font.family: shellRoot.fontFamily
- font.pixelSize: 22
- color: shellRoot.white
-
- Component.onCompleted: {
- console.log("IconButton text:", iconButton.icon, "length:", iconButton.icon.length)
- }
- }
- }
-
-
-}