quickshell/widgets/CIcon.qml

20 lines
362 B
QML
Raw Normal View History

import QtQuick
import qs
import qs.settings
Text {
id: root
color: Colors.on_surface
2026-03-13 18:58:17 +01:00
property real iconSize: 13
property real fill: 1
renderType: Text.NativeRendering
font {
2026-03-13 18:58:17 +01:00
family: "Material Symbols Sharp"
pointSize: iconSize
variableAxes: {
2026-03-13 18:58:17 +01:00
"FILL": 1,
"opsz": iconSize
}
}
}