17 lines
383 B
QML
17 lines
383 B
QML
import QtQuick
|
|
import qs.settings
|
|
import qs
|
|
|
|
Text {
|
|
property real fill: 1
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
font.family: "Material Icons Sharp"
|
|
color: Colors.foreground
|
|
font.variableAxes: ({
|
|
FILL: fill.toFixed(1),
|
|
GRAD: -25,
|
|
opsz: Settings.config.fontSize,
|
|
wght: Settings.config.fontWeight
|
|
})
|
|
}
|