import React from "react"; import Grid from "@mui/material/Grid"; import Box from "@mui/material/Box"; import Card from "@mui/material/Card"; import Typography from "@mui/material/Typography"; const FeaturesData = [ { id: "1", subTitle: "Total Orders", number: "1,452", icon: "ri-stack-line", badgeClass: "successBadge", progress: "4.87%", progressIcon: "ri-arrow-up-s-line", helpText: "Leads this month", }, { id: "2", subTitle: "Overall Revenue", number: "$28,452", icon: "ri-pie-chart-line", badgeClass: "dangerBadge", progress: "0.50%", progressIcon: "ri-arrow-down-s-line", helpText: "Leads this month", }, { id: "3", subTitle: "Average Price", number: "$200.5", icon: "ri-money-cny-box-line", badgeClass: "successBadge", progress: "2.22%", progressIcon: "ri-arrow-up-s-line", helpText: "Leads this month", }, { id: "4", subTitle: "Total Clients", number: "7,805", icon: "ri-user-follow-line", badgeClass: "successBadge", progress: "1.21%", progressIcon: "ri-arrow-up-s-line", helpText: "Leads this month", }, ]; const Features = () => { return ( <> {FeaturesData.map((feature) => ( {feature.subTitle} {feature.number} {feature.progress}{" "} {feature.helpText} ))} ); }; export default Features;