import React from 'react'; import { motion } from 'framer-motion'; interface MiniInfoTooltipProps { icon?: React.ReactNode; message: string; onClose: () => void; iconColor?: string; iconSize?: number; width?: string; } export default function MiniInfoTooltip({ icon, message, onClose, iconColor = 'text-teal-600', iconSize = 20, width = 'w-48' }: MiniInfoTooltipProps) { return (
{icon && (
{icon}
)}

{message}

); }