BaseUI/qml/HorizontalDivider.qml
Stefano Moretti 11606b8f39 Heavy changes
2023-04-21 18:07:17 +02:00

17 lines
357 B
QML

import QtQuick
import QtQuick.Layouts
Item {
height: 8
Layout.fillWidth: true
// https://www.google.com/design/spec/components/dividers.html#dividers-types-of-dividers
Rectangle {
anchors.centerIn: parent
width: parent.width
height: 1
opacity: Style.dividerOpacity
color: Style.dividerColor
}
}