mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
426c116bac
Use it as import shared 1.0, import shared.controls 1.0 etc instead of import "../../../shared" Closes #3934
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") : ""
|
|
}
|