import ButtonIcon from './ButtonIcon'; interface Props { className?: string; full?: boolean; toggleFullscreen: () => void; } const FullScreen = ({ className, full, toggleFullscreen }: Props) => { const { t } = useTranslation(); return ( {full ? : } ); }; export default FullScreen;