14 lines
269 B
QML
14 lines
269 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
import QtQuick.Layouts 1.4
|
|
|
|
HAvatar {
|
|
HImage {
|
|
id: status
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
source: "../../icons/status.svg"
|
|
sourceSize.width: 12
|
|
}
|
|
}
|