--- import { Icon } from "astro-icon/components"; const { tweetText, currentUrl } = Astro.props; const shareLinks = [ { name: "Twitter", icon: "twitter", href: `https://twitter.com/intent/tweet?text=${tweetText}&url=${currentUrl}`, }, { name: "Facebook", icon: "facebook", href: `https://www.facebook.com/sharer/sharer.php?u=${currentUrl}`, }, { name: "WhatsApp", icon: "whatsapp", href: `https://api.whatsapp.com/send?text=${encodeURIComponent(`${currentUrl}`)}`, }, ]; ---