mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 13:53:38 +02:00
16 lines
382 B
QML
16 lines
382 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 1.3
|
|
import QtQuick.Controls.Styles 1.3
|
|
|
|
Text {
|
|
id: root
|
|
FontLoader { id: iconFont; source: "../../fonts/fontawesome-webfont.ttf"; }
|
|
property int size: 32
|
|
width: size
|
|
height: size
|
|
font.pixelSize: size
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignLeft
|
|
font.family: iconFont.name
|
|
}
|
|
|