Initial commit
[ubi] / qml / ubi / components / Line.qml
diff --git a/qml/ubi/components/Line.qml b/qml/ubi/components/Line.qml
new file mode 100644 (file)
index 0000000..f828154
--- /dev/null
@@ -0,0 +1,13 @@
+import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
+import "../UIConstants.js" as Const
+
+Item {
+    id: root
+    height: 10
+    Rectangle {
+        color: Const.DEFAULT_FOREGROUND_COLOR
+        height: 2
+        width: root.width
+        anchors.bottom: root.bottom
+    }
+}