Skip to content

Instantly share code, notes, and snippets.

@dninomiya
Last active December 3, 2023 10:47
Show Gist options
  • Save dninomiya/43401a60d114d39f873bbd6261ec92f5 to your computer and use it in GitHub Desktop.
Save dninomiya/43401a60d114d39f873bbd6261ec92f5 to your computer and use it in GitHub Desktop.
<DropdownMenuTrigger asChild>
<Button variant="ghost" className="rounded-full w-10 h-10">
<Avatar className="bg-none">
{profile?.image && <AvatarImage src={profile.image} alt="" />}
{profile?.image ? (
<AvatarFallback className="animate-pulse" />
) : (
<AvatarFallback>
<User2 size={20} className="text-muted-foreground" />
</AvatarFallback>
)}
</Avatar>
</Button>
</DropdownMenuTrigger>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment