mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
16 lines
306 B
QML
16 lines
306 B
QML
import QtQuick
|
|
import qs.config
|
|
|
|
StyledText {
|
|
property string icon: ""
|
|
property int fill: 0
|
|
property int iconSize: Metrics.iconSize("large")
|
|
|
|
font.family: Appearance.font.family.materialIcons
|
|
font.pixelSize: iconSize
|
|
text: icon
|
|
font.variableAxes: {
|
|
"FILL": fill
|
|
}
|
|
}
|