forked from Shinonome/dots-hyprland
10 lines
190 B
QML
10 lines
190 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
|
|
// MouseArea that contains good defaults for buttons
|
|
MouseArea {
|
|
id: root
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
}
|