MCPcopy Create free account
hub / github.com/code100x/daily-code / UserImage

Function UserImage

apps/web/components/UserImage.tsx:3–16  ·  view source on GitHub ↗
({ image }: any)

Source from the content-addressed store, hash-verified

1import React from "react";
2
3export default function UserImage({ image }: any) {
4 return (
5 <div>
6 <img
7 className="w-full h-full rounded-full cursor-pointer"
8 src={image || ""}
9 width={100}
10 height={100}
11 alt="user_profile_image"
12 referrerPolicy="no-referrer"
13 />
14 </div>
15 );
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected