aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/inlineComponentUser4.qml
blob: 9f3903c8dfed2b4396cac3fe0977c7e8ccfbb5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.14

Item {
    width: 600
    height: 480
    property color myColor: "blue"
    InlineComponentProvider2.StyledRectangle {
        objectName: "icInstance"
        anchors.centerIn: parent
    }

}