import React from "react"; import ImageWithFallback from "./ImageWithFallback"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faUser } from "@fortawesome/free-solid-svg-icons"; type Props = { src: string; className?: string; }; export default function ProfilePhoto({ src, className }: Props) { return (
); }