👌 fix icon import
This commit is contained in:
parent
7f8138a204
commit
5aa349522a
1 changed files with 6 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import styled from 'styled-components';
|
||||
// import { Link } from 'react-router';
|
||||
import { Link } from 'react-router';
|
||||
import { connect } from 'react-redux';
|
||||
import { withRouter } from 'react-router';
|
||||
import { useState } from 'react';
|
||||
|
@ -21,7 +21,7 @@ import { getHTMLFile } from '../reducers/files';
|
|||
// Local Imports
|
||||
import Editor from '../components/Editor';
|
||||
import { prop, remSize } from '../../../theme';
|
||||
import CloseIcon from '../../../images/exit.svg';
|
||||
import { CloseIcon } from '../../../common/Icons';
|
||||
|
||||
const background = prop('Button.default.background');
|
||||
const textColor = prop('primaryTextColor');
|
||||
|
@ -40,7 +40,7 @@ const Header = styled.div`
|
|||
display: flex;
|
||||
flex: 1;
|
||||
flex-direction: row;
|
||||
// justify-content: space-between;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
`;
|
||||
|
||||
|
@ -82,7 +82,6 @@ Screen.propTypes = {
|
|||
const isUserOwner = ({ project, user }) => (project.owner && project.owner.id === user.id);
|
||||
|
||||
const IDEViewMobile = (props) => {
|
||||
// const
|
||||
const {
|
||||
preferences, ide, editorAccessibility, project, updateLintMessage, clearLintMessage, selectedFile, updateFileContent, files, closeEditorOptions, showEditorOptions, showKeyboardShortcutModal, setUnsavedChanges, startRefreshSketch, stopSketch, expandSidebar, collapseSidebar, clearConsole, console, showRuntimeErrorWarning, hideRuntimeErrorWarning
|
||||
} = props;
|
||||
|
@ -92,18 +91,14 @@ const IDEViewMobile = (props) => {
|
|||
return (
|
||||
<Screen>
|
||||
<Header>
|
||||
<Link to="/" style={{ width: '3rem', marginRight: '1.25rem' }}>
|
||||
<CloseIcon viewBox="20 21 60 60" aria-hidden="true" aria-label="close header" />
|
||||
</Link>
|
||||
<div>
|
||||
<h2>{project.name}</h2>
|
||||
<h3>{selectedFile.name}</h3>
|
||||
</div>
|
||||
<Icon href="/">
|
||||
<CloseIcon focusable="false" aria-hidden="true" />
|
||||
</Icon>
|
||||
</Header>
|
||||
{/* <div>
|
||||
{ [preferences, ide, editorAccessibility, project, updateLintMessage, clearLintMessage, selectedFile, updateFileContent, files, closeEditorOptions, showEditorOptions, showKeyboardShortcutModal, setUnsavedChanges, startRefreshSketch, stopSketch, expandSidebar, collapseSidebar, clearConsole, console, showRuntimeErrorWarning, hideRuntimeErrorWarning]
|
||||
.map(pr => <h5>{pr.toString()}</h5>) }
|
||||
</div> */}
|
||||
|
||||
<Content>
|
||||
<Editor
|
||||
|
|
Loading…
Reference in a new issue