mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 23:28:09 +00:00
20 lines
323 B
QML
20 lines
323 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Linphone 1.0
|
|
|
|
Message {
|
|
backgroundColor: '#E4E4E4'
|
|
|
|
Item {
|
|
height: 30
|
|
width: 30
|
|
|
|
// TODO: Success and re-send icon.
|
|
Icon {
|
|
anchors.centerIn: parent
|
|
icon: 'valid'
|
|
iconSize: 16
|
|
}
|
|
}
|
|
}
|