f8281549eb1a9b53c3721a406165a1bcdeb7c9ed
[ubi] / qml / ubi / components / Line.qml
1 import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
2 import "../UIConstants.js" as Const
3
4 Item {
5     id: root
6     height: 10
7     Rectangle {
8         color: Const.DEFAULT_FOREGROUND_COLOR
9         height: 2
10         width: root.width
11         anchors.bottom: root.bottom
12     }
13 }