import React from 'react';
import PropTypes from 'prop-types';
import styled from 'styled-components';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
const FaIcon = styled(({ small, ...props }) => )`
position: absolute;
top: ${({ small }) => (small ? 'calc(50% - 0.3rem)' : 'calc(50% - 0.9rem + 0.3rem)')};
left: ${({ small }) => (small ? '2.2rem' : '1.6rem')};
width: ${({ small }) => (small ? 'auto' : '1.3rem')} !important;
font-size: ${({ small }) => (small ? '.5rem' : '1.3rem')};
`;
const LeftMenuIcon = ({ icon }) => ;
LeftMenuIcon.propTypes = {
icon: PropTypes.string,
};
LeftMenuIcon.defaultProps = {
icon: 'circle',
};
export default LeftMenuIcon;