import React from 'react'; import { motion } from 'framer-motion'; interface ProgressBarProps { progress: number; color?: string; label?: string; } export const ProgressBar: React.FC = ({ progress, color = '#10b981', label }) => { return (
{label && (
{label} {progress}%
)}
); };