import { MagicCard } from "@/components/magicui/magic-card" import { BASE_URL } from "@/constants" import type { Icon } from "@/types/icons" import Image from "next/image" import Link from "next/link" export function IconCard({ name, data: iconData, matchedAlias, }: { name: string data: Icon matchedAlias?: string | null }) { return (
{`${name}
{name.replace(/-/g, " ")} {matchedAlias && Alias: {matchedAlias}}
) }