2020-06-17 19:31:01 +00:00
|
|
|
import QtQuick 2.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-14 12:18:07 +00:00
|
|
|
import "."
|
2020-06-15 16:24:21 +00:00
|
|
|
|
|
|
|
Input {
|
|
|
|
id: searchBox
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Search"
|
|
|
|
placeholderText: qsTrId("search")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon: Style.svg("search")
|
2021-07-12 18:36:03 +00:00
|
|
|
iconWidth: 24
|
|
|
|
iconHeight: 24
|
2020-06-15 16:24:21 +00:00
|
|
|
customHeight: 36
|
2020-11-11 15:03:25 +00:00
|
|
|
fontPixelSize: 15
|
2020-06-17 19:31:01 +00:00
|
|
|
}
|