feat: add options icon to every row

This commit is contained in:
RadoslavDimchev 2023-11-03 10:26:56 +02:00
parent e4be407ebc
commit 8647c31f7b
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,5 @@
import { OptionsIcon } from '@status-im/icons'
import './ManagementTable.css'
const validators = [
@ -57,6 +59,7 @@ const ManagementTable = () => {
<th>Deposits</th>
<th>Rank</th>
<th>Status</th>
<th></th>
</tr>
</thead>
<tbody>
@ -71,6 +74,9 @@ const ManagementTable = () => {
<td>{validator.deposits}</td>
<td>{validator.rank}</td>
<td>{validator.status}</td>
<td>
<OptionsIcon size={20} style={{ cursor: 'pointer' }} />
</td>
</tr>
))}
</tbody>