mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 06:59:45 +00:00
19 lines
355 B
QML
19 lines
355 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import AppStyle 1.0
|
|
|
|
QtObject {
|
|
property string color: Colors.c
|
|
property string pressedColor: Colors.b
|
|
|
|
property Rectangle background: Rectangle {
|
|
color: Colors.d
|
|
}
|
|
|
|
property Rectangle contentItem: Rectangle {
|
|
implicitHeight: 100
|
|
implicitWidth: 8
|
|
radius: 10
|
|
}
|
|
}
|