🧹 remove needless imports

This commit is contained in:
ghalestrilo 2020-07-21 12:25:22 -03:00
parent db5d853ff1
commit c9a4d6eccc

View file

@ -2,20 +2,16 @@ import React from 'react';
import styled from 'styled-components'; import styled from 'styled-components';
import { bindActionCreators } from 'redux'; import { bindActionCreators } from 'redux';
import { useDispatch } from 'react-redux'; import { useDispatch } from 'react-redux';
import { prop, remSize } from '../../theme'; import { remSize } from '../../theme';
import IconButton from './IconButton'; import IconButton from './IconButton';
import { CodeIcon } from '../../common/icons'; import { CodeIcon } from '../../common/icons';
import * as IDEActions from '../../modules/IDE/actions/ide'; import * as IDEActions from '../../modules/IDE/actions/ide';
const background = prop('MobilePanel.default.background');
const textColor = prop('primaryTextColor');
const BottomBarContent = styled.h2` const BottomBarContent = styled.h2`
padding: ${remSize(8)}; padding: ${remSize(8)};
svg { svg {
max-height: ${remSize(32)}; max-height: ${remSize(32)};
/* padding: ${remSize(4)} */
} }
`; `;