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"; import TrendingUpIcon from "@mui/icons-material/TrendingUp"; import TrendingDownIcon from "@mui/icons-material/TrendingDown"; const FeaturesData = [ { id: "1", title: "$25,890", subTitle: "Total Sales", image: "/images/graph-icon.png", icon: , growthText: "1.3% Up from past week", color: "successColor", }, { id: "2", title: "$25,890", subTitle: "Total Orders", image: "/images/work-icon.png", icon: , growthText: "1.5% Up from past week", color: "successColor", }, { id: "3", title: "183.35M", subTitle: "Total Customers", image: "/images/users-icon.png", icon: , growthText: "1.6% Up from past week", color: "dangerColor", }, ]; const Features = () => { return ( <> {FeaturesData.map((feature) => ( {feature.title} {feature.subTitle} Graph {feature.icon} {feature.growthText} ))} ); }; export default Features;