'use client';
import Image from 'next/image';
import { Box } from '@mui/material';
interface LogoProps {
/** Total box size in pixels. */
size?: number;
/** Show the rounded white container backplate (for use over coloured surfaces). */
withBackplate?: boolean;
/** Padding inside the backplate (if any). */
padding?: number;
/** Optional border-radius override (defaults to 2 = 8px). */
rounded?: number;
/** className for parent positioning. */
className?: string;
/** Click handler. */
onClick?: () => void;
}
export default function Logo({
size = 36,
withBackplate = false,
padding,
rounded,
className,
onClick,
}: LogoProps) {
const inner = (
);
if (!withBackplate) {
return (
{inner}
);
}
return (
{inner}
);
}