'use client'; import { Plus, Eye, EyeOff, Trash2 } from 'lucide-react'; import { useCalculateStore } from '@/lib/calculate/store'; import { cn } from '@/lib/utils'; import GraphCanvas from './GraphCanvas'; export function GraphPanel() { const { graphFunctions, variables, addGraphFunction, updateGraphFunction, removeGraphFunction, } = useCalculateStore(); return (