mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
67face5b99
Also make use of `StatusRoundButton` over `IconButton` since that's deprecated. Closes #1115
14 lines
238 B
QML
14 lines
238 B
QML
import QtQuick 2.13
|
|
import "../imports"
|
|
|
|
Input {
|
|
id: searchBox
|
|
//% "Search"
|
|
placeholderText: qsTrId("search")
|
|
icon: "../app/img/search.svg"
|
|
iconWidth: 17
|
|
iconHeight: 17
|
|
customHeight: 36
|
|
fontPixelSize: 15
|
|
}
|