2026-03-09 10:02:44 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import qs
|
|
|
|
|
import qs.settings
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
id: root
|
2026-03-19 11:32:23 +01:00
|
|
|
color: Colors.base05
|
|
|
|
|
property real iconSize: 18
|
|
|
|
|
property var fill: true
|
2026-03-09 10:02:44 +01:00
|
|
|
renderType: Text.NativeRendering
|
|
|
|
|
font {
|
2026-03-19 11:32:23 +01:00
|
|
|
hintingPreference: Font.PreferNoHinting
|
|
|
|
|
family: "Material Symbols Rounded"
|
|
|
|
|
pixelSize: iconSize
|
|
|
|
|
weight: Font.Normal + (Font.DemiBold - Font.Normal) * fill
|
2026-03-09 10:02:44 +01:00
|
|
|
variableAxes: {
|
2026-03-19 11:32:23 +01:00
|
|
|
"FILL": fill,
|
2026-03-09 10:02:44 +01:00
|
|
|
"opsz": iconSize
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|