From 09cf2762f9a3ab5c344e74312bd37c0c05bee317 Mon Sep 17 00:00:00 2001 From: Kekoa Kaaikala Date: Wed, 28 Sep 2022 18:07:31 +0000 Subject: [PATCH] UI: Use yellow warning icon --- .../ui/src/components/configuration-components/WarningBox.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/monkey/monkey_island/cc/ui/src/components/configuration-components/WarningBox.js b/monkey/monkey_island/cc/ui/src/components/configuration-components/WarningBox.js index 89b1c4534..5192cac5e 100644 --- a/monkey/monkey_island/cc/ui/src/components/configuration-components/WarningBox.js +++ b/monkey/monkey_island/cc/ui/src/components/configuration-components/WarningBox.js @@ -1,13 +1,12 @@ import * as React from 'react'; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons/faExclamationTriangle'; +import WarningIcon from '../ui-components/WarningIcon'; class WarningBox extends React.Component { render() { return (
- + {this.props.schema.info}
);