10 lines
263 B
QML
10 lines
263 B
QML
|
import QtQuick 2.12
|
||
|
import "../../Base"
|
||
|
|
||
|
HUserAvatar {
|
||
|
clientUserId: addChatPage.userId
|
||
|
userId: clientUserId
|
||
|
displayName: addChatPage.account ? addChatPage.account.display_name : ""
|
||
|
mxc: addChatPage.account ? addChatPage.account.avatar_url : ""
|
||
|
}
|