status-desktop/ui/shared/TertiaryButton.qml
emizzle d07daac377
feat/tx-comps: Add RecipientSelector component
Based on the spec in https://www.notion.so/emizzle/Wallet-transaction-components-2003b78a8d0d41c4ab3d21eb2496fb20, this component handles user input for a recipient address, which can be sourced from manual address input, ENS name, contact selection, or another of the user's wallet accounts.
2020-08-13 09:28:35 +02:00

38 lines
873 B
QML

import QtQuick 2.13
import QtQuick.Controls 2.13
import "../imports"
Button {
id: root
property alias label: txtBtnLabel.text
width: txtBtnLabel.width + 2 * 12
height: txtBtnLabel.height + 2 * 6
background: Rectangle {
color: Style.current.backgroundTertiary
radius: 6
anchors.fill: parent
border.color: Style.current.borderTertiary
border.width: 1
}
StyledText {
id: txtBtnLabel
color: Style.current.textColorTertiary
font.pixelSize: 12
height: 16
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Paste")
}
MouseArea {
id: mouse
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onClicked: {
parent.clicked()
}
}
}