'use client'; import { Maximize2, Minimize2 } from 'lucide-react'; import React from 'react'; import { Button, Tooltip, TooltipContent, TooltipTrigger } from '@djangocfg/ui-core/components'; interface FullscreenActionProps { isFullscreen?: boolean; onToggle: () => void; title?: string; } const BUTTON_CLASS = 'h-6 w-6 rounded-sm bg-muted/80 hover:bg-muted border border-border/50 backdrop-blur-sm'; export const FullscreenAction: React.FC = ({ isFullscreen = false, onToggle, title, }) => { const label = title ?? (isFullscreen ? 'Exit fullscreen' : 'Fullscreen'); return ( {label} ); };