16 lines
322 B
QML
16 lines
322 B
QML
import QtQuick
|
|
import "../settings/"
|
|
import "../"
|
|
|
|
Text {
|
|
property real fill
|
|
font.family: "Material Symbols Rounded"
|
|
color: Colors.foreground
|
|
font.pixelSize: Settings.config.fontSize + 2
|
|
font.variableAxes: ({
|
|
FILL: fill.toFixed(1),
|
|
GRAD: 200,
|
|
wght: 400
|
|
})
|
|
}
|