Files
Magent/frontend/app/ui/BrandingLogo.tsx

15 lines
272 B
TypeScript

type BrandingLogoProps = {
className?: string
alt?: string
}
export default function BrandingLogo({ className, alt = 'Magent logo' }: BrandingLogoProps) {
return (
<img
className={className}
src="/api/branding/logo.png"
alt={alt}
/>
)
}