Represents <button>
element of type "button". It is rendered as button without default behavior. Documentation:
Widget:
use Yiisoft\Form\Field\Button;
echo Button::widget()->content('Click Me');
Result will be:
<div>
<button type="button">Click Me</button>
</div>