~cytrogen/masto-fe

ref: e9385e93e9b4601c87d1f5d6b8ddfd815f7aedcb masto-fe/app/javascript/mastodon/components/verified_badge.tsx -rw-r--r-- 292 bytes
e9385e93 — Claire Add a confirmation screen when suspending a domain (#25144) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
import { Icon } from './icon';

interface Props {
  link: string;
}
export const VerifiedBadge: React.FC<Props> = ({ link }) => (
  <span className='verified-badge'>
    <Icon id='check' className='verified-badge__mark' />
    <span dangerouslySetInnerHTML={{ __html: link }} />
  </span>
);