import { useContext } from "react"; import { Button } from "../ui/button"; import CanvasContext from "../Context/canvasContext/CanvasContext"; import { X } from "lucide-react"; import { ScrollArea } from "../ui/scroll-area"; import AllIconsPage from "../EachComponent/Icons/AllIcons"; const IconPanel = () => { const { setSelectedPanel } = useContext(CanvasContext); return (

Icons

); }; export default IconPanel;