import { ChevronRight, Users } from 'lucide-react';
import { Badge } from './Badge';
import { Box } from './Box';
import { Icon } from './Icon';
import { Link } from './Link';
import { Stack } from './Stack';
import { Surface } from './Surface';
import { Text } from './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' })}
);
}