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