This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-06-26 04:14:19 +02:00

25 lines
507 B
QML

import QtQuick 2.8
import QtQuick.Controls 2.1
import QtQuick.Layouts 1.3
MenuItem {
id: root
property alias iconSource: icon.name
contentItem: RowLayout {
spacing: app.margins
ColorIcon {
id: icon
height: parent.height
width: height
}
Label {
id: label
text: root.text
Layout.fillWidth: true
font.pixelSize: app.mediumFont
elide: Text.ElideRight
}
}
}