/** * External dependencies */ import { Button, Icon } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { external } from '@wordpress/icons'; import clsx from 'clsx'; /** * Internal dependencies */ import jetpackLogo from '../assets/images/jetpack-logo.svg'; import './visit-site-banner.scss'; /** * Types */ import type { FC } from 'react'; export const VisitSiteBanner: FC< { className?: string; onVisitBlankTarget?: () => void; } > = ( { className = null, onVisitBlankTarget } ) => { return (