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-02-01 17:51:55 +01:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
2026-02-01 16:07:44 +01:00
|
|
|
property bool fill: true
|
|
|
|
|
font.family: fill ? "Material Symbols Rounded Filled" : "Material Symbols Rounded"
|
2026-01-23 16:34:15 +01:00
|
|
|
color: Colors.onSurfaceColor
|
2026-02-01 17:51:55 +01:00
|
|
|
font.pixelSize: 14
|
2026-01-16 15:15:44 +01:00
|
|
|
font.variableAxes: ({
|
2026-02-01 01:24:57 +01:00
|
|
|
GRAD: 100,
|
|
|
|
|
opsz: fill ? 48 : 20,
|
2026-02-01 16:07:44 +01:00
|
|
|
wght: 700
|
2026-01-16 15:15:44 +01:00
|
|
|
})
|
2026-01-16 14:44:10 +01:00
|
|
|
}
|