UNPKG

@guestbell/react-page-plugins

Version:

Plugins we use in GuestBell for working with amazing react-page package

20 lines 808 B
import * as React from 'react'; import { lazyLoad } from '@react-page/editor'; import { ListButton } from './ListButton'; import { ListTypes } from './listTypes'; var ListIcon = lazyLoad(function () { return import('@mui/icons-material/FormatListBulleted'); }); var OrderedListIcon = lazyLoad(function () { return import('@mui/icons-material/FormatListNumbered'); }); export var ListButtons = function ListButtons() { return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(ListButton, { type: ListTypes.UL, icon: /*#__PURE__*/React.createElement(ListIcon, null) }), /*#__PURE__*/React.createElement(ListButton, { type: ListTypes.OL, icon: /*#__PURE__*/React.createElement(OrderedListIcon, null) })); }; //# sourceMappingURL=ListButtons.js.map