index.js
19 lines
| 1 | import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; |
| 2 | |
| 3 | import './style.scss'; |
| 4 | |
| 5 | const Heading = ({icon, children}) => { |
| 6 | return ( |
| 7 | <div className="give-donor-dashboard-heading"> |
| 8 | {icon && ( |
| 9 | <FontAwesomeIcon |
| 10 | icon={icon} |
| 11 | className={icon === 'spinner' ? 'give-donor-dashboard-heading__spinner' : ''} |
| 12 | /> |
| 13 | )} |
| 14 | {children} |
| 15 | </div> |
| 16 | ); |
| 17 | }; |
| 18 | export default Heading; |
| 19 |