15 lines
319 B
QML
15 lines
319 B
QML
import QtQuick
|
|
import qs.settings
|
|
import qs
|
|
|
|
Text {
|
|
property bool fill: true
|
|
font.family: fill ? "Material Symbols Rounded Filled" : "Material Symbols Rounded"
|
|
color: Colors.onSurfaceColor
|
|
font.variableAxes: ({
|
|
GRAD: 100,
|
|
opsz: fill ? 48 : 20,
|
|
wght: 700
|
|
})
|
|
}
|