import { t } from '@vegaprotocol/i18n'; import { TradingButton } from '@vegaprotocol/ui-toolkit'; import { ViewType, useSidebar } from '../sidebar'; import { useGetCurrentRouteId } from '../../lib/hooks/use-get-current-route-id'; export const WithdrawalsMenu = () => { const setViews = useSidebar((store) => store.setViews); const currentRouteId = useGetCurrentRouteId(); return ( setViews({ type: ViewType.Withdraw }, currentRouteId)} data-testid="withdraw-dialog-button" > {t('Make withdrawal')} ); };