diff --git a/components/icons/CogIcon.tsx b/components/icons/CogIcon.tsx
new file mode 100644
index 0000000..04d0180
--- /dev/null
+++ b/components/icons/CogIcon.tsx
@@ -0,0 +1,17 @@
+import React from "react";
+
+type Props = {
+ className?: string;
+ onClick?: () => void;
+};
+
+export default function CogIcon({ className, onClick }: Props) {
+ return (
+
+ );
+}
diff --git a/components/main/einausgaenge/DigitalInputs.tsx b/components/main/einausgaenge/DigitalInputs.tsx
index 02e72a8..3293027 100644
--- a/components/main/einausgaenge/DigitalInputs.tsx
+++ b/components/main/einausgaenge/DigitalInputs.tsx
@@ -3,6 +3,7 @@ import React from "react";
import { Icon } from "@iconify/react";
import { useSelector } from "react-redux";
import { RootState } from "../../../redux/store";
+import CogIcon from "../../../components/icons/CogIcon";
type Props = {
openInputModal: (input: any) => void;
@@ -51,8 +52,7 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) {