render()

in src/components/QueryEditor/FieldValidationMessage.tsx [75:86]


  render() {
    const { children, horizontal, className, theme } = this.props;
    const styles = getFieldValidationMessageStyles(theme);
    const cssName = cx(horizontal ? styles.horizontal : styles.vertical, className);

    return (
      <div role="alert" className={cssName}>
        <Icon className={styles.fieldValidationMessageIcon} name="exclamation-triangle" />
        {children}
      </div>
    );
  }