import React from 'react';
import styled, { css } from 'styled-components';
import { A } from 'normalized-styled-components';
import is from 'styled-is';
import PropTypes from 'prop-types';
import { Link as BaseLink } from 'react-router-dom';
import Baseline from '../baseline';
const style = css`
color: ${props => props.theme.primary};
${is('secondary')`
color: ${props => props.theme.white};
text-decoration: none;
`}
`;
const StyledAnchor = styled(A)`
${style}
`;
const StyledLink = styled(BaseLink)`
${style}
`;
/**
* @example ./usage.md
*/
const Anchor = ({ children, ...rest }) => {
const { to = '' } = rest;
const Views = [() => (to ? StyledLink : null), () => StyledAnchor];
const View = Views.reduce((sel, view) => (sel ? sel : view()), null);
return (
{children}
);
};
Anchor.propTypes = {
/**
* The `` text
*/
children: PropTypes.node,
secondary: PropTypes.bool
};
Anchor.defaultProps = {
secondary: false
};
export default Baseline(Anchor);