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