We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cda6e10 commit 3b91b1bCopy full SHA for 3b91b1b
game/src/components/past-games/da-image.tsx
@@ -1,5 +1,4 @@
1
import { DA, DA_NAME } from "@/lib/constants";
2
-import Image from "next/image";
3
4
interface DAImageProps {
5
da: DA;
@@ -10,7 +9,7 @@ interface DAImageProps {
10
9
export const DAImage = (props: DAImageProps) => {
11
const { da, width = 20, height = 20 } = props;
12
return (
13
- <Image
+ <img
14
className="rounded-full"
15
src={`https://assets.stackrlabs.xyz/${da}.png`}
16
alt={DA_NAME[da]}
0 commit comments