import { HddStackFill, Ethernet, Github, CheckSquareFill, XSquareFill } from 'react-bootstrap-icons'; import './Footer.css'; type Props = { freeSpace: string, statistics?: string, serverAddr: string, connected: boolean, } const isDesktop = window.innerWidth > 510; export const Footer = ({ freeSpace, statistics, serverAddr, connected }: Props) => { return ( ); }