2020-07-17 19:44:25 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
|
2021-08-30 12:42:11 +00:00
|
|
|
StatusChatImageLoader {
|
2020-07-17 19:44:25 +00:00
|
|
|
property int chatVerticalPadding: 12
|
|
|
|
property int chatHorizontalPadding: 12
|
2023-02-15 11:12:12 +00:00
|
|
|
property string imageSource
|
2020-07-17 19:44:25 +00:00
|
|
|
|
2020-09-30 20:40:54 +00:00
|
|
|
id: imageMessage
|
|
|
|
verticalPadding: chatVerticalPadding
|
|
|
|
source: imageSource
|
2020-07-17 19:44:25 +00:00
|
|
|
}
|