17 lines
305 B
QML
17 lines
305 B
QML
|
|
import QtQuick
|
||
|
|
import QtQuick.Controls
|
||
|
|
|
||
|
|
MenuItem {
|
||
|
|
id: root
|
||
|
|
|
||
|
|
background: Rectangle {
|
||
|
|
color: root.hovered ? "#4b4f51" : "#3c3f41" // Hover effect
|
||
|
|
radius: 2.5
|
||
|
|
}
|
||
|
|
contentItem: IconLabel {
|
||
|
|
color: "white"
|
||
|
|
font.family: "Helvetica"
|
||
|
|
text: root.text
|
||
|
|
}
|
||
|
|
}
|