overte-Armored-Dragon/interface/resources/qml/hifi/avatarapp/SquareLabel.qml
2018-07-06 21:00:52 +03:00

22 lines
430 B
QML

import "../../styles-uit"
import QtQuick 2.9
import QtGraphicalEffects 1.0
ShadowRectangle {
width: 44
height: 28
color: 'white'
property alias glyphText: glyph.text
property alias glyphRotation: glyph.rotation
property alias glyphSize: glyph.size
radius: 3
border.color: 'black'
border.width: 1.5
HiFiGlyphs {
id: glyph
anchors.centerIn: parent
size: 30
}
}