wix-style-react
Version:
wix-style-react
34 lines (33 loc) • 1.17 kB
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxMarketerialLayout } from 'wix-style-react/MessageBox';
import Text from 'wix-style-react/Text';
import TextLink from 'wix-style-react/TextLink';
export default (function () {
return React.createElement(MessageBoxMarketerialLayout, {
title: 'Looking good! Your site is on Google',
fixImagePosition: true,
content: 'All of your pages are indexed and now come up as separate search results on Google. This is great for your visbility!',
confirmText: 'Button',
imageUrl: 'https://static.wixstatic.com/media/9ab0d1_8f1d1bd00e6c4bcd8764e1cae938f872~mv1.png',
theme: 'blue',
primaryButtonLabel: 'Button',
secondaryButtonLabel: 'Secondary action',
dataHook: 'announcement-footnote',
footerBottomChildren: React.createElement(
'div',
null,
React.createElement(
Text,
{ size: 'small', secondary: true },
'By sending an invite, you agree to the',
' '
),
React.createElement(
TextLink,
{ size: 'small', secondary: true },
'Wix Terms of Use.'
)
)
});
});