import { ListTodo } from 'lucide-react'; type TeamActivityItemProps = { teamId: string; }; export function TeamEmptyStream(props: TeamActivityItemProps) { const { teamId } = props; return (

No Activity

Team activity will appear here once members start tracking their progress.

); }