mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-04 10:44:23 +00:00
ae83818eed
Extract private groups, reactions, stickers and transactions procs to individual view files
22 lines
476 B
QML
22 lines
476 B
QML
import QtQuick 2.13
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
|
|
SVGImage {
|
|
property var closeModal: function () {}
|
|
property int emojiId
|
|
id: reactionImage
|
|
width: 32
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: {
|
|
chatsModel.reactions.toggle(SelectedMessage.messageId, emojiId)
|
|
reactionImage.closeModal()
|
|
|
|
}
|
|
}
|
|
}
|