import React from 'react' import { Placeholder } from './Placeholder' export const ProfilePic = ({ src }) => src ? <img src={src} /> : <Placeholder iconName="mugshot" title="No picture" description="Click to change"/>