| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * 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
- <img
- src="/brand/metamask.svg"
- alt=""
- width={size}
- height={size}
- className={className ?? "h-5 w-5 shrink-0 object-contain"}
- aria-hidden
- />
- );
- }
- export function MaviWalletLogo({ size = 20, className }: LogoProps) {
- return (
- // eslint-disable-next-line @next/next/no-img-element
- <img
- src="/brand/mavi-wallet.svg"
- alt=""
- width={size}
- height={size}
- className={className ?? "h-5 w-5 shrink-0 object-contain"}
- aria-hidden
- />
- );
- }
|