import { BarChart2, PrinterIcon, Trophy } from "lucide-react" const services = [ { label: "Live Score", icon: BarChart2 }, { label: "Results", icon: Trophy }, { label: "Print Odds", icon: PrinterIcon }, ] export function BetServices() { return (
Services {services.map((service, i) => { const Icon = service.icon return ( ) })}
) }