"use client"; import { motion } from "framer-motion"; import { MaterialIcon } from "./MaterialIcon"; import { fadeUp, staggerContainer, viewport } from "@/lib/animations"; type FeatureStatsItem = { icon: string; title: string; desc?: string; }; type FeatureStatsRowProps = { items: FeatureStatsItem[]; className?: string; }; export function FeatureStatsRow({ items, className = "" }: FeatureStatsRowProps) { return (
{items.map((item, index) => (

{item.title}

{item.desc && (

{item.desc}

)}
))}
); }