2026-01-16 14:44:10 +01:00
|
|
|
import QtQuick
|
2026-01-19 12:45:35 +01:00
|
|
|
import qs
|
2026-02-03 23:59:00 +01:00
|
|
|
import qs.settings
|
2026-01-16 14:44:10 +01:00
|
|
|
|
|
|
|
|
Text {
|
2026-02-03 23:59:00 +01:00
|
|
|
property real fill: 0
|
2026-02-02 23:35:52 +01:00
|
|
|
font.family: "Material Symbols Rounded"
|
2026-01-23 16:34:15 +01:00
|
|
|
color: Colors.onSurfaceColor
|
2026-02-03 23:59:00 +01:00
|
|
|
font.pixelSize: Settings.config.fontSize
|
|
|
|
|
font.variableAxes: ({
|
|
|
|
|
FILL: fill,
|
|
|
|
|
GRAD: 0,
|
|
|
|
|
opsz: 24,
|
|
|
|
|
wght: 400
|
|
|
|
|
})
|
2026-01-16 14:44:10 +01:00
|
|
|
}
|