import React from 'react'; import Image from '../Image'; import './ProfileImage.scss'; type ProfileImageProps = { src: string; alt?: string; }; const ProfileImage: React.FC = (props: ProfileImageProps) => { const { src, alt = '' } = props; return (
{alt}
); }; export default ProfileImage;