mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
21 lines
389 B
QML
21 lines
389 B
QML
import QtQuick 2.15
|
|
|
|
Rectangle {
|
|
|
|
width: text.implicitWidth
|
|
height: text.implicitHeight
|
|
|
|
property int icon
|
|
|
|
Text {
|
|
id:text
|
|
font.family: "fontawesome"
|
|
font.pixelSize: 16
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
// text:icon
|
|
text: (String.fromCharCode(icon).toString(16));
|
|
}
|
|
|
|
}
|