const FleetEfficiency = () => { const progress = 75; // Example progress value (0-100) // Calculate the rotation angle for the progress bar const rotationAngle = -90 + progress * 3.6; // Progress starts from the left (-90°) return (

Fleet Efficiency

{/* Apply dynamic rotation to the bar */}
0%
{progress}%
Optimal
100%
); }; export default FleetEfficiency;