mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
27 lines
546 B
QML
27 lines
546 B
QML
import qs.components
|
|
import qs.services
|
|
import qs.config
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
required property string label
|
|
required property string value
|
|
property bool showTopMargin: false
|
|
|
|
spacing: Appearance.spacing.small / 2
|
|
|
|
StyledText {
|
|
Layout.topMargin: root.showTopMargin ? Appearance.spacing.normal : 0
|
|
text: root.label
|
|
}
|
|
|
|
StyledText {
|
|
text: root.value
|
|
color: Colours.palette.m3outline
|
|
font.pointSize: Appearance.font.size.small
|
|
}
|
|
}
|