```Actually, I need to generate this html for a cu...
# kvision
k
Copy code
Actually, I need to generate this html for a custom search bar:

<button type="submit">
  <i class="fa fa-search"></i>
</button>

for that I have this kvision button:

button( className="", text = "", type = ButtonType.SUBMIT) {
    i(className = "fa fa-search")
}

But I get this and it comes with a border:
<button class="btn btn-primary" type="submit">
  <i class="fa fa-search"></i>
</button>