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

14 lines
345 B
TypeScript
Raw Normal View History

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