import React from 'react'; import { Sparkles, LayoutGrid, Clock, Settings, Zap } from 'lucide-react'; import { cn } from '@/lib/utils'; import { motion } from 'framer-motion'; interface BottomNavProps { currentTab?: 'create' | 'library' | 'uploads' | 'settings'; onTabChange?: (tab: 'create' | 'library' | 'uploads' | 'settings') => void; } export function BottomNav({ currentTab = 'create', onTabChange }: BottomNavProps) { return ( ); }