import { CSSTransition } from 'react-transition-group'; import clsx from 'clsx'; import { AnimationTimeout } from '@/shared/config'; import ShareSVG from '@/shared/assets/images/indicators/share.svg?react'; import ShieldSVG from '@/shared/assets/images/indicators/shield.svg?react'; import LoadingSVG from '@/shared/assets/images/indicators/loading.svg?react'; import styles from './Info.module.scss'; type Props = { isAwait: boolean; reserved: string; returned: string; }; const Info = ({ isAwait, reserved, returned }: Props) => (
{isAwait && (

Added to waitlist...

)}

Reserved: {reserved}

Maybe returned: {returned}

); export { Info };