summaryrefslogtreecommitdiffstats
path: root/examples/declarative/namespaces/lib/Chronos/Hand.qml
blob: 3662e74cbb23c6aac2d1c4a67b405b087a764cb6 (plain)
1
2
3
4
5
6
7
8
9
<Item id="Hand">
    <properties>
        <Property name="length" value="100"/>
        <Property name="thickness" value="0"/>
    </properties>
    <Item rotation="-90">
        <Rect width="{length}" height="{thickness==0 ? length/8 : thickness}" y="{-height/2}"/>
    </Item>
</Item>