import { ProfileView } from "$lexicon/types/social/grain/actor/defs.ts"; import { Un$Typed } from "$lexicon/util.ts"; import { cn } from "@bigmoves/bff/components"; import { DefaultLabelerAvatar } from "./DefaultLabelerAvatar.tsx"; export function LabelerAvatar({ profile, size, class: classProp, }: Readonly< { profile: Un$Typed; size?: number; class?: string } >) { return ( profile.avatar ? ( {profile.handle} ) : ); }