mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-27 19:06:22 +00:00
19 lines
365 B
QML
19 lines
365 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
import 'qrc:/ui/style/global'
|
|
|
|
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
|
|
}
|
|
}
|