Files
pay/desktop/widgets/CloseIcon.qml
T

34 lines
591 B
QML
Raw Permalink Normal View History

2021-10-29 18:20:42 +02:00
import QtQuick 2.11
import QtQuick.Controls 2.11
import QtQuick.Layouts 1.11
Item {
2021-10-30 16:17:02 +02:00
id: root
2021-10-29 18:20:42 +02:00
width: 30
height: 30
2021-10-30 16:17:02 +02:00
signal clicked;
2021-10-29 18:20:42 +02:00
MouseArea {
anchors.fill: parent
2021-10-30 16:17:02 +02:00
onClicked: root.clicked();
2021-10-30 16:29:48 +02:00
cursorShape: Qt.PointingHandCursor
2021-10-29 18:20:42 +02:00
}
Rectangle {
color: "#bbbbbb"
width: 30
height: 3
radius: 3
rotation: 45
anchors.centerIn: parent
}
Rectangle {
color: "#bbbbbb"
width: 30
height: 3
radius: 3
rotation: -45
anchors.centerIn: parent
}
}