lux-shell/styled/Clickable.qml
2025-07-23 10:17:56 -04:00

26 lines
562 B
QML

import QtQuick
import "../config/"
MouseArea {
id: mouseArea
property bool disabled: false
hoverEnabled: !disabled
cursorShape: Qt.PointingHandCursor
Rectangle {
id: background
anchors.fill: parent
radius: Dimensions.radius
color: mouseArea.containsMouse ? Theme.palette.primary : Theme.palette.base300
Behavior on color {
ColorAnimation {
properties: "color"
duration: 200
easing.type: Easing.InOutCubic
}
}
}
}