import { Button, Notice } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import './style.scss'; export const LightNudge = ( { title, description, buttonText = null, checkoutUrl = null, goToCheckoutPage = null, isRedirecting = false, showButton = true, target = '_top', } ) => { const redirectingText = __( 'Redirecting…', 'jetpack' ); return (
{ title && { title } } { description }{ ' ' } { showButton && ( ) }