mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-14 23:58:21 +00:00
12 lines
210 B
QML
12 lines
210 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") : ""
|
|
}
|