"use client"; import Image, { ImageProps } from "next/image"; import { useState } from "react"; export default function ProfilePicture(props: Partial) { const { src, ...rest } = props; const [imgSrc, setImgSrc] = useState(src); return {"profile setImgSrc("/guest.png")} />; }