summaryrefslogtreecommitdiff
path: root/web/src/components/FailureIcon.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/components/FailureIcon.tsx')
-rw-r--r--web/src/components/FailureIcon.tsx13
1 files changed, 6 insertions, 7 deletions
diff --git a/web/src/components/FailureIcon.tsx b/web/src/components/FailureIcon.tsx
index 7069646ec..bc64792b7 100644
--- a/web/src/components/FailureIcon.tsx
+++ b/web/src/components/FailureIcon.tsx
@@ -1,13 +1,12 @@
import React from "react";
-import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
+
import { faTimesCircle } from "@fortawesome/free-regular-svg-icons";
+import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
-export interface Props { }
+export interface Props {}
const FailureIcon = function (props: Props) {
- return (
- <FontAwesomeIcon icon={faTimesCircle} size="4x" color="red" className="failure-icon" />
- )
-}
+ return <FontAwesomeIcon icon={faTimesCircle} size="4x" color="red" className="failure-icon" />;
+};
-export default FailureIcon \ No newline at end of file
+export default FailureIcon;