Triangle.qml 257 B

1234567891011121314151617
  1. import QtQuick 2.0
  2. Item {
  3. id: root
  4. property alias color: _icon.color
  5. Icon {
  6. height: 8
  7. id: _icon
  8. anchors.horizontalCenter: root.horizontalCenter
  9. anchors.top: root.top
  10. anchors.topMargin: -1
  11. src: "qrc:/resources/tri.svg"
  12. }
  13. }