import { SVGProps } from "react" // linux-logo-bold from https://github.com/phosphor-icons/core (MIT license) export function TuxIcon(props: SVGProps) { return ( ) } // meteor icons (MIT) https://github.com/zkreations/icons/blob/main/LICENSE export function WindowsIcon(props: SVGProps) { return ( ) } // MingCute Apache License 2.0 https://github.com/Richard9394/MingCute export function Rows(props: SVGProps) { return ( ) } // IconPark Apache License 2.0 https://github.com/bytedance/IconPark export function ChartAverage(props: SVGProps) { return ( ) } // IconPark Apache License 2.0 https://github.com/bytedance/IconPark export function ChartMax(props: SVGProps) { return ( ) } // Lucide https://github.com/lucide-icons/lucide (not in package for some reason) export function EthernetIcon(props: SVGProps) { return ( ) } // Phosphor MIT https://github.com/phosphor-icons/core export function ThermometerIcon(props: SVGProps) { return ( ) } // Huge icons (MIT) export function GpuIcon(props: SVGProps) { return ( ) }