mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-08-04 21:48:30 +02:00
28 lines
482 B
QML
28 lines
482 B
QML
import QtQuick 2.0
|
|
import "../../styles-uit/"
|
|
|
|
Rectangle {
|
|
id: tabletButton
|
|
width: 140
|
|
height: 140
|
|
color: "#1794c3"
|
|
|
|
Image {
|
|
id: icon
|
|
x: 40
|
|
y: 30
|
|
width: 60
|
|
height: 60
|
|
source: "../../../icons/edit-icon.svg"
|
|
}
|
|
|
|
RalewaySemiBold {
|
|
id: text
|
|
x: 50
|
|
y: 96
|
|
color: "#ffffff"
|
|
text: qsTr("EDIT")
|
|
horizontalAlignment: Text.AlignHCenter
|
|
font.pixelSize: 18
|
|
}
|
|
}
|