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