Skip to content

Commit 3aef2df

Browse files
committed
Change language selector icon
1 parent 9bbb74e commit 3aef2df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mystbin/frontend/components/EditorTabs.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { Button } from "@material-ui/core";
1313
import DropdownItem from "react-bootstrap/DropdownItem";
1414
import React from "react";
1515
import InsertPhotoIcon from "@material-ui/icons/InsertPhoto";
16+
import SettingsIcon from '@material-ui/icons/Settings';
1617

1718
const languages = {
1819
py: "python",
@@ -194,7 +195,7 @@ export default function EditorTabs({
194195
className={styles.langButton}
195196
onClick={() => setLangDropDown(!langDropDown)}
196197
>
197-
<ArrowDownwardIcon />
198+
<SettingsIcon />
198199
</Button>
199200
{langDropDown ? (
200201
<div className={styles.langParent}>

0 commit comments

Comments
 (0)