import { AvatarFallback, AvatarImage, Avatar as ShadcnAvatar, } from "@/components/ds/ui/avatar"; import { useRecordContext } from "ra-core"; import type { Contact } from "../types"; export const Avatar = (props: { record?: Contact; width?: 20 | 25 | 40; height?: 20 | 25 | 40; title?: string; }) => { const record = useRecordContext(props); // If we come from company page, the record is defined (to pass the company as a prop), // but neither of those fields are and this lead to an error when creating contact. if (!record?.avatar && !record?.first_name && !record?.last_name) { return null; } const size = props.width || props.height; const sizeClass = props.width === 20 ? `w-[20px] h-[20px]` : props.width === 25 ? "w-[25px] h-[25px]" : "w-10 h-10"; return ( {record.first_name?.charAt(0).toUpperCase()} {record.last_name?.charAt(0).toUpperCase()} ); };