houdini/app/javascript/legacy/components/search.js
2020-04-23 14:09:14 -05:00

10 lines
317 B
JavaScript

// 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') ])
])