regexper-static/src/componets/Message/index.js
2018-02-10 17:20:04 -05:00

14 lines
307 B
JavaScript

import React from 'react';
import style from './style.css';
const Message = ({ icon, heading, children }) => {
const IconComponent = icon;
return <div className={ style.message }>
<h2>{ IconComponent ? <IconComponent/> : '' }{ heading }</h2>
{ children }
</div>;
};
export default Message;