Icon.qml 376 B

1234567891011121314151617181920212223242526
  1. import QtQuick 2.15
  2. import QtGraphicalEffects 1.15
  3. // TODO: make it auto-resizible using Control
  4. Item {
  5. id: root
  6. property url src
  7. property color color: "#C1C1C1"
  8. property alias image: _img
  9. Image {
  10. id: _img
  11. visible: false
  12. source: src
  13. anchors.centerIn: root
  14. }
  15. ColorOverlay {
  16. anchors.fill: _img
  17. source: _img
  18. color: root.color
  19. }
  20. }