chore: remove `TertiaryButton`

This commit is contained in:
Pascal Precht 2021-10-14 15:29:25 +02:00 committed by Iuri Matias
parent e6df5c8b12
commit ac40022a93
1 changed files with 0 additions and 42 deletions

View File

@ -1,42 +0,0 @@
import QtQuick 2.13
import QtQuick.Controls 2.13
import utils 1.0
import "./panels"
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
//% "Paste"
text: qsTrId("paste")
}
MouseArea {
id: mouse
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onClicked: {
parent.clicked()
}
}
}