2020-06-17 19:31:01 +00:00
|
|
|
import QtQuick 2.13
|
2020-05-27 21:09:12 +00:00
|
|
|
import "../imports"
|
2020-05-27 20:11:56 +00:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: separator
|
|
|
|
width: parent.width
|
2020-10-22 19:51:49 +00:00
|
|
|
height: visible ? 1 : 0
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.border
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
2020-05-29 15:43:37 +00:00
|
|
|
}
|