wix-style-react
Version:
wix-style-react
17 lines (16 loc) • 716 B
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxMarketerialLayout } from 'wix-style-react/MessageBox';
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-standard'
});
});