status-desktop/ui/shared/Separator.qml

11 lines
212 B
QML
Raw Normal View History

2020-06-17 19:31:01 +00:00
import QtQuick 2.13
import "../imports"
Rectangle {
id: separator
width: parent.width
height: visible ? 1 : 0
color: Style.current.border
anchors.topMargin: Style.current.padding
2020-05-29 15:43:37 +00:00
}