13 lines
219 B
QML
13 lines
219 B
QML
|
import QtQuick 2.4
|
||
|
import "."
|
||
|
|
||
|
BaseMenuItem {
|
||
|
height: 3
|
||
|
Rectangle {
|
||
|
x: Style.margin
|
||
|
y: 1
|
||
|
width: parent.width - (2 * Style.margin)
|
||
|
height: 1
|
||
|
color: Style.themeColor
|
||
|
}
|
||
|
}
|