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