Files
medreport_mrb2b/components/med-report-title.tsx

12 lines
443 B
TypeScript

import { cn } from "@/lib/utils";
import { MedReportSmallLogo } from "@/public/assets/med-report-small-logo";
export const MedReportLogo = ({ className, compact = false }: { className?: string, compact?: boolean }) => (
<div className={cn('flex gap-2 justify-center', className)}>
<MedReportSmallLogo />
{!compact && <span className="text-foreground text-lg font-semibold tracking-tighter">
MedReport
</span>}
</div>
);