mirror of https://github.com/portainer/portainer
32 lines
775 B
TypeScript
32 lines
775 B
TypeScript
import { Share2 } from 'lucide-react';
|
|
|
|
import { TableContainer, TableTitle } from '@@/datatables';
|
|
import { DetailsTable } from '@@/DetailsTable';
|
|
|
|
import { NetworkOptions } from '../types';
|
|
|
|
type Props = {
|
|
options: NetworkOptions;
|
|
};
|
|
|
|
export function NetworkOptionsTable({ options }: Props) {
|
|
const networkEntries = Object.entries(options);
|
|
|
|
if (networkEntries.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<TableContainer>
|
|
<TableTitle label="Network options" icon={Share2} />
|
|
<DetailsTable dataCy="networkDetails-networkOptionsTable">
|
|
{networkEntries.map(([key, value]) => (
|
|
<DetailsTable.Row key={key} label={key}>
|
|
{value}
|
|
</DetailsTable.Row>
|
|
))}
|
|
</DetailsTable>
|
|
</TableContainer>
|
|
);
|
|
}
|