'How to add button link inside a list-group-item in Bootstrap 5?

I'd like to have a list-group item have a link and a button to delete the item. How can I do this with Bootstrap 5? This is what I tried but it's not working.

  <div class="list-group">
    <a href="/link1" class="list-group-item list-group-item-action" aria-current="true">
      Link1
      <span class="float-end">
        <a href="/trash1" class="btn btn-default trash">
          <span class="bi bi-trash" aria-hidden="true"></span>
        </a>
      </span>
    </a>
  </div>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source