wix-style-react
Version:
26 lines (24 loc) • 904 B
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxMarketerialLayout, Text, TextButton } from 'wix-style-react';
export default () => (
<MessageBoxMarketerialLayout
title="Looking good! Your site is on Google"
content="All of your pages are indexed and now come up as separate search results on Google. This is great for your visibility!"
confirmText="Button"
imageUrl="https://static.wixstatic.com/media/9ab0d1_8f1d1bd00e6c4bcd8764e1cae938f872~mv1.png"
theme="blue"
primaryButtonLabel="Button"
secondaryButtonLabel="Secondary action"
dataHook="announcement-footnote"
onClose={() => undefined}
footerBottomChildren={
<div>
<Text size="small" secondary>
By sending an invite, you agree to the{' '}
</Text>
<TextButton size="small">Wix Terms of Use.</TextButton>
</div>
}
/>
);