2024-10-15 19:26:12 +00:00
|
|
|
import QtQuick 2.15
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2024-10-15 19:26:12 +00:00
|
|
|
import StatusQ.Core.Theme 0.1
|
2020-05-27 20:11:56 +00:00
|
|
|
|
2021-03-19 12:32:14 +00:00
|
|
|
Item {
|
2021-03-17 11:31:45 +00:00
|
|
|
id: root
|
2024-10-15 19:26:12 +00:00
|
|
|
property color color: Theme.palette.separator
|
2021-03-17 11:31:45 +00:00
|
|
|
width: parent.width
|
2022-06-28 18:11:18 +00:00
|
|
|
implicitHeight: 1
|
|
|
|
height: root.visible ? implicitHeight : 0
|
2024-10-15 19:26:12 +00:00
|
|
|
anchors.topMargin: Theme.padding
|
2021-03-17 11:31:45 +00:00
|
|
|
Rectangle {
|
2022-09-27 21:26:26 +00:00
|
|
|
id: separator
|
|
|
|
width: parent.width
|
|
|
|
height: 1
|
|
|
|
color: root.color
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2021-03-17 11:31:45 +00:00
|
|
|
}
|
2020-05-29 15:43:37 +00:00
|
|
|
}
|