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