joyent-portal/packages/icons/src/dot.js

13 lines
411 B
JavaScript
Raw Normal View History

import remcalc from 'remcalc';
import styled from 'styled-components';
export default styled.span`
2018-02-01 12:38:12 +02:00
width: ${props => props.size || remcalc(6)};
height: ${props => props.size || remcalc(6)};
border-radius: 50%;
background-color: ${props => props.theme[props.color]};
display: inline-block;
margin-right: ${props => props.right || remcalc(0)};
margin-left: ${props => props.left || remcalc(0)};
`;