strapi-plugin-content-manager
Version:
A powerful UI to easily manage your data.
25 lines (21 loc) • 366 B
JavaScript
import styled from 'styled-components';
/* eslint-disable indent */
const Carret = styled.div`
position: absolute;
${({ right }) => {
if (right) {
return `
right: -4px;
`;
}
return `
left: -1px;
`;
}}
height: 100%;
width: 2px;
margin-right: 3px;
border-radius: 2px;
background: #007eff;
`;
export default Carret;