import { ChevronRight, Users } from 'lucide-react';
import { Badge } from '@/ui/Badge';
import { Box } from '@/ui/Box';
import { Icon } from '@/ui/Icon';
import { Link } from '@/ui/Link';
import { Stack } from '@/ui/Stack';
import { Surface } from '@/ui/Surface';
import { Text } from '@/ui/Text';
interface TeamMembershipCardProps {
teamName: string;
role: string;
joinedAt: string;
href: string;
}
export function TeamMembershipCard({
teamName,
role,
joinedAt,
href,
}: TeamMembershipCardProps) {
return (
{teamName}
{role}
Since {new Date(joinedAt).toLocaleDateString('en-US', { month: 'short', year: 'numeric' })}
);
}