19 lines
333 B
QML
19 lines
333 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
import clide.module 1.0
|
|
|
|
MenuItem {
|
|
id: root
|
|
|
|
background: Rectangle {
|
|
color: root.hovered ? RustColors.hovered : RustColors.unhovered
|
|
radius: 2.5
|
|
}
|
|
contentItem: IconLabel {
|
|
color: "black"
|
|
font.family: "Helvetica"
|
|
text: root.text
|
|
}
|
|
}
|