import React from 'react';
// import i18next from 'i18next';
import { Button, Grid } from '@material-ui/core';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faPlus } from '@fortawesome/pro-light-svg-icons';
import i18next from '../../../common/i18next';
require('pegasus/build-creation/registry.css');
const Addpatient = () => {
return (
<Grid className='add-patient_button'>
<Button variant='contained' color='primary' aria-label='Add'>
<FontAwesomeIcon icon={faPlus} className='icon-plus' />
{i18next.t('patientBrowser.buttons.addpatient')}
</Button>
</Grid>
);
};
export default Addpatient;
|