mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 10:29:24 +00:00
15 lines
318 B
QML
15 lines
318 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
QtObject {
|
|
property int animationDuration: 200
|
|
property int iconSize: 32
|
|
|
|
property string icon: 'collapse'
|
|
|
|
property Rectangle background: Rectangle {
|
|
// Do not use Constants.colors.
|
|
// Collapse uses an icon without background color.
|
|
color: 'transparent'
|
|
}
|
|
}
|