import { Button } from "@mui/material"; import { Plus } from "lucide-react"; import { useNavigate } from "react-router-dom"; interface CreateButtonProps { label: string; path: string; } export const CreateButton = ({ label, path }: CreateButtonProps) => { const navigate = useNavigate(); return ( ); };