import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip'; import { ImageIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; interface BoardControlsProps { isMounted: boolean; onShowBoardBackground: () => void; } export function BoardControls({ isMounted, onShowBoardBackground }: BoardControlsProps) { if (!isMounted) return null; return (
{/* Board Background Button */}

Board Background Settings

); }