mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
20 lines
423 B
QML
20 lines
423 B
QML
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')
|
|
|
|
}
|
|
}
|
|
}
|