"use client" import type { ReactNode } from "react" import { cn } from "@lib/utils" import { dmSansClassName } from "@/lib/fonts" import { ExternalLink } from "lucide-react" export function IntegrationGridCard({ title, description, icon, pro, statusLabel, statusVariant = "neutral", isExternal, onClick, }: { title: string description: string icon: ReactNode pro?: boolean statusLabel?: string statusVariant?: "connected" | "neutral" isExternal?: boolean onClick: () => void }) { return ( ) }