quickshell/reusables/CustomIcon.qml

22 lines
497 B
QML
Raw Permalink Normal View History

2026-01-16 14:44:10 +01:00
import QtQuick
import qs
2026-02-14 01:33:18 +01:00
import qs.settings
2026-01-16 14:44:10 +01:00
2026-02-14 00:49:08 +01:00
Text {
id: root
2026-02-14 12:45:52 +01:00
color: Colors.onSurfaceColor
2026-02-20 15:43:31 +01:00
property real iconSize: 18
property real fill: 0
renderType: Text.NativeRendering
font {
hintingPreference: Font.PreferNoHinting
2026-02-20 15:43:31 +01:00
family: "Material Symbols Rounded"
2026-02-14 12:33:31 +01:00
pixelSize: iconSize
2026-02-16 23:32:00 +01:00
weight: Font.Normal + (Font.DemiBold - Font.Normal) * fill
variableAxes: {
2026-02-20 15:43:31 +01:00
"FILL": fill.toFixed(1),
"opsz": iconSize
}
}
2026-01-16 14:44:10 +01:00
}