/** * Official-style marks for external MetaMask + future mavi wallet. * Assets live in /public/brand/ (copied from project brand folders). */ type LogoProps = { size?: number; className?: string; }; export function MetaMaskLogo({ size = 20, className }: LogoProps) { return ( // eslint-disable-next-line @next/next/no-img-element ); } export function MaviWalletLogo({ size = 20, className }: LogoProps) { return ( // eslint-disable-next-line @next/next/no-img-element ); }