quickshell/widgets/CIcon.qml

22 lines
480 B
QML
Raw Permalink Normal View History

import QtQuick
import qs
import qs.settings
Text {
id: root
2026-03-19 11:32:23 +01:00
color: Colors.base05
property real iconSize: 18
property var fill: true
renderType: Text.NativeRendering
font {
2026-03-19 11:32:23 +01:00
hintingPreference: Font.PreferNoHinting
family: "Material Symbols Rounded"
pixelSize: iconSize
weight: Font.Normal + (Font.DemiBold - Font.Normal) * fill
variableAxes: {
2026-03-19 11:32:23 +01:00
"FILL": fill,
"opsz": iconSize
}
}
}