Files
dydx-v4-web/src/constants/tooltips/withdraw.ts
T
2023-09-08 13:52:13 -07:00

13 lines
559 B
TypeScript

import { type TooltipStrings, TOOLTIP_STRING_KEYS } from '@/constants/localization';
export const withdrawTooltips: TooltipStrings = {
'fast-withdraw-fee': ({ stringGetter }) => ({
title: stringGetter({ key: TOOLTIP_STRING_KEYS.FAST_WITHDRAW_FEE_TITLE }),
body: stringGetter({ key: TOOLTIP_STRING_KEYS.FAST_WITHDRAW_FEE_BODY }),
}),
'withdraw-types': ({ stringGetter }) => ({
title: stringGetter({ key: TOOLTIP_STRING_KEYS.WITHDRAW_TYPES_TITLE }),
body: stringGetter({ key: TOOLTIP_STRING_KEYS.WITHDRAW_TYPES_BODY }),
}),
} as const;