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';
1313import Preferences from '../images/preferences.svg' ;
1414import Play from '../images/triangle-arrow-right.svg' ;
1515import 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);
7677export const DropdownArrowIcon = withLabel ( DropdownArrow ) ;
7778export const PreferencesIcon = withLabel ( Preferences ) ;
7879export 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';
44import { useDispatch } from 'react-redux' ;
55import { remSize } from '../../theme' ;
66import IconButton from './IconButton' ;
7- import { CodeIcon } from '../../common/icons' ;
7+ import { TerminalIcon } from '../../common/icons' ;
88import * as IDEActions from '../../modules/IDE/actions/ide' ;
99
1010const BottomBarContent = styled . h2 `
@@ -18,7 +18,7 @@ const BottomBarContent = styled.h2`
1818export 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 >
You can’t perform that action at this time.
0 commit comments