mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 08:52:54 +02:00
13 lines
239 B
QML
13 lines
239 B
QML
import QtQuick 2.3
|
|
|
|
Text {
|
|
id: root
|
|
property int size: 32
|
|
width: size
|
|
height: size
|
|
font.pixelSize: size
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignLeft
|
|
font.family: "FontAwesome"
|
|
}
|
|
|