import * as React from "react" import { cn } from "../ui/utils" import type { LucideIcon } from "lucide-react" interface NavItem { name: string icon: LucideIcon href?: string onClick?: () => void } interface BottomNavProps extends React.ComponentProps<"nav"> { items: NavItem[] activeIndex?: number maxWidth?: string } function BottomNav({ items, activeIndex = 0, maxWidth = "430px", className, ...props }: BottomNavProps) { return ( ) } export { BottomNav } export type { BottomNavProps, NavItem }