mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
9cc361c40a
Closes #3710
12 lines
207 B
QML
12 lines
207 B
QML
import QtQuick 2.3
|
|
import "../../../../shared/panels"
|
|
|
|
import utils 1.0
|
|
|
|
SVGImage {
|
|
id: sentMessage
|
|
width: visible ? 9 : 0
|
|
height: visible ? 9 : 0
|
|
source: visible ? Style.svg("check") : ""
|
|
}
|