import { CheckCircle } from 'lucide-react';
export const MiniSprintProgress = () => (
{[
{ name: 'Alice', capacity: 80 },
{ name: 'Bob', capacity: 95 },
{ name: 'Carol', capacity: 60 },
].map(m => (
{m.name}
90 ? 'bg-red-400' : m.capacity > 70 ? 'bg-yellow-400' : 'bg-green-400'}`} style={{ width: `${m.capacity}%` }} />
{m.capacity}%
))}
);
export const MiniMilestones = () => (
{[0, 33, 66, 100].map((pos, i) => (
{i < 2 && }
))}
);
export const MiniVelocity = () => (
Velocity
{[28, 32, 25, 38, 35, 42].map((v, i) => (
))}
Avg: 33 pts
);
export const MiniIssueTracker = () => (
{[
{ id: 'BUG-42', priority: 'high', title: 'Login crash' },
{ id: 'FEAT-18', priority: 'med', title: 'Dark mode' },
{ id: 'BUG-43', priority: 'low', title: 'Typo fix' },
].map(issue => (
))}
);