mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
c0450f0580
Moved Message component & dependencies to shared for usage import shared.views.chat 1.0 and accordingly import shared.controls/panels.chat 1.0 Closes #3927
12 lines
197 B
QML
12 lines
197 B
QML
import QtQuick 2.3
|
|
import shared.panels 1.0
|
|
|
|
import utils 1.0
|
|
|
|
SVGImage {
|
|
id: sentMessage
|
|
width: visible ? 9 : 0
|
|
height: visible ? 9 : 0
|
|
source: visible ? Style.svg("check") : ""
|
|
}
|