'use strict'; function searchFormHelper(options = {}) { const { config } = this; const className = options.class || 'search-form'; const { text = 'Search', button } = options; return `
${button ? `` : ''}
`; } module.exports = searchFormHelper;