25 lines
553 B
React
25 lines
553 B
React
|
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 (
|
||
|
<span className='verified-badge'>
|
||
|
<Icon id='check' className='verified-badge__mark' />
|
||
|
<span dangerouslySetInnerHTML={{ __html: link }} />
|
||
|
</span>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default VerifiedBadge;
|