2020-06-17 19:31:01 +00:00
|
|
|
import QtQuick 2.13
|
2020-06-15 16:24:21 +00:00
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: searchBox
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Search"
|
|
|
|
placeholderText: qsTrId("search")
|
2020-06-15 16:24:21 +00:00
|
|
|
icon: "../app/img/search.svg"
|
|
|
|
iconWidth: 17
|
|
|
|
iconHeight: 17
|
|
|
|
customHeight: 36
|
2020-11-11 15:03:25 +00:00
|
|
|
fontPixelSize: 15
|
2020-06-17 19:31:01 +00:00
|
|
|
}
|