UNPKG

wix-style-react

Version:
61 lines (60 loc) 1.28 kB
/* eslint-disable react/prop-types */ import React from 'react'; import { MessageBoxFunctionalLayout } from 'wix-style-react/MessageBox'; export default (function () { return React.createElement( MessageBoxFunctionalLayout, { title: 'Interuption Message', confirmText: 'Action', maxHeight: '200px', theme: 'blue', dataHook: 'alert-scrollable' }, React.createElement( 'div', null, 'This is a generic message. No harm done, but really needed to interrupt you.' ), React.createElement( 'div', null, 'It has multiple lines and limited max height' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ), React.createElement( 'div', null, 'and some are rows hidden' ) ); });