mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-22 09:19:28 +00:00
feat: add checkboxes to table
This commit is contained in:
parent
effbe290b4
commit
b6d5fbe3fe
@ -1,4 +1,4 @@
|
||||
import { Text } from '@status-im/components'
|
||||
import { Checkbox, Text } from '@status-im/components'
|
||||
import { OptionsIcon } from '@status-im/icons'
|
||||
|
||||
import './ManagementTable.css'
|
||||
@ -51,6 +51,9 @@ const ManagementTable = () => {
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<Checkbox id="table" variant="outline" />
|
||||
</th>
|
||||
<th></th>
|
||||
<th>
|
||||
<Text size={15} color={'#647084'}>
|
||||
@ -98,6 +101,9 @@ const ManagementTable = () => {
|
||||
<tbody>
|
||||
{validators.map((validator, index) => (
|
||||
<tr key={index}>
|
||||
<td>
|
||||
<Checkbox id={index.toString()} variant="outline" />
|
||||
</td>
|
||||
<td></td>
|
||||
<td>
|
||||
<Text size={15} color={'#647084'} weight={'semibold'}>
|
||||
|
Loading…
x
Reference in New Issue
Block a user