import React from "react"; import { ProductionCapacityIcon } from "../../icons/analysis"; const ProductionCapacity = () => { const totalBars = 6; const progressPercent = 50; const barsToFill = Math.floor((progressPercent / 100) * totalBars); const partialFillPercent = ((progressPercent / 100) * totalBars - barsToFill) * 100; return (