import React from 'react'; import style from './style.css'; const Message = ({ icon, heading, children }) => { const IconComponent = icon; return

{ IconComponent ? : '' }{ heading }

{ children }
; }; export default Message;