mirror of
https://github.com/strapi/strapi.git
synced 2025-10-29 17:04:13 +00:00
16 lines
434 B
JavaScript
16 lines
434 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
|
|
import colors from '../../assets/styles/colors';
|
|
|
|
const LeftMenuIcon = styled(({ ...props }) => <FontAwesomeIcon {...props} icon="circle" />)`
|
|
position: absolute;
|
|
top: calc(50% - 0.3rem);
|
|
left: 1.4rem;
|
|
font-size: 0.7rem;
|
|
color: ${colors.leftMenu.darkGrey};
|
|
`;
|
|
|
|
export default LeftMenuIcon;
|