import PropTypes from 'prop-types';
import { Check } from 'mastodon/components/check';
import { Icon }  from 'mastodon/components/icon';
const Step = ({ label, description, icon, completed, onClick, href }) => {
  const content = (
    <>
      
        
      
      
      {completed && (
        
          
        
      )}
    >
  );
  if (href) {
    return (
      
        {content}
      
    );
  }
  return (
    
  );
};
Step.propTypes = {
  label: PropTypes.node,
  description: PropTypes.node,
  icon: PropTypes.string,
  completed: PropTypes.bool,
  href: PropTypes.string,
  onClick: PropTypes.func,
};
export default Step;