import { motion } from "framer-motion"; import { LucideIcon } from "lucide-react"; interface IntegrationButtonProps { Icon: LucideIcon; label: string; color: string; onClick: () => void; } export const IntegrationButton = ({ Icon, label, color, onClick }: IntegrationButtonProps) => ( {label} );