import {
  Contact,
  Home,
  MenuIcon,
  Newspaper,
  ShoppingBag,
  User,
  type LucideIcon,
} from 'lucide-react'

export const mobileNavigationIcons: Record<string, LucideIcon> = {
  account: User,
  artikel: Newspaper,
  contact: Contact,
  home: Home,
  menu: MenuIcon,
  shop: ShoppingBag,
}

