quickshell/reusables/CustomIcon.qml

18 lines
400 B
QML
Raw Normal View History

2026-01-16 14:44:10 +01:00
import QtQuick
import qs.settings
import qs
2026-01-16 14:44:10 +01:00
Text {
2026-02-01 01:24:57 +01:00
property bool fill: false
2026-01-19 15:17:57 +01:00
anchors.verticalCenter: parent.verticalCenter
font.family: "Material Symbols Rounded"
2026-01-23 16:34:15 +01:00
color: Colors.onSurfaceColor
2026-02-01 01:24:57 +01:00
font.pixelSize: Settings.config.fontSize + 4
2026-01-16 15:15:44 +01:00
font.variableAxes: ({
2026-02-01 01:24:57 +01:00
FILL: fill,
GRAD: 100,
opsz: fill ? 48 : 20,
wght: 400
2026-01-16 15:15:44 +01:00
})
2026-01-16 14:44:10 +01:00
}