mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-19 01:58:52 +00:00
11 lines
256 B
QML
11 lines
256 B
QML
import QtQuick 2.3
|
|
import "../../../../../imports"
|
|
|
|
Image {
|
|
id: stickerId
|
|
visible: contentType === Constants.stickerType
|
|
width: 140
|
|
height: this.visible ? 140 : 0
|
|
source: this.visible ? ("https://ipfs.infura.io/ipfs/" + sticker) : ""
|
|
}
|