UNPKG

node-red-contrib-chatbot

Version:

REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required

13 lines (11 loc) 464 B
import React from 'react'; import { ControlLabel as RawControlLabel, Icon, HelpBlock } from 'rsuite'; import _ from 'lodash'; const ControlLabel = ({ children, required = false, tooltip }) => ( <RawControlLabel> {children} {!_.isEmpty(tooltip) && <HelpBlock tooltip>{tooltip}</HelpBlock>} {required && <span className="asterisk">&nbsp;<Icon style={{ color: '#FF3932' }} icon="asterisk"/></span>} </RawControlLabel> ); export default ControlLabel;