mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-19 18:41:29 +00:00
27 lines
537 B
QML
27 lines
537 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Rectangle {
|
||
|
property alias text: content.text
|
||
|
width: content.width + 12
|
||
|
height: content.height + 17
|
||
|
color: "#FF6C3C"
|
||
|
radius: 3
|
||
|
|
||
|
Image {
|
||
|
anchors.top: parent.bottom
|
||
|
anchors.left: parent.left
|
||
|
anchors.leftMargin: 8
|
||
|
source: "../images/tip.png"
|
||
|
}
|
||
|
|
||
|
Text {
|
||
|
id: content
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
y: 6
|
||
|
lineHeight: 0.7
|
||
|
font.family: "Arial"
|
||
|
font.pixelSize: 12
|
||
|
color: "#FFFFFF"
|
||
|
}
|
||
|
}
|