import { Notification } from "../types"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faFileLines } from "@fortawesome/free-solid-svg-icons"; function prettyName(s: string | undefined): string { if (!s) { return ""; } return s.replaceAll("/", " / "); } export function TopBar({ pageName, status, notifications, onClick, }: { pageName?: string; status?: string; notifications: Notification[]; onClick: () => void; }) { return (