Files
Liam cb15f18bfe
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 8s
start work on the frontend
2024-04-14 18:46:37 +01:00

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"
/>
);
}