Custom trigger element
The trigger's markup is entirely yours — here a whole header row rather than anything that looks like a button. Keep the directive on a natively focusable element, though: gogCollapsibleTrigger wires (click) and the ARIA attributes and nothing else, so on a <div> the trigger would have no tab stop and no keyboard activation.
3 items — shipped Aug 4, arriving Aug 6.
<gog-collapsible [(open)]="open">
<button type="button" class="card-header" gogCollapsibleTrigger>
<span>Order #4471</span>
<gog-icon [name]="open() ? 'chevron-up' : 'chevron-down'" />
</button>
<div gogCollapsibleContent class="card-body">
<p>3 items — shipped Aug 4, arriving Aug 6.</p>
</div>
</gog-collapsible>