status-desktop/ui/app/AppLayouts/Chat/components/EmojiReaction.qml

20 lines
423 B
QML
Raw Normal View History

import QtQuick 2.13
import "../../../../imports"
import "../../../../shared"
SVGImage {
property int emojiId
width: 32
fillMode: Image.PreserveAspectFit
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: {
console.log('Clicked on Emoji', emojiId)
console.log('This feature will be implmented at a later date')
}
}
}