import QtQuick import qs import qs.settings Text { id: root color: Colors.on_surface property real iconSize: 12 property real fill: 1 renderType: Text.NativeRendering font { family: "Material Symbols Rounded" pointSize: iconSize variableAxes: { "FILL": fill.toFixed(1), "opsz": iconSize } } }