Skip to content

Commit

Permalink
Changed icons
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Oct 6, 2023
1 parent 9f4eaaa commit 3e2fbda
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { GuiEvent, GuiMessageBroker } from "@framework/GuiMessageBroker";
import { ModuleInstance } from "@framework/ModuleInstance";
import { SyncSettingKey, SyncSettingsMeta } from "@framework/SyncSettings";
import { isDevMode } from "@lib/utils/devMode";
import { ArrowDownward, ArrowUpward, Close } from "@mui/icons-material";
import { CellTower, Close, TapAndPlay } from "@mui/icons-material";

export type HeaderProps = {
moduleInstance: ModuleInstance<any>;
Expand Down Expand Up @@ -105,7 +105,7 @@ export const Header: React.FC<HeaderProps> = (props) => {
title="Connect data channels to other module instances"
onPointerDown={handleDataChannelOriginPointerDown}
>
<ArrowUpward fontSize="small" />
<CellTower fontSize="small" />
</div>
)}
{props.moduleInstance.getInputChannelDefs().length > 0 && (
Expand All @@ -115,7 +115,7 @@ export const Header: React.FC<HeaderProps> = (props) => {
onPointerUp={handleInputChannelsPointerUp}
onPointerDown={handleInputChannelsPointerDown}
>
<ArrowDownward fontSize="small" />
<TapAndPlay fontSize="small" />
</div>
)}
<div
Expand Down

0 comments on commit 3e2fbda

Please sign in to comment.