You are on page 1of 1

import { Box, Typography } from '@mui/material'

import React from 'react'

export const AmigdalaAmigdalitis1 = React.forwardRef((props,ref) => {

return (
<>
<div ref={ref}>

<Box style={{ padding: "3rem 2rem 3rem 2rem", fontFamily: 'Century Gothic',
fontSize: "12px" }}>

<Box style={{ display: "flex", fontSize: "12px", justifyContent: "space-


between" }}>
<Box><img width={100} src={'/static/images/img/logoLogin.png'}
alt='imgVesalio'/></Box>
<Box style={{ textAlign: "center", marginTop: "20px" }}>
<Typography style={{ fontSize: "9px" }}><b>Clínica
Vesalio</b></Typography>
<Typography style={{ fontSize: "9px" }}>Comprobante de
turno</Typography>
</Box>
</Box>

<Box style={{ marginTop: "20px", fontSize: "5px" }}>


<Typography style={{ fontSize: "9px" }}>{`Fecha turno:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Profesional:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Hora turno:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Especialidad:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Consultorio:
${null}`}</Typography>
</Box>

<Box style={{ marginTop: "20px", fontSize: "5px" }}>


<Typography style={{ fontSize: "9px" }}>{`Paciente:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Fecha y hora de emisión: $
{null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Registrado por:
${null}`}</Typography>
<Typography style={{ fontSize: "9px" }}>{`Impreso por:
${null}`}</Typography>
</Box>

<Box style={{ marginTop: "20px", fontSize: "5px" }}>


<Typography style={{ fontSize: "9px" }}>{`Los cambios se realizan con
48hrs. de anticipación a nuestra central telefónica N° 618 9999`}</Typography>
</Box>

</Box>

</div>
</>
)
})

You might also like