mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
1e7c648300
feat: contact verification fix: add remove identity verified btn fix: add toast message feat: received verification request model feat: finish identity verification flow Fixes #4784
20 lines
428 B
QML
20 lines
428 B
QML
import QtQuick 2.13
|
|
|
|
import utils 1.0
|
|
|
|
Item {
|
|
id: root
|
|
property color color: Style.current.separator
|
|
width: parent.width
|
|
implicitHeight: 1
|
|
height: root.visible ? implicitHeight : 0
|
|
anchors.topMargin: Style.current.padding
|
|
Rectangle {
|
|
id: separator
|
|
width: parent.width
|
|
height: 1
|
|
color: root.color
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|