14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
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}
|
|
className="w-fit h-fit pl-2"
|
|
/>
|
|
);
|
|
}
|