/** * BottomNav 底部导航组件 (移动端) * 设计稿参考: UIDesignSpec.md 3.6 */ import React from 'react'; import { LucideIcon } from 'lucide-react'; export interface NavItem { id: string; label: string; icon: LucideIcon; href?: string; badge?: number; } export interface BottomNavProps { items: NavItem[]; activeId: string; onItemClick?: (id: string) => void; className?: string; } export const BottomNav: React.FC = ({ items, activeId, onItemClick, className = '', }) => { return ( ); }; export default BottomNav;