import React from 'react'; export default class extends React.Component { getHelpText() { if (this.props.helpText) { /* jshint ignore:start */ return

{this.props.helpText}

; /* jshint ignore:end */ } else { return null; } } render() { /* jshint ignore:start */ return
{this.props.icon || 'info_outline'}

{this.props.message}

{this.getHelpText()}
; /* jshint ignore:end */ } }