import { toast } from 'sonner' import { cn } from '../../utils' import { typographyVariants } from '../Typography' import { LinkIcon } from './LinkIcon' import type { PlatformAdProps } from './PlatformAd' export const PlatformAdLink = ({ link, toastId, }: { link: NonNullable toastId: NonNullable }) => ( toast.dismiss(toastId)} > {link.text} )