type Props = {
url: string
onLinkClick: () => void
}
export const PopupBlockedToast = (props: Props) => {
return (
Popup blocked
The bot wants to open a new tab but it was blocked by your broswer. It
needs a manual approval.
props.onLinkClick()}
>
Continue in new tab
)
}