2019-03-28 10:21:14 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
import QtQuick.Layouts 1.4
|
|
|
|
|
|
|
|
Avatar {
|
|
|
|
Image {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: status
|
2019-03-28 10:21:14 +11:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
source: "../../icons/status.svg"
|
|
|
|
asynchronous: true
|
|
|
|
sourceSize.width: 12
|
|
|
|
}
|
|
|
|
}
|