mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-11 14:16:43 +00:00
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
|
|
}
|
|
}
|
|
|