mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
10 lines
279 B
QML
10 lines
279 B
QML
ButtonStyle {
|
|
background: Item { anchors.fill: parent }
|
|
label: FontAwesome {
|
|
id: icon
|
|
font.pointSize: 18
|
|
property alias unicode: text
|
|
text: control.text
|
|
color: control.enabled ? hifi.colors.text : hifi.colors.disabledText
|
|
}
|
|
}
|