import { Box } from '@/ui/Box'; import { Image } from '@/ui/Image'; import { Surface } from '@/ui/Surface'; import { Text } from '@/ui/Text'; export interface ActiveDriverCardProps { name: string; avatarUrl: string; categoryLabel?: string; skillLevelLabel?: string; onClick: () => void; } export function ActiveDriverCard({ name, avatarUrl, categoryLabel, skillLevelLabel, onClick, }: ActiveDriverCardProps) { return ( {name} {name} {categoryLabel && ( {categoryLabel} )} {skillLevelLabel && ( {skillLevelLabel} )} ); }