delete action icon hidden

This commit is contained in:
victorAnumudu
2025-02-19 13:48:46 +01:00
parent 292874ad89
commit 1b77d528df
3 changed files with 7 additions and 13 deletions
+2 -2
View File
@@ -68,7 +68,7 @@ export default function ApplyCom() {
</div>
</th>
<td className="px-3 py-2">
{item?.loan || ''}
{item?.loan} - {item?.description}
</td>
<td className="px-3 py-2">
{item?.amount || ''}
@@ -91,7 +91,7 @@ export default function ApplyCom() {
<span className='text-primary text-xl'>
<Icons name='eye' />
</span>
<span className='text-red-500 text-xl'>
<span className='hidden text-red-500 text-xl'>
<Icons name='trash' />
</span>
</td>
@@ -46,9 +46,6 @@ export default function ApprovedLoanCom() {
<th scope="col" className="px-4 py-2">
Loan
</th>
<th scope="col" className="px-4 py-2">
Amount
</th>
<th scope="col" className="px-4 py-2">
Added
</th>
@@ -68,10 +65,7 @@ export default function ApprovedLoanCom() {
</div>
</th>
<td className="px-3 py-2">
{item?.loan || ''}
</td>
<td className="px-3 py-2">
{item?.amount || ''}
{item?.loan} - {item?.description}
</td>
<td className="px-3 py-2">
<div className="flex items-center">
@@ -91,7 +85,7 @@ export default function ApprovedLoanCom() {
<span className='text-primary text-xl'>
<Icons name='eye' />
</span>
<span className='text-red-500 text-xl'>
<span className='hidden text-red-500 text-xl'>
<Icons name='trash' />
</span>
</td>
@@ -99,7 +93,7 @@ export default function ApprovedLoanCom() {
))
:
<tr className="w-3 p-3">
<td className="px-3 py-2" colSpan={5}>
<td className="px-3 py-2" colSpan={4}>
<div className="flex justify-center items-center">
No Record Found
</div>
@@ -65,7 +65,7 @@ export default function SelectLoanCom() {
</div>
</th>
<td className="px-3 py-2">
{item?.loan || ''}
{item?.loan} - {item?.description}
</td>
<td className="px-3 py-2">
<div className="flex items-center">
@@ -85,7 +85,7 @@ export default function SelectLoanCom() {
<span className='text-primary text-xl'>
<Icons name='eye' />
</span>
<span className='text-red-500 text-xl'>
<span className='hidden text-red-500 text-xl'>
<Icons name='trash' />
</span>
</td>