'use client'; import clsx from 'clsx/lite'; import { FaPlus } from 'react-icons/fa6'; import Tooltip from '@/components/Tooltip'; import { useRef } from 'react'; import { useAppText } from '@/i18n/state/client'; export default function PhotoRecipeOverlayButton({ className, toggleRecipeOverlay, isShowingRecipeOverlay, }: { className?: string toggleRecipeOverlay: () => void isShowingRecipeOverlay?: boolean }) { const ref = useRef(null); const appText = useAppText(); return ( ); }