Skip to content

Commit 482b1d9

Browse files
committed
👌 restore original code icon
1 parent c9a4d6e commit 482b1d9

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

client/common/icons.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import DropdownArrow from '../images/down-filled-triangle.svg';
1313
import Preferences from '../images/preferences.svg';
1414
import Play from '../images/triangle-arrow-right.svg';
1515
import Code from '../images/code.svg';
16+
import Terminal from '../images/terminal.svg';
1617

1718

1819
// HOC that adds the right web accessibility props
@@ -76,4 +77,4 @@ export const ExitIcon = withLabel(Exit);
7677
export const DropdownArrowIcon = withLabel(DropdownArrow);
7778
export const PreferencesIcon = withLabel(Preferences);
7879
export const PlayIcon = withLabel(Play);
79-
export const CodeIcon = withLabel(Code);
80+
export const TerminalIcon = withLabel(Terminal);

client/components/mobile/ActionStrip.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { bindActionCreators } from 'redux';
44
import { useDispatch } from 'react-redux';
55
import { remSize } from '../../theme';
66
import IconButton from './IconButton';
7-
import { CodeIcon } from '../../common/icons';
7+
import { TerminalIcon } from '../../common/icons';
88
import * as IDEActions from '../../modules/IDE/actions/ide';
99

1010
const BottomBarContent = styled.h2`
@@ -18,7 +18,7 @@ const BottomBarContent = styled.h2`
1818
export default () => {
1919
const { expandConsole } = bindActionCreators(IDEActions, useDispatch());
2020

21-
const actions = [{ icon: CodeIcon, aria: 'Say Something', action: expandConsole }];
21+
const actions = [{ icon: TerminalIcon, aria: 'Say Something', action: expandConsole }];
2222

2323
return (
2424
<BottomBarContent>

client/images/code.svg

Lines changed: 8 additions & 5 deletions
Loading

client/images/terminal.svg

Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)