quickshell/reusables/CustomIcon.qml
2026-02-01 18:10:01 +01:00

17 lines
409 B
QML

import QtQuick
import qs.settings
import qs
Text {
verticalAlignment: Text.AlignVCenter
property bool fill: true
font.family: fill ? "Material Symbols Rounded Filled" : "Material Symbols Rounded"
color: Colors.onSurfaceColor
font.pixelSize: Settings.config.fontSize + 2
font.variableAxes: ({
GRAD: 100,
opsz: fill ? 48 : 20,
wght: 700
})
}