import React from 'react' type HeadshotProps = { headshot: string prefLabel: string streamPage?: string className?: string } const Headshot: React.FC = ({ headshot, prefLabel, streamPage, className, }) => { return streamPage ? ( ) : ( ) } export default Headshot