Files
pay/desktop/widgets/CloseIcon.qml
T
tomFlowee 1d5dd49870 Clarify globals in QML.
Now the global namespace (not instance) is "Bitcoin".
The application instance now is "Pay".
2021-11-02 19:29:14 +01:00

34 lines
591 B
QML

import QtQuick 2.11
import QtQuick.Controls 2.11
import QtQuick.Layouts 1.11
Item {
id: root
width: 30
height: 30
signal clicked;
MouseArea {
anchors.fill: parent
onClicked: root.clicked();
cursorShape: Qt.PointingHandCursor
}
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
}
}