import React from 'react' import { H1, P, Info2 } from 'src/components/typography' import TxOutIcon from 'src/styling/icons/direction/cash-out.svg?react' import { Button } from 'src/components/buttons' const WizardSplash = ({ name, onContinue }) => { return (

Enable cash-out

{name}

You are about to activate cash-out functionality on your {name}{' '} machine which will allow your customers to sell crypto to you.

In order to activate cash-out for this machine, please enter the denominations for the machine.

) } export default WizardSplash