2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-07 20:55:58 -04:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-12-12 08:27:52 -05:00
|
|
|
|
2017-07-26 07:46:53 -04:00
|
|
|
const ColumnLink = ({ icon, text, to, href, method }) => {
|
2016-12-12 08:27:52 -05:00
|
|
|
if (href) {
|
|
|
|
return (
|
2017-07-26 07:46:53 -04:00
|
|
|
<a href={href} className='column-link' data-method={method}>
|
2017-04-22 22:26:55 -04:00
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-12 08:27:52 -05:00
|
|
|
{text}
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return (
|
2017-07-26 07:46:53 -04:00
|
|
|
<Link to={to} className='column-link'>
|
2017-04-22 22:26:55 -04:00
|
|
|
<i className={`fa fa-fw fa-${icon} column-link__icon`} />
|
2016-12-12 08:27:52 -05:00
|
|
|
{text}
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ColumnLink.propTypes = {
|
2017-04-21 14:05:35 -04:00
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
text: PropTypes.string.isRequired,
|
|
|
|
to: PropTypes.string,
|
|
|
|
href: PropTypes.string,
|
|
|
|
method: PropTypes.string,
|
2017-05-20 11:31:47 -04:00
|
|
|
hideOnMobile: PropTypes.bool,
|
2016-12-12 08:27:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export default ColumnLink;
|