// Create a new component for currency conversion explanation import React from 'react'; import { Info } from 'lucide-react'; import { useCurrency } from '@/app/contexts/currencyContext'; const CurrencyTooltip = () => { const { selectedCurrency, SUPPORTED_CURRENCIES } = useCurrency(); // Only show for non-INR currencies if (selectedCurrency === 'INR') return null; return (