17 lines
328 B
QML
17 lines
328 B
QML
import QtQuick
|
|
import qs
|
|
import qs.settings
|
|
|
|
Text {
|
|
property real fill: 0
|
|
font.family: "Material Symbols Rounded"
|
|
color: Colors.onSurfaceColor
|
|
font.pixelSize: Settings.config.fontSize
|
|
font.variableAxes: ({
|
|
FILL: fill,
|
|
GRAD: 0,
|
|
opsz: 24,
|
|
wght: 400
|
|
})
|
|
}
|