Files
Frontend/src/app/components/logo.tsx

14 lines
358 B
TypeScript
Raw Normal View History

2024-04-14 18:46:37 +01:00
import Image from "next/image";
2024-04-16 21:18:08 +01:00
export default function Logo({ size = 30 }: Readonly<{ size?: number }>): JSX.Element {
2024-04-14 18:46:37 +01:00
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
/>
);
}