import React from "react"; import { Home, Coffee, Plus, Bookmark, User } from "lucide-react"; export default function BottomNav({ view, setView, setSelectedBean, onCreatePress }) { const items = [ { id: "dashboard", label: "Home", Icon: Home }, { id: "beans", label: "Recipes", Icon: Coffee }, { id: "create", label: "Create", Icon: Plus, isAction: true }, { id: "brews", label: "Logs", Icon: Bookmark }, { id: "profile", label: "Profile", Icon: User }, ]; return (