// FilterModal.jsx import React, { useState } from "react"; import { IconButton, Dialog, DialogTitle, DialogContent, Box } from "@mui/material"; import { X, SlidersHorizontal } from "lucide-react"; import FilterForm from "./FilterForm"; const FilterModal = () => { const [open, setOpen] = useState(false); const handleOpen = () => setOpen(true); const handleClose = () => setOpen(false); return ( <> {/* Filter Icon Button (place this in your page header / toolbar) */} {/* Modal */} Filter Options {/* Use your existing FilterForm here */} ); }; export default FilterModal;