I'm trying to get the SVG icon to align to the right of the H4 and center vertically using Bootstrap 5. This isn't working.
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="justify-content-start"><h4>Title 1</h4>
</div>
<div class="justify-content-end">SVG goes here</div>
</div>
</div>
</div>
There's a second container that is the same content floated to the right of this one. My problem is that the SVG won't float to the right.
Any assistance would greatly be appreciated.