import Link from 'next/link'; import { MedReportLogo } from './med-report-title'; function LogoImage({ className, }: { className?: string; width?: number; }) { return ; } export function AppLogo({ href, label, className, }: { href?: string | null; className?: string; label?: string; }) { if (href === null) { return ; } return ( ); }