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

12 lines
393 B
TypeScript

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