mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
11 lines
212 B
QML
11 lines
212 B
QML
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
|
|
}
|