blob: d3df67da8dcddd4c439abcc4af9140dd6fdaabe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import "root:/widgets"
import "root:/services"
import "root:/utils"
import "root:/config"
import QtQuick
StyledRect {
id: root
readonly property color colour: Appearance.colours.rosewater
MaterialIcon {
id: icon
text: Icons.getNetworkIcon(Network.active.strength)
color: root.colour
}
}
|