Avatar() — supabase Function Reference
Architecture documentation for the Avatar() function in IntegrationPanels.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Integrations/VercelGithub/IntegrationPanels.tsx lines 60–73
const Avatar = ({ src }: { src: string | undefined }) => {
return (
<div className="relative border shadow-lg w-8 h-8 rounded-full overflow-hidden">
<Image
src={src || ''}
width={30}
height={30}
layout="fill"
alt="avatar"
className="relative"
/>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free