39 lines
765 B
QML
39 lines
765 B
QML
import QtQuick
|
|
import qs.Commons
|
|
|
|
Row {
|
|
id: root
|
|
|
|
property string icon: ""
|
|
property string title: ""
|
|
|
|
spacing: Style.spaceReal(10)
|
|
|
|
Rectangle {
|
|
width: Style.spaceReal(28)
|
|
height: width
|
|
radius: Style.cardRadius
|
|
color: Util.alpha(Color.blue, 0.2)
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: root.icon
|
|
textFormat: Text.PlainText
|
|
color: Color.blue
|
|
font.family: Style.font.family
|
|
font.pixelSize: Style.font.body
|
|
}
|
|
}
|
|
|
|
Text {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: root.title
|
|
textFormat: Text.PlainText
|
|
color: Color.foreground
|
|
font.family: Style.font.family
|
|
font.pixelSize: Style.font.body
|
|
font.bold: true
|
|
}
|
|
}
|