22 lines
497 B
QML
22 lines
497 B
QML
import QtQuick
|
|
import qs
|
|
import qs.settings
|
|
|
|
Text {
|
|
id: root
|
|
color: Colors.onSurfaceColor
|
|
property real iconSize: 18
|
|
property real fill: 0
|
|
renderType: Text.NativeRendering
|
|
font {
|
|
hintingPreference: Font.PreferNoHinting
|
|
family: "Material Symbols Rounded"
|
|
pixelSize: iconSize
|
|
weight: Font.Normal + (Font.DemiBold - Font.Normal) * fill
|
|
variableAxes: {
|
|
"FILL": fill.toFixed(1),
|
|
"opsz": iconSize
|
|
}
|
|
}
|
|
}
|