fix: Einstellungs-Icon bei digitalen Eingängen an Ausgänge angepasst
- Großes CogIcon durch kleines graues mdi:settings ersetzt - Einheitliches UI für digitale Ein- und Ausgänge - Bessere visuelle Konsistenz
This commit is contained in:
@@ -4,7 +4,6 @@ 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;
|
||||
@@ -89,8 +88,9 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) {
|
||||
{input.label}
|
||||
</td>
|
||||
<td className="px-1 py-1 laptop:px-0.5 laptop:py-0.5">
|
||||
<CogIcon
|
||||
className="2xl:w-8 2xl:h-8 xl:w-6 xl:h-6 laptop:w-4 laptop:h-4 cursor-pointer"
|
||||
<Icon
|
||||
icon="mdi:settings"
|
||||
className="text-gray-400 text-base cursor-pointer"
|
||||
onClick={() => openInputModal(input)}
|
||||
/>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user