houdini/app/javascript/legacy/components/search.js

11 lines
317 B
JavaScript
Raw Normal View History

2019-11-06 20:36:28 +00:00
// License: LGPL-3.0-or-later
const h = require('flimflam/h')
const input = require('./text-input')
module.exports = (loading, placeholder='Search') =>
h('div.table', [
h('div.middle-cell', [ input('', placeholder) ])
, h('div.middle-cell.pl-1', [ h('button', {attrs: {disabled: loading}},'Search') ])
])