2024-04-14 18:46:37 +01:00
|
|
|
import Image from "next/image";
|
|
|
|
|
|
|
|
export default function Logo({ size = 30 }: Readonly<{ size?: number }>) {
|
|
|
|
return (
|
|
|
|
<Image
|
|
|
|
src="https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png"
|
|
|
|
alt={"The Logo"}
|
|
|
|
width={size}
|
|
|
|
height={size}
|
2024-04-14 18:51:34 +01:00
|
|
|
className={`w-[${size}px] h-[${size}px]`}
|
2024-04-14 18:46:37 +01:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|