I have the following button group:
<div class="btn-group">
<app-remove-button></app-remove-button>
<button type="button" class="btn btn-outline-secondary">b2
</button>
</div>
app-remove-button is a component with the template:
<button class="btn btn-outline-danger" type="button" ngbTooltip="hint">
<b>×</b></button>
this is not rendered correctly:
the html output is:
how can I make it look like:


