All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 56s
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import Image from "next/image";
|
|
|
|
export default function Logo({ size = 30 }: Readonly<{ size?: number }>): JSX.Element {
|
|
return (
|
|
<Image
|
|
src="https://git.fascinated.cc/MinecraftUtilities/Assets/raw/branch/master/logo.png"
|
|
alt={"The Logo"}
|
|
width={size}
|
|
height={size}
|
|
className={`w-[${size}px] h-[${size}px]`}
|
|
/>
|
|
);
|
|
}
|