mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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"
|
|
}
|
|
|