import React from "react"; import * as Avatar from "@radix-ui/react-avatar"; import "./Avatar.scss"; export type AvatarProps = { imageSrc: string; }; // trouble w/ image const CustomAvatar = ({ imageSrc }: AvatarProps) => ( CT ); export default CustomAvatar;