add net column to systems table

This commit is contained in:
Henry Dollman
2024-10-12 16:37:09 -04:00
parent c0a3bbeefc
commit b464fa5b3f
3 changed files with 36 additions and 3 deletions

View File

@@ -45,3 +45,19 @@ export function ChartMax(props: SVGProps<SVGSVGElement>) {
</svg>
)
}
// Lucide https://github.com/lucide-icons/lucide (not in package for some reason)
export function EthernetIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeWidth="2"
viewBox="0 0 24 24"
{...props}
>
<path d="m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3zM6 8v1m4-1v1m4-1v1m4-1v1" />
</svg>
)
}