"use client"; import { Chip } from "@heroui/chip"; import { ExternalLink } from "lucide-react"; import { ReactNode } from "react"; interface IntegrationCardHeaderProps { icon: ReactNode; title: string; subtitle?: string; chips?: Array<{ label: string; color?: | "default" | "primary" | "secondary" | "success" | "warning" | "danger"; variant?: "solid" | "bordered" | "light" | "flat" | "faded" | "shadow"; }>; connectionStatus?: { connected: boolean; label?: string; }; navigationUrl?: string; } export const IntegrationCardHeader = ({ icon, title, subtitle, chips = [], connectionStatus, navigationUrl, }: IntegrationCardHeaderProps) => { return (
); };