import React from "react"; import { ROISummaryIcon } from "../../icons/analysis"; import SemiCircleProgress from "./SemiCircleProgress"; const ROISummary = () => { // Data for the cost breakdown as an array of objects const costBreakdownData = [ { item: "Raw Material A", unitCost: "₹ 10/unit", laborCost: "₹ 0", totalCost: "₹ 1000", sellingPrice: "₹ 1500", }, { item: "Labor", unitCost: "₹ 10/unit", laborCost: "₹ 500", totalCost: "₹ 500", sellingPrice: "N/A", }, { item: "Product 1", unitCost: "₹ 10/unit", laborCost: "₹ 200", totalCost: "₹ 200", sellingPrice: "₹ 2000", }, { item: "Machine", unitCost: "-", laborCost: "-", totalCost: "₹ 20,000", sellingPrice: "N/A", }, { item: "Total", unitCost: "-", laborCost: "-", totalCost: "₹ 1,20,000", sellingPrice: "-", }, { item: "Net Profit", unitCost: "-", laborCost: "-", totalCost: "₹ 1,60,000", sellingPrice: "-", }, ]; const progressValue = 50; return (
ROI Summary
From 24 November, 2025
Product :
Product name
+133% ROI with payback in just 50.3 months
Total Cost Incurred ₹ 1,20,000
Revenue Generated ₹ 2,80,000
Net Profit ₹ 1,60,000
Cost Breakdown
{costBreakdownData.map((row, index) => ( ))}
Item Unit Cost Labor Cost Total Cost Selling Price
{row.item} {row.unitCost} {row.laborCost} {row.totalCost} {row.sellingPrice}
💡 How to improve ROI?
Increase CNC utilization by 10%{" "} to shave 0.5 months of payback period
); }; export default ROISummary;