This button is special, it does not have all the common attributes like the others, it simply allows you to add a button that displays a popover containing help information.
<x-btn-help-info content="Help informations"/>
This will output the following HTML:
<button class="btn btn-link" type="button"
data-bs-trigger="focus"
data-bs-placement="auto"
data-bs-html="true"
data-bs-toggle="popover"
data-bs-content="Help informations">
Information
</button>
All attributes set on the component are piped through on the button element. Also, this component accepts this common button attributes:
@todo should be completed...