import { useCallback } from 'react' import { BookOpenIcon } from 'lucide-react' import Button from '@/components/ui/Button' import { controlButtonVariant } from '@/lib/constants' import { useSettingsStore } from '@/stores/settings' import { useTranslation } from 'react-i18next' /** * Component that toggles legend visibility. */ const LegendButton = () => { const { t } = useTranslation() const showLegend = useSettingsStore.use.showLegend() const setShowLegend = useSettingsStore.use.setShowLegend() const toggleLegend = useCallback(() => { setShowLegend(!showLegend) }, [showLegend, setShowLegend]) return ( ) } export default LegendButton