import { XrayIcon } from 'shared/components/icons.mjs' //import { ConsoleLog } from './log.mjs' //import { XrayReset } from './reset.mjs' //import { XrayList } from './list.mjs' import { useTranslation } from 'next-i18next' import { Popout } from 'shared/components/popout.mjs' export const ns = ['xray'] export const XrayMenu = ({ design, update, settings, ui, account, control }) => { const { t } = useTranslation(ns) if (ui.renderer !== 'react' || control < 4) return null const toggleXray = () => update.ui(['xray', 'enabled'], ui?.xray?.enabled ? false : true) return ( <>
{control > 4 ? (
) : ( <>
{t('xray:xrayPattern')}

{t('core-settings:coreSettings.d')}

)}
Implement X-Ray ) }