import { getExplorerUrl } from "@/lib/agents" import { Button } from "./ui/button" import { Twitter, Facebook, Linkedin, Github } from "lucide-react" import { Agent } from "@/types/agent" interface SocialMediaProps { agent: Agent; } export function SocialMediaButtons({agent}: SocialMediaProps) { return (
{agent.erc20 && ( )}
) }