import React from 'react'; type BadgeLinkType = { target: string; variant: string; badgeText: string; href: string; children: React.ReactNode }; export function BadgeLink(props: BadgeLinkType) { const { target = '_blank', variant = 'success', badgeText, href, children } = props; return (

{badgeText} {children}

); }