aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/inlineComponentUser3.qml
blob: c57c4cad013b60064dfd3857cd540a3c3c7a8221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import QtQuick 2.14

Item {
    width: 600
    height: 480
    component StyledRectangle: Rectangle {
        width: 24
        height: 24
        color: "blue"
    }
    StyledRectangle {
        objectName: "icInstance"
        anchors.centerIn: parent
    }

}