mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 04:38:07 +01:00
2efb22f455
Port 140aa6b054
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import React from 'react';
|
|
import { Icon } from './icon';
|
|
|
|
type 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>
|
|
);
|
|
|
|
export default VerifiedBadge;
|