mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
c94997ddec
fixes #10344, #10321, #10320
23 lines
559 B
QML
23 lines
559 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
StatusInput {
|
|
placeholderText: qsTr("Search")
|
|
input.implicitHeight: 56
|
|
input.background.color: Theme.palette.indirectColor1
|
|
input.background.border.width: 0
|
|
input.rightComponent: StatusFlatRoundButton {
|
|
icon.name: "search"
|
|
type: StatusFlatRoundButton.Type.Secondary
|
|
enabled: false
|
|
}
|
|
Rectangle {
|
|
anchors.bottom: parent.bottom
|
|
height: 1
|
|
width: parent.width
|
|
color: Theme.palette.baseColor2
|
|
}
|
|
}
|