mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-18 10:32:53 +00:00
cea1d68308
Closes #41
19 lines
319 B
QML
19 lines
319 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Item {
|
|
height: 34
|
|
width: 176
|
|
property alias text: label.text
|
|
|
|
StatusBaseText {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
id: label
|
|
font.pixelSize: 15
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
}
|
|
|