src/components/MapMarker/styled/label.js
import styled from 'styled-components';
import attachThemeAttrs from '../../../styles/helpers/attachThemeAttrs';
import { FONT_SIZE_TEXT_MEDIUM } from '../../../styles/fontSizes';
const StyledLabel = attachThemeAttrs(styled.span)`
font-size: ${FONT_SIZE_TEXT_MEDIUM};
color: ${props => props.palette.text.main};
display: block;
`;
export default StyledLabel;