quickshell/reusables/CustomIcon.qml

18 lines
363 B
QML
Raw Normal View History

2026-01-16 14:44:10 +01:00
import QtQuick
import qs
2026-02-03 23:59:00 +01:00
import qs.settings
2026-01-16 14:44:10 +01:00
Text {
2026-01-23 16:34:15 +01:00
color: Colors.onSurfaceColor
2026-02-09 12:07:07 +01:00
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
2026-02-07 23:26:24 +01:00
font.family: "Material Symbols Rounded"
2026-02-09 12:07:07 +01:00
font.pixelSize: 18
2026-02-03 23:59:00 +01:00
font.variableAxes: ({
2026-02-09 12:07:07 +01:00
FILL: 0,
GRAD: -25,
opsz: 36,
2026-02-03 23:59:00 +01:00
wght: 400
})
2026-01-16 14:44:10 +01:00
}