import React, { useState } from 'react'; import { ShoppingBag, TrendingUp } from 'lucide-react'; interface ProductStat { name: string; count: number; percentage: number; } interface ProductListsProps { requested: ProductStat[]; sold: ProductStat[]; } export const ProductLists: React.FC = ({ requested, sold }) => { const ListSection = ({ title, icon: Icon, data, color }: { title: string, icon: any, data: ProductStat[], color: string }) => (

{title}

); return (
); };