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