import { makeStyles } from '@material-ui/core' import React from 'react' import { Button } from 'src/components/buttons' import { H1, P, Info2 } from 'src/components/typography' import { ReactComponent as TxOutIcon } from 'src/styling/icons/direction/cash-out.svg' import { neon, spacer } from 'src/styling/variables' const styles = { logo: { maxHeight: 80, maxWidth: 200 }, title: { margin: 0, marginBottom: 42, textAlign: 'center' }, text: { margin: 0 }, button: { margin: [[0, 'auto']] }, modalContent: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between', flex: 1, padding: [[0, 34, 107, 34]], '& > div': { paddingBottom: 72, '& > h1': { color: neon, marginBottom: 12, marginTop: 30, textAlign: 'center', '& > svg': { verticalAlign: 'bottom', marginRight: spacer * 1.5, width: spacer * 3, height: spacer * 3.25 } } } } } const useStyles = makeStyles(styles) const WizardSplash = ({ name, onContinue }) => { const classes = useStyles() 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