All files / src/containers/PatientBrowser/components/AssignProList/Baseline EmailComponenent.js

0% Statements 0/8
0% Branches 0/2
0% Functions 0/2
0% Lines 0/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31                                                             
import React, { PureComponent } from 'react';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
 
class EmailComponenent extends PureComponent {
    constructor(props) {
        super(props);
        this.state = {
        };
    }
 
    render() {
        const { EmailId } = this.props;
        if (EmailId) {
            return (
                <FontAwesomeIcon
                    icon={['fal', 'envelope']}
                    className='email-icon assign-pro-enabled'
                />
            );
        }
        else {
            return (
                <FontAwesomeIcon
                    icon={['fal', 'envelope']}
                    className='email-icon assign-pro-disabled'
                />
            );
        }
    }
}
export default EmailComponenent;