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