wix-style-react
Version:
wix-style-react
51 lines (41 loc) • 1.56 kB
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _MessageBox = require('wix-style-react/MessageBox');
var _Text = require('wix-style-react/Text');
var _Text2 = _interopRequireDefault(_Text);
var _TextLink = require('wix-style-react/TextLink');
var _TextLink2 = _interopRequireDefault(_TextLink);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/* eslint-disable react/prop-types */
exports.default = function () {
return _react2.default.createElement(_MessageBox.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: _react2.default.createElement(
'div',
null,
_react2.default.createElement(
_Text2.default,
{ size: 'small', secondary: true },
'By sending an invite, you agree to the',
' '
),
_react2.default.createElement(
_TextLink2.default,
{ size: 'small', secondary: true },
'Wix Terms of Use.'
)
)
});
};