import PropTypes from 'prop-types';
import classNames from 'classnames';
import { NavLink } from 'react-router-dom';
import { Icon } from 'mastodon/components/icon';
const ColumnLink = ({ icon, text, to, href, method, badge, transparent, children, ...other }) => {
const className = classNames('column-link', { 'column-link--transparent': transparent });
const badgeElement = typeof badge !== 'undefined' ? {badge} : null;
const iconElement = typeof icon === 'string' ?
{children}
: null; if (href) { return ( {iconElement} {text} {badgeElement} ); } else { return (