import QtQuick 2.0 import QtQuick.Controls 2.2 Item { id: root property string title: "" property var lights: [] Rectangle { width: parent.width height: 20 color: "green" Label { text: root.title anchors.centerIn: parent } } }