mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 23:09:26 -05:00
30 lines
711 B
QML
30 lines
711 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
|
|
RowLayout {
|
|
id: root
|
|
required property string icon
|
|
required property string label
|
|
required property string value
|
|
spacing: 4
|
|
|
|
MaterialSymbol {
|
|
text: root.icon
|
|
color: Appearance.colors.colOnSurfaceVariant
|
|
iconSize: Appearance.font.pixelSize.large
|
|
}
|
|
StyledText {
|
|
text: root.label
|
|
color: Appearance.colors.colOnSurfaceVariant
|
|
}
|
|
StyledText {
|
|
Layout.fillWidth: true
|
|
horizontalAlignment: Text.AlignRight
|
|
visible: root.value !== ""
|
|
color: Appearance.colors.colOnSurfaceVariant
|
|
text: root.value
|
|
}
|
|
}
|