I'm trying to incorporate feather icons into my project, specifically the trash icon to appear next to the item name when I hover over it.
I found someone else asking a similar question on Stacks, but unfortunately, they didn't receive an answer.
Icons Only Appearing When Hover
Here's a snippet of my code:
<div class="container-fluid">
<div class="table-responsive">
<table class="table table-striped table-sm table-hover">
<thead>
<tr>
<th class=" text-center">Item#</th>
<th class=" text-center">Item Name</th>
<th class=" text-center">Qty</th>
</thead>
<tbody>
<tr>
<td>1,001</td>
<td>Apple</td>
<td class=" text-right">5</td>
</tr>
<tr>
<td>1,002</td>
<td>Kidney Beans</td>
<td class=" text-right">3</td>
</tr>