File tree Expand file tree Collapse file tree 4 files changed +17
-8
lines changed Expand file tree Collapse file tree 4 files changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import DropdownArrow from '../images/down-filled-triangle.svg';
13
13
import Preferences from '../images/preferences.svg' ;
14
14
import Play from '../images/triangle-arrow-right.svg' ;
15
15
import Code from '../images/code.svg' ;
16
+ import Terminal from '../images/terminal.svg' ;
16
17
17
18
18
19
// HOC that adds the right web accessibility props
@@ -76,4 +77,4 @@ export const ExitIcon = withLabel(Exit);
76
77
export const DropdownArrowIcon = withLabel ( DropdownArrow ) ;
77
78
export const PreferencesIcon = withLabel ( Preferences ) ;
78
79
export const PlayIcon = withLabel ( Play ) ;
79
- export const CodeIcon = withLabel ( Code ) ;
80
+ export const TerminalIcon = withLabel ( Terminal ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { bindActionCreators } from 'redux';
4
4
import { useDispatch } from 'react-redux' ;
5
5
import { remSize } from '../../theme' ;
6
6
import IconButton from './IconButton' ;
7
- import { CodeIcon } from '../../common/icons' ;
7
+ import { TerminalIcon } from '../../common/icons' ;
8
8
import * as IDEActions from '../../modules/IDE/actions/ide' ;
9
9
10
10
const BottomBarContent = styled . h2 `
@@ -18,7 +18,7 @@ const BottomBarContent = styled.h2`
18
18
export default ( ) => {
19
19
const { expandConsole } = bindActionCreators ( IDEActions , useDispatch ( ) ) ;
20
20
21
- const actions = [ { icon : CodeIcon , aria : 'Say Something' , action : expandConsole } ] ;
21
+ const actions = [ { icon : TerminalIcon , aria : 'Say Something' , action : expandConsole } ] ;
22
22
23
23
return (
24
24
< BottomBarContent >
You can’t perform that action at this time.
0 commit comments