2024-04-16 07:13:13 -07:00
|
|
|
import Image from "next/image";
|
2024-04-17 16:04:15 -07:00
|
|
|
import { ReactElement } from "react";
|
2024-04-16 07:13:13 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A creeper image.
|
|
|
|
*
|
|
|
|
* @returns the creeper jsx
|
|
|
|
*/
|
2024-04-17 16:04:15 -07:00
|
|
|
const Creeper = (): ReactElement => (
|
|
|
|
<Image
|
|
|
|
src="/media/creeper.png"
|
|
|
|
alt="A Minecraft Creeper"
|
|
|
|
width={216}
|
|
|
|
height={216}
|
|
|
|
/>
|
2024-04-16 07:13:13 -07:00
|
|
|
);
|
|
|
|
export default Creeper;
|