mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 14:54:48 +00:00
11 lines
226 B
QML
11 lines
226 B
QML
import QtQuick 2.3
|
|
import "../../../../../shared"
|
|
import "../../../../../imports"
|
|
|
|
SVGImage {
|
|
id: sentMessage
|
|
width: visible ? 9 : 0
|
|
height: visible ? 9 : 0
|
|
source: visible ? "../../../../img/check.svg" : ""
|
|
}
|