2026-01-16 14:44:10 +01:00
|
|
|
import QtQuick
|
2026-01-19 12:45:35 +01:00
|
|
|
import qs.settings
|
|
|
|
|
import qs
|
2026-01-16 14:44:10 +01:00
|
|
|
|
|
|
|
|
Text {
|
2026-01-21 23:29:56 +01:00
|
|
|
property real fill: 1
|
2026-01-19 15:17:57 +01:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2026-01-21 23:37:56 +01:00
|
|
|
font.family: "Material Icons Sharp"
|
2026-01-23 16:34:15 +01:00
|
|
|
color: Colors.onSurfaceColor
|
2026-01-16 15:15:44 +01:00
|
|
|
font.variableAxes: ({
|
2026-01-21 23:29:56 +01:00
|
|
|
FILL: fill.toFixed(1),
|
|
|
|
|
GRAD: -25,
|
|
|
|
|
opsz: Settings.config.fontSize,
|
|
|
|
|
wght: Settings.config.fontWeight
|
2026-01-16 15:15:44 +01:00
|
|
|
})
|
2026-01-16 14:44:10 +01:00
|
|
|
}
|