mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-02 06:36:05 +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 { OptionsIcon } from '@status-im/icons'
|
||||||
|
|
||||||
import './ManagementTable.css'
|
import './ManagementTable.css'
|
||||||
@ -51,6 +51,9 @@ const ManagementTable = () => {
|
|||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>
|
||||||
|
<Checkbox id="table" variant="outline" />
|
||||||
|
</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th>
|
<th>
|
||||||
<Text size={15} color={'#647084'}>
|
<Text size={15} color={'#647084'}>
|
||||||
@ -98,6 +101,9 @@ const ManagementTable = () => {
|
|||||||
<tbody>
|
<tbody>
|
||||||
{validators.map((validator, index) => (
|
{validators.map((validator, index) => (
|
||||||
<tr key={index}>
|
<tr key={index}>
|
||||||
|
<td>
|
||||||
|
<Checkbox id={index.toString()} variant="outline" />
|
||||||
|
</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>
|
<td>
|
||||||
<Text size={15} color={'#647084'} weight={'semibold'}>
|
<Text size={15} color={'#647084'} weight={'semibold'}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user