import React from 'react'; import classnames from 'classnames'; import PropTypes from 'prop-types'; import { capitalize } from 'lodash'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Box from '../../ui/box'; import { BLOCK_SIZES } from '../../../helpers/constants/design-system'; export const threeStepStages = { PASSWORD_CREATE: 1, RECOVERY_PHRASE_VIDEO: 2, RECOVERY_PHRASE_REVIEW: 3, RECOVERY_PHRASE_CONFIRM: 4, ONBOARDING_COMPLETE: 5, }; export const twoStepStages = { RECOVERY_PHRASE_CONFIRM: 1, PASSWORD_CREATE: 2, }; export function ThreeStepProgressBar({ stage, ...boxProps }) { const t = useI18nContext(); return ( ); } export function TwoStepProgressBar({ stage, ...boxProps }) { const t = useI18nContext(); return ( ); } ThreeStepProgressBar.propTypes = { stage: PropTypes.number, ...Box.propTypes, }; TwoStepProgressBar.propTypes = { stage: PropTypes.number, ...Box.propTypes, };