import React from 'react'; import { motion } from 'framer-motion'; import { TrendingUp, TrendingDown } from 'lucide-react'; import InfoTooltip from './common/InfoTooltip'; const KpiCard = ({ title, value, change, trend, icon: Icon, onClick, tooltip }) => { return (
{Icon && }
{change && (
{trend === 'up' ? : trend === 'down' ? : null} {change}
)}

{title}

{tooltip && (
)}

{value}

); }; export default KpiCard;