({ image }: any)
| 1 | import React from "react"; |
| 2 | |
| 3 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected