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 (
Item | Unit Cost | Labor Cost | Total Cost | Selling Price |
---|---|---|---|---|
{row.item} | {row.unitCost} | {row.laborCost} | {row.totalCost} | {row.sellingPrice} |