Remove unused import and add default font size

pull/8/head
Vasek Mlejnsky 6 years ago
parent 69562c6d7a
commit db80eed9ba

@ -1,13 +1,14 @@
import React from 'react';
import styled, { css } from 'styled-components';
import PropTypes from 'prop-types';
import { TRANSITION } from 'config/variables';
import { FONT_SIZE, TRANSITION } from 'config/variables';
import colors from 'config/colors';
const A = styled.a`
text-decoration: none;
cursor: pointer;
transition: ${TRANSITION.HOVER};
font-size: ${FONT_SIZE.SMALLER};
${props => props.isGreen && css`
border-bottom: 1px solid ${colors.GREEN_PRIMARY};

Loading…
Cancel
Save