JSFiddle - React, Tailwind, and code Playground

HTML

<table>
<tr class="table-item">
    <td><span>Text</span></td>
<td><a href="#">Delete item</a></td>
</tr>
</table>

CSS

.table-item td span {
text-decoration: line-through;
}
.table-item a {
text-decoration: none !important;
}