mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-01-29 06:10:52 +00:00
13 lines
220 B
QML
13 lines
220 B
QML
// Icon.qml
|
|
import QtQuick 2.15
|
|
|
|
Text {
|
|
property string icon: ""
|
|
font.family: iconFont.name
|
|
text: icon
|
|
|
|
FontLoader {
|
|
id: iconFont
|
|
source: "qrc:/icons/assets/fonts/SF-Symbols-6.ttf"
|
|
}
|
|
} |