blob: 028c3c7321372b1d79b2ce6fd57c48d65702e87a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import "root:/widgets"
import "root:/services"
import "root:/utils"
import "root:/config"
import QtQuick
import QtQuick.Layouts
Box {
Label {
text: Icons.osIcon
font.pointSize: Appearance.font.size.smaller
font.family: Appearance.font.family.mono
color: Appearance.colours.yellow
Layout.alignment: Qt.AlignCenter
}
}
|