import { Icon, NavigationLink } from '@vegaprotocol/ui-toolkit'; import { t } from '@vegaprotocol/i18n'; import { Links, Routes } from '../../pages/client-router'; import { IconNames } from '@blueprintjs/icons'; export const SettingsButton = ({ withMobile }: { withMobile?: boolean }) => { return ( {withMobile ? ( t('Settings') ) : ( )} ); };