UNPKG

@rocket.chat/onboarding-ui

Version:

Set of components and functions for the onboarding experience on Rocket.Chat

10 lines 895 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Box, Margins } from '@rocket.chat/fuselage'; import { BackgroundLayer, LayoutLogo } from '@rocket.chat/layout'; import { useTranslation } from 'react-i18next'; var ResetPasswordConfirmationPage = function () { var t = useTranslation().t; return (_jsx(BackgroundLayer, { children: _jsx(Box, { display: 'flex', flexDirection: 'column', alignItems: 'center', textAlign: 'center', width: '100%', maxWidth: 576, paddingBlock: 32, paddingInline: 16, children: _jsxs(Margins, { blockEnd: 32, children: [_jsx(LayoutLogo, {}), _jsx(Box, { fontScale: 'hero', children: t('page.resetPasswordPage.emailSent.title') }), _jsx(Box, { fontScale: 'p1', children: t('page.resetPasswordPage.emailSent.subtitle') })] }) }) })); }; export default ResetPasswordConfirmationPage; //# sourceMappingURL=ResetPasswordConfirmationPage.js.map