From 46e1127b66a435dc4ba4b8e3ce57715da24b7743 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 29 Apr 2025 09:38:23 +1000 Subject: refactor: move bar components into folder --- modules/bar/components/OsIcon.qml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/bar/components/OsIcon.qml (limited to 'modules/bar/components/OsIcon.qml') diff --git a/modules/bar/components/OsIcon.qml b/modules/bar/components/OsIcon.qml new file mode 100644 index 0000000..2b99de3 --- /dev/null +++ b/modules/bar/components/OsIcon.qml @@ -0,0 +1,19 @@ +import "root:/widgets" +import "root:/services" +import "root:/utils" +import "root:/config" +import QtQuick +import QtQuick.Layouts + +Box { + padding: [Appearance.padding.smaller, 0] + + Label { + text: Icons.osIcon + font.pointSize: Appearance.font.size.smaller + font.family: Appearance.font.family.mono + color: Appearance.colours.yellow + + Layout.alignment: Layout.Center + } +} -- cgit v1.2.3-freya