import XrayIcon from 'shared/components/icons/xray.js' import { linkClasses, Chevron } from 'shared/components/navigation/primary.js' import Reset from './reset.js' import Disable from './disable.js' import List from './list.js' const Xray = props => { return (
{props.gist?.xray?.enabled ? ( <> {props.app.t('settings.xray.title')} ) : ( <> {props.app.t('cfp.thingIsDisabled', { thing: props.app.t('settings.xray.title') })} ) } {props.gist?.xray?.enabled && ( )}
) } export default Xray