import { Box } from '@/ui/Box'; import { Button } from '@/ui/Button'; import { Icon } from '@/ui/Icon'; import { Surface } from '@/ui/Surface'; import { BarChart3, TrendingUp, User } from 'lucide-react'; export type ProfileTab = 'overview' | 'stats' | 'ratings'; interface ProfileTabsProps { activeTab: ProfileTab; onTabChange: (tab: ProfileTab) => void; } export function ProfileTabs({ activeTab, onTabChange }: ProfileTabsProps) { return ( ); }