aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/InlineComponentProvider2.qml
blob: b5a0efaccf6c1e32339748e518ef4a51e90a2c56 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.15

Item {
    property color myColor: "red"
    component StyledRectangle: Rectangle {
        width: 24
        height: 24
        color: myColor
    }
}