import React from 'react'; import PropTypes from 'prop-types'; import Icon from 'mastodon/components/icon'; class VerifiedBadge extends React.PureComponent { static propTypes = { link: PropTypes.string.isRequired, verifiedAt: PropTypes.string.isRequired, }; render () { const { link } = this.props; return ( ); } } export default VerifiedBadge;