18 lines
363 B
QML
18 lines
363 B
QML
import QtQuick
|
|
import qs
|
|
import qs.settings
|
|
|
|
Text {
|
|
color: Colors.onSurfaceColor
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
font.family: "Material Symbols Rounded"
|
|
font.pixelSize: 18
|
|
font.variableAxes: ({
|
|
FILL: 0,
|
|
GRAD: -25,
|
|
opsz: 36,
|
|
wght: 400
|
|
})
|
|
}
|