diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-12 16:36:42 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-12 16:36:42 -0500 |
| commit | 893a91a95a11cb57ffe2fbfa0ec221c1a309528b (patch) | |
| tree | 93ffc258a9ef2b5ea1bd8ef9109e48991844f1af /components/SectionHeader.qml | |
| parent | controlcenter: refactoring into components (diff) | |
| download | caelestia-shell-893a91a95a11cb57ffe2fbfa0ec221c1a309528b.tar.gz caelestia-shell-893a91a95a11cb57ffe2fbfa0ec221c1a309528b.tar.bz2 caelestia-shell-893a91a95a11cb57ffe2fbfa0ec221c1a309528b.zip | |
controlcenter: refactored wifi/ethernet panels
Diffstat (limited to 'components/SectionHeader.qml')
| -rw-r--r-- | components/SectionHeader.qml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/components/SectionHeader.qml b/components/SectionHeader.qml new file mode 100644 index 0000000..897e63a --- /dev/null +++ b/components/SectionHeader.qml @@ -0,0 +1,28 @@ +import qs.components +import qs.services +import qs.config +import QtQuick +import QtQuick.Layouts + +ColumnLayout { + id: root + + required property string title + property string description: "" + + spacing: 0 + + StyledText { + Layout.topMargin: Appearance.spacing.large + text: root.title + font.pointSize: Appearance.font.size.larger + font.weight: 500 + } + + StyledText { + visible: root.description !== "" + text: root.description + color: Colours.palette.m3outline + } +} + |