| 1 |
import { Button } from '@wordpress/components' |
| 2 |
|
| 3 |
export default function PromotionNotice({ promotionData }) { |
| 4 |
return ( |
| 5 |
<> |
| 6 |
<span className="text-black">{promotionData?.text ?? ''}</span> |
| 7 |
<span className="px-2 opacity-50" aria-hidden="true"> |
| 8 |
| |
| 9 |
</span> |
| 10 |
<div className="flex space-x-2 justify-center items-center"> |
| 11 |
{promotionData?.url && ( |
| 12 |
<Button |
| 13 |
variant="link" |
| 14 |
className="text-black underline hover:no-underline p-0 h-auto" |
| 15 |
href={`${promotionData.url}?utm_source=${window.extendifyData.sdk_partner}`} |
| 16 |
target="_blank"> |
| 17 |
{promotionData?.button_text} |
| 18 |
</Button> |
| 19 |
)} |
| 20 |
</div> |
| 21 |
</> |
| 22 |
) |
| 23 |
} |
| 24 |
|