Files
z-bar-qt/Components/MaterialIcon.qml
Zacharias-Brohn 098db5e903 refactor done?
2026-03-10 15:39:29 +01:00

16 lines
315 B
QML

import qs.Config
CustomText {
property real fill
property int grade: DynamicColors.light ? 0 : -25
font.family: "Material Symbols Rounded"
font.pointSize: Appearance.font.size.larger
font.variableAxes: ({
FILL: fill.toFixed(1),
GRAD: grade,
opsz: fontInfo.pixelSize,
wght: fontInfo.weight
})
}