+
Popular Prediction Markets
-
+
+
+
+
+ {savedMarkets.length > 0 && savedListOpen && (
+
+ {savedMarkets.map((market) => (
+ - Saved: {market.title}
+ ))}
+
+ )}
+
{sampleMarkets.map((market, index) => {
const IconComponent = iconMap[market.icon as keyof typeof iconMap];
@@ -108,7 +138,7 @@ export function MarketsWidget({ className }: MarketsWidgetProps) {
interface MarketCardProps {
market: Market;
- IconComponent: any;
+ IconComponent: LucideIcon;
colors: { bg: string; icon: string };
index: number;
reducedMotion: boolean;
@@ -165,9 +195,12 @@ function MarketCard({ market, IconComponent, colors, index, reducedMotion }: Mar
)}
-