@wordpress/icons 9.12.0 → 9.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/build/index.js +48 -0
- package/build/index.js.map +1 -1
- package/build/library/border.js +23 -0
- package/build/library/border.js.map +1 -0
- package/build/library/drawer-left.js +27 -0
- package/build/library/drawer-left.js.map +1 -0
- package/build/library/drawer-right.js +27 -0
- package/build/library/drawer-right.js.map +1 -0
- package/build/library/lock-outline.js +23 -0
- package/build/library/lock-outline.js.map +1 -0
- package/build/library/seen.js +23 -0
- package/build/library/seen.js.map +1 -0
- package/build/library/shadow.js +23 -0
- package/build/library/shadow.js.map +1 -0
- package/build-module/index.js +6 -0
- package/build-module/index.js.map +1 -1
- package/build-module/library/border.js +14 -0
- package/build-module/library/border.js.map +1 -0
- package/build-module/library/drawer-left.js +18 -0
- package/build-module/library/drawer-left.js.map +1 -0
- package/build-module/library/drawer-right.js +18 -0
- package/build-module/library/drawer-right.js.map +1 -0
- package/build-module/library/lock-outline.js +14 -0
- package/build-module/library/lock-outline.js.map +1 -0
- package/build-module/library/seen.js +14 -0
- package/build-module/library/seen.js.map +1 -0
- package/build-module/library/shadow.js +14 -0
- package/build-module/library/shadow.js.map +1 -0
- package/build-types/index.d.ts +6 -0
- package/build-types/library/border.d.ts +3 -0
- package/build-types/library/border.d.ts.map +1 -0
- package/build-types/library/drawer-left.d.ts +3 -0
- package/build-types/library/drawer-left.d.ts.map +1 -0
- package/build-types/library/drawer-right.d.ts +3 -0
- package/build-types/library/drawer-right.d.ts.map +1 -0
- package/build-types/library/lock-outline.d.ts +3 -0
- package/build-types/library/lock-outline.d.ts.map +1 -0
- package/build-types/library/seen.d.ts +3 -0
- package/build-types/library/seen.d.ts.map +1 -0
- package/build-types/library/shadow.d.ts +3 -0
- package/build-types/library/shadow.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/index.js +6 -0
- package/src/library/border.js +12 -0
- package/src/library/drawer-left.js +21 -0
- package/src/library/drawer-right.js +21 -0
- package/src/library/lock-outline.js +12 -0
- package/src/library/seen.js +12 -0
- package/src/library/shadow.js +12 -0
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/build/index.js
CHANGED
@@ -131,6 +131,12 @@ Object.defineProperty(exports, "blockTable", {
|
|
131
131
|
return _blockTable.default;
|
132
132
|
}
|
133
133
|
});
|
134
|
+
Object.defineProperty(exports, "border", {
|
135
|
+
enumerable: true,
|
136
|
+
get: function () {
|
137
|
+
return _border.default;
|
138
|
+
}
|
139
|
+
});
|
134
140
|
Object.defineProperty(exports, "box", {
|
135
141
|
enumerable: true,
|
136
142
|
get: function () {
|
@@ -419,6 +425,18 @@ Object.defineProperty(exports, "dragHandle", {
|
|
419
425
|
return _dragHandle.default;
|
420
426
|
}
|
421
427
|
});
|
428
|
+
Object.defineProperty(exports, "drawerLeft", {
|
429
|
+
enumerable: true,
|
430
|
+
get: function () {
|
431
|
+
return _drawerLeft.default;
|
432
|
+
}
|
433
|
+
});
|
434
|
+
Object.defineProperty(exports, "drawerRight", {
|
435
|
+
enumerable: true,
|
436
|
+
get: function () {
|
437
|
+
return _drawerRight.default;
|
438
|
+
}
|
439
|
+
});
|
422
440
|
Object.defineProperty(exports, "edit", {
|
423
441
|
enumerable: true,
|
424
442
|
get: function () {
|
@@ -779,6 +797,12 @@ Object.defineProperty(exports, "lock", {
|
|
779
797
|
return _lock.default;
|
780
798
|
}
|
781
799
|
});
|
800
|
+
Object.defineProperty(exports, "lockOutline", {
|
801
|
+
enumerable: true,
|
802
|
+
get: function () {
|
803
|
+
return _lockOutline.default;
|
804
|
+
}
|
805
|
+
});
|
782
806
|
Object.defineProperty(exports, "login", {
|
783
807
|
enumerable: true,
|
784
808
|
get: function () {
|
@@ -1187,6 +1211,12 @@ Object.defineProperty(exports, "search", {
|
|
1187
1211
|
return _search.default;
|
1188
1212
|
}
|
1189
1213
|
});
|
1214
|
+
Object.defineProperty(exports, "seen", {
|
1215
|
+
enumerable: true,
|
1216
|
+
get: function () {
|
1217
|
+
return _seen.default;
|
1218
|
+
}
|
1219
|
+
});
|
1190
1220
|
Object.defineProperty(exports, "separator", {
|
1191
1221
|
enumerable: true,
|
1192
1222
|
get: function () {
|
@@ -1199,6 +1229,12 @@ Object.defineProperty(exports, "settings", {
|
|
1199
1229
|
return _settings.default;
|
1200
1230
|
}
|
1201
1231
|
});
|
1232
|
+
Object.defineProperty(exports, "shadow", {
|
1233
|
+
enumerable: true,
|
1234
|
+
get: function () {
|
1235
|
+
return _shadow.default;
|
1236
|
+
}
|
1237
|
+
});
|
1202
1238
|
Object.defineProperty(exports, "share", {
|
1203
1239
|
enumerable: true,
|
1204
1240
|
get: function () {
|
@@ -1530,6 +1566,8 @@ var _blockMeta = _interopRequireDefault(require("./library/block-meta"));
|
|
1530
1566
|
|
1531
1567
|
var _blockTable = _interopRequireDefault(require("./library/block-table"));
|
1532
1568
|
|
1569
|
+
var _border = _interopRequireDefault(require("./library/border"));
|
1570
|
+
|
1533
1571
|
var _box = _interopRequireDefault(require("./library/box"));
|
1534
1572
|
|
1535
1573
|
var _brush = _interopRequireDefault(require("./library/brush"));
|
@@ -1622,6 +1660,10 @@ var _desktop = _interopRequireDefault(require("./library/desktop"));
|
|
1622
1660
|
|
1623
1661
|
var _dragHandle = _interopRequireDefault(require("./library/drag-handle"));
|
1624
1662
|
|
1663
|
+
var _drawerLeft = _interopRequireDefault(require("./library/drawer-left"));
|
1664
|
+
|
1665
|
+
var _drawerRight = _interopRequireDefault(require("./library/drawer-right"));
|
1666
|
+
|
1625
1667
|
var _download = _interopRequireDefault(require("./library/download"));
|
1626
1668
|
|
1627
1669
|
var _edit = _interopRequireDefault(require("./library/edit"));
|
@@ -1740,6 +1782,8 @@ var _listView = _interopRequireDefault(require("./library/list-view"));
|
|
1740
1782
|
|
1741
1783
|
var _lock = _interopRequireDefault(require("./library/lock"));
|
1742
1784
|
|
1785
|
+
var _lockOutline = _interopRequireDefault(require("./library/lock-outline"));
|
1786
|
+
|
1743
1787
|
var _login = _interopRequireDefault(require("./library/login"));
|
1744
1788
|
|
1745
1789
|
var _loop = _interopRequireDefault(require("./library/loop"));
|
@@ -1880,10 +1924,14 @@ var _rss = _interopRequireDefault(require("./library/rss"));
|
|
1880
1924
|
|
1881
1925
|
var _search = _interopRequireDefault(require("./library/search"));
|
1882
1926
|
|
1927
|
+
var _seen = _interopRequireDefault(require("./library/seen"));
|
1928
|
+
|
1883
1929
|
var _separator = _interopRequireDefault(require("./library/separator"));
|
1884
1930
|
|
1885
1931
|
var _settings = _interopRequireDefault(require("./library/settings"));
|
1886
1932
|
|
1933
|
+
var _shadow = _interopRequireDefault(require("./library/shadow"));
|
1934
|
+
|
1887
1935
|
var _share = _interopRequireDefault(require("./library/share"));
|
1888
1936
|
|
1889
1937
|
var _shield = _interopRequireDefault(require("./library/shield"));
|
package/build/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as addTemplate } from './library/add-template';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockMeta } from './library/block-meta';\nexport { default as blockTable } from './library/block-table';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as caption } from './library/caption';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronLeftSmall } from './library/chevron-left-small';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as chevronUpDown } from './library/chevron-up-down';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as copy } from './library/copy';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as filter } from './library/filter';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listItem } from './library/list-item';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as notFound } from './library/not-found';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as post } from './library/post';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as removeSubmenu } from './library/remove-submenu';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as row } from './library/row';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as shuffle } from './library/shuffle';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AAEA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA;;AACA","sourcesContent":["export { default as Icon } from './icon';\n\nexport { default as addCard } from './library/add-card';\nexport { default as addSubmenu } from './library/add-submenu';\nexport { default as addTemplate } from './library/add-template';\nexport { default as alignCenter } from './library/align-center';\nexport { default as alignJustify } from './library/align-justify';\nexport { default as alignLeft } from './library/align-left';\nexport { default as alignNone } from './library/align-none';\nexport { default as alignRight } from './library/align-right';\nexport { default as archive } from './library/archive';\nexport { default as arrowDown } from './library/arrow-down';\nexport { default as arrowLeft } from './library/arrow-left';\nexport { default as arrowRight } from './library/arrow-right';\nexport { default as arrowUp } from './library/arrow-up';\nexport { default as atSymbol } from './library/at-symbol';\nexport { default as aspectRatio } from './library/aspect-ratio';\nexport { default as audio } from './library/audio';\nexport { default as backup } from './library/backup';\nexport { default as blockDefault } from './library/block-default';\nexport { default as blockMeta } from './library/block-meta';\nexport { default as blockTable } from './library/block-table';\nexport { default as border } from './library/border';\nexport { default as box } from './library/box';\nexport { default as brush } from './library/brush';\nexport { default as bug } from './library/bug';\nexport { default as button } from './library/button';\nexport { default as buttons } from './library/buttons';\nexport { default as calendar } from './library/calendar';\nexport { default as cancelCircleFilled } from './library/cancel-circle-filled';\nexport { default as caption } from './library/caption';\nexport { default as capturePhoto } from './library/capture-photo';\nexport { default as captureVideo } from './library/capture-video';\nexport { default as category } from './library/category';\nexport { default as chartBar } from './library/chart-bar';\nexport { default as check } from './library/check';\nexport { default as chevronDown } from './library/chevron-down';\nexport { default as chevronLeft } from './library/chevron-left';\nexport { default as chevronLeftSmall } from './library/chevron-left-small';\nexport { default as chevronRight } from './library/chevron-right';\nexport { default as chevronRightSmall } from './library/chevron-right-small';\nexport { default as chevronUp } from './library/chevron-up';\nexport { default as chevronUpDown } from './library/chevron-up-down';\nexport { default as classic } from './library/classic';\nexport { default as close } from './library/close';\nexport { default as closeSmall } from './library/close-small';\nexport { default as cloudUpload } from './library/cloud-upload';\nexport { default as cloud } from './library/cloud';\nexport { default as code } from './library/code';\nexport { default as cog } from './library/cog';\nexport { default as color } from './library/color';\nexport { default as column } from './library/column';\nexport { default as columns } from './library/columns';\nexport { default as copy } from './library/copy';\nexport { default as comment } from './library/comment';\nexport { default as commentAuthorAvatar } from './library/comment-author-avatar';\nexport { default as commentAuthorName } from './library/comment-author-name';\nexport { default as commentContent } from './library/comment-content';\nexport { default as commentReplyLink } from './library/comment-reply-link';\nexport { default as commentEditLink } from './library/comment-edit-link';\nexport { default as cover } from './library/cover';\nexport { default as create } from './library/create';\nexport { default as crop } from './library/crop';\nexport { default as currencyDollar } from './library/currency-dollar';\nexport { default as currencyEuro } from './library/currency-euro';\nexport { default as currencyPound } from './library/currency-pound';\nexport { default as customPostType } from './library/custom-post-type';\nexport { default as desktop } from './library/desktop';\nexport { default as dragHandle } from './library/drag-handle';\nexport { default as drawerLeft } from './library/drawer-left';\nexport { default as drawerRight } from './library/drawer-right';\nexport { default as download } from './library/download';\nexport { default as edit } from './library/edit';\nexport { default as external } from './library/external';\nexport { default as file } from './library/file';\nexport { default as filter } from './library/filter';\nexport { default as flipHorizontal } from './library/flip-horizontal';\nexport { default as flipVertical } from './library/flip-vertical';\nexport { default as formatBold } from './library/format-bold';\nexport { default as formatCapitalize } from './library/format-capitalize';\nexport { default as formatIndent } from './library/format-indent';\nexport { default as formatIndentRTL } from './library/format-indent-rtl';\nexport { default as formatItalic } from './library/format-italic';\nexport { default as formatListBullets } from './library/format-list-bullets';\nexport { default as formatListBulletsRTL } from './library/format-list-bullets-rtl';\nexport { default as formatListNumbered } from './library/format-list-numbered';\nexport { default as formatListNumberedRTL } from './library/format-list-numbered-rtl';\nexport { default as formatLtr } from './library/format-ltr';\nexport { default as formatLowercase } from './library/format-lowercase';\nexport { default as formatOutdent } from './library/format-outdent';\nexport { default as formatOutdentRTL } from './library/format-outdent-rtl';\nexport { default as formatRtl } from './library/format-rtl';\nexport { default as formatStrikethrough } from './library/format-strikethrough';\nexport { default as formatUnderline } from './library/format-underline';\nexport { default as formatUppercase } from './library/format-uppercase';\nexport { default as fullscreen } from './library/fullscreen';\nexport { default as gallery } from './library/gallery';\nexport { default as globe } from './library/globe';\nexport { default as grid } from './library/grid';\nexport { default as group } from './library/group';\nexport { default as handle } from './library/handle';\nexport { default as heading } from './library/heading';\nexport { default as help } from './library/help';\nexport { default as helpFilled } from './library/help-filled';\nexport { default as inbox } from './library/inbox';\nexport { default as institution } from './library/institution';\nexport { default as home } from './library/home';\nexport { default as html } from './library/html';\nexport { default as image } from './library/image';\nexport { default as info } from './library/info';\nexport { default as insertAfter } from './library/insert-after';\nexport { default as insertBefore } from './library/insert-before';\nexport { default as justifyLeft } from './library/justify-left';\nexport { default as justifyCenter } from './library/justify-center';\nexport { default as justifyRight } from './library/justify-right';\nexport { default as justifySpaceBetween } from './library/justify-space-between';\nexport { default as key } from './library/key';\nexport { default as keyboardClose } from './library/keyboard-close';\nexport { default as keyboardReturn } from './library/keyboard-return';\nexport { default as layout } from './library/layout';\nexport { default as lifesaver } from './library/lifesaver';\nexport { default as lineDashed } from './library/line-dashed';\nexport { default as lineDotted } from './library/line-dotted';\nexport { default as lineSolid } from './library/line-solid';\nexport { default as link } from './library/link';\nexport { default as linkOff } from './library/link-off';\nexport { default as list } from './library/list';\nexport { default as listItem } from './library/list-item';\nexport { default as listView } from './library/list-view';\nexport { default as lock } from './library/lock';\nexport { default as lockOutline } from './library/lock-outline';\nexport { default as login } from './library/login';\nexport { default as loop } from './library/loop';\nexport { default as mapMarker } from './library/map-marker';\nexport { default as media } from './library/media';\nexport { default as mediaAndText } from './library/media-and-text';\nexport { default as megaphone } from './library/megaphone';\nexport { default as menu } from './library/menu';\nexport { default as mobile } from './library/mobile';\nexport { default as more } from './library/more';\nexport { default as moreHorizontal } from './library/more-horizontal';\nexport { default as moreHorizontalMobile } from './library/more-horizontal-mobile';\nexport { default as moreVertical } from './library/more-vertical';\nexport { default as moveTo } from './library/move-to';\nexport { default as navigation } from './library/navigation';\nexport { default as notFound } from './library/not-found';\nexport { default as overlayText } from './library/overlay-text';\nexport { default as pageBreak } from './library/page-break';\nexport { default as customLink } from './library/custom-link';\nexport { default as page } from './library/page';\nexport { default as pages } from './library/pages';\nexport { default as paragraph } from './library/paragraph';\nexport { default as payment } from './library/payment';\nexport { default as percent } from './library/percent';\nexport { default as positionCenter } from './library/position-center';\nexport { default as positionLeft } from './library/position-left';\nexport { default as positionRight } from './library/position-right';\nexport { default as pencil } from './library/pencil';\nexport { default as people } from './library/people';\nexport { default as pin } from './library/pin';\nexport { default as plugins } from './library/plugins';\nexport { default as plusCircleFilled } from './library/plus-circle-filled';\nexport { default as plusCircle } from './library/plus-circle';\nexport { default as plus } from './library/plus';\nexport { default as post } from './library/post';\nexport { default as postAuthor } from './library/post-author';\nexport { default as postCategories } from './library/post-categories';\nexport { default as postContent } from './library/post-content';\nexport { default as postComments } from './library/post-comments';\nexport { default as postCommentsCount } from './library/post-comments-count';\nexport { default as postCommentsForm } from './library/post-comments-form';\nexport { default as postDate } from './library/post-date';\nexport { default as postExcerpt } from './library/post-excerpt';\nexport { default as postFeaturedImage } from './library/post-featured-image';\nexport { default as postList } from './library/post-list';\nexport { default as postTerms } from './library/post-terms';\nexport { default as previous } from './library/previous';\nexport { default as next } from './library/next';\nexport { default as preformatted } from './library/preformatted';\nexport { default as pullLeft } from './library/pull-left';\nexport { default as pullRight } from './library/pull-right';\nexport { default as pullquote } from './library/pullquote';\nexport { default as queryPagination } from './library/query-pagination';\nexport { default as queryPaginationNext } from './library/query-pagination-next';\nexport { default as queryPaginationNumbers } from './library/query-pagination-numbers';\nexport { default as queryPaginationPrevious } from './library/query-pagination-previous';\nexport { default as quote } from './library/quote';\nexport { default as receipt } from './library/receipt';\nexport { default as redo } from './library/redo';\nexport { default as removeBug } from './library/remove-bug';\nexport { default as removeSubmenu } from './library/remove-submenu';\nexport { default as replace } from './library/replace';\nexport { default as reset } from './library/reset';\nexport { default as resizeCornerNE } from './library/resize-corner-n-e';\nexport { default as reusableBlock } from './library/reusable-block';\nexport { default as row } from './library/row';\nexport { default as symbol } from './library/symbol';\nexport { default as rotateLeft } from './library/rotate-left';\nexport { default as rotateRight } from './library/rotate-right';\nexport { default as rss } from './library/rss';\nexport { default as search } from './library/search';\nexport { default as seen } from './library/seen';\nexport { default as separator } from './library/separator';\nexport { default as settings } from './library/settings';\nexport { default as shadow } from './library/shadow';\nexport { default as share } from './library/share';\nexport { default as shield } from './library/shield';\nexport { default as shortcode } from './library/shortcode';\nexport { default as shuffle } from './library/shuffle';\nexport { default as siteLogo } from './library/site-logo';\nexport { default as stack } from './library/stack';\nexport { default as starEmpty } from './library/star-empty';\nexport { default as starFilled } from './library/star-filled';\nexport { default as starHalf } from './library/star-half';\nexport { default as store } from './library/store';\nexport { default as stretchFullWidth } from './library/stretch-full-width';\nexport { default as styles } from './library/styles';\nexport { default as shipping } from './library/shipping';\nexport { default as stretchWide } from './library/stretch-wide';\nexport { default as subscript } from './library/subscript';\nexport { default as superscript } from './library/superscript';\nexport { default as swatch } from './library/swatch';\nexport { default as tableColumnAfter } from './library/table-column-after';\nexport { default as tableColumnBefore } from './library/table-column-before';\nexport { default as tableColumnDelete } from './library/table-column-delete';\nexport { default as tableRowAfter } from './library/table-row-after';\nexport { default as tableRowBefore } from './library/table-row-before';\nexport { default as tableRowDelete } from './library/table-row-delete';\nexport { default as table } from './library/table';\nexport { default as tag } from './library/tag';\nexport { default as symbolFilled } from './library/symbol-filled';\nexport { default as termDescription } from './library/term-description';\nexport { default as footer } from './library/footer';\nexport { default as header } from './library/header';\nexport { default as sidebar } from './library/sidebar';\nexport { default as textColor } from './library/text-color';\nexport { default as tablet } from './library/tablet';\nexport { default as title } from './library/title';\nexport { default as tip } from './library/tip';\nexport { default as tool } from './library/tool';\nexport { default as trash } from './library/trash';\nexport { default as trendingDown } from './library/trending-down';\nexport { default as trendingUp } from './library/trending-up';\nexport { default as typography } from './library/typography';\nexport { default as undo } from './library/undo';\nexport { default as ungroup } from './library/ungroup';\nexport { default as unlock } from './library/unlock';\nexport { default as update } from './library/update';\nexport { default as upload } from './library/upload';\nexport { default as verse } from './library/verse';\nexport { default as video } from './library/video';\nexport { default as warning } from './library/warning';\nexport { default as widget } from './library/widget';\nexport { default as wordpress } from './library/wordpress';\n"]}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const border = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "m6.6 15.6-1.2.8c.6.9 1.3 1.6 2.2 2.2l.8-1.2c-.7-.5-1.3-1.1-1.8-1.8zM5.5 12c0-.4 0-.9.1-1.3l-1.5-.3c0 .5-.1 1.1-.1 1.6s.1 1.1.2 1.6l1.5-.3c-.2-.4-.2-.9-.2-1.3zm11.9-3.6 1.2-.8c-.6-.9-1.3-1.6-2.2-2.2l-.8 1.2c.7.5 1.3 1.1 1.8 1.8zM5.3 7.6l1.2.8c.5-.7 1.1-1.3 1.8-1.8l-.7-1.3c-.9.6-1.7 1.4-2.3 2.3zm14.5 2.8-1.5.3c.1.4.1.8.1 1.3s0 .9-.1 1.3l1.5.3c.1-.5.2-1 .2-1.6s-.1-1.1-.2-1.6zM12 18.5c-.4 0-.9 0-1.3-.1l-.3 1.5c.5.1 1 .2 1.6.2s1.1-.1 1.6-.2l-.3-1.5c-.4.1-.9.1-1.3.1zm3.6-1.1.8 1.2c.9-.6 1.6-1.3 2.2-2.2l-1.2-.8c-.5.7-1.1 1.3-1.8 1.8zM10.4 4.2l.3 1.5c.4-.1.8-.1 1.3-.1s.9 0 1.3.1l.3-1.5c-.5-.1-1.1-.2-1.6-.2s-1.1.1-1.6.2z"
|
20
|
+
}));
|
21
|
+
var _default = border;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=border.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/border.js"],"names":["border"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,MAAM,GACX,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,M","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst border = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"m6.6 15.6-1.2.8c.6.9 1.3 1.6 2.2 2.2l.8-1.2c-.7-.5-1.3-1.1-1.8-1.8zM5.5 12c0-.4 0-.9.1-1.3l-1.5-.3c0 .5-.1 1.1-.1 1.6s.1 1.1.2 1.6l1.5-.3c-.2-.4-.2-.9-.2-1.3zm11.9-3.6 1.2-.8c-.6-.9-1.3-1.6-2.2-2.2l-.8 1.2c.7.5 1.3 1.1 1.8 1.8zM5.3 7.6l1.2.8c.5-.7 1.1-1.3 1.8-1.8l-.7-1.3c-.9.6-1.7 1.4-2.3 2.3zm14.5 2.8-1.5.3c.1.4.1.8.1 1.3s0 .9-.1 1.3l1.5.3c.1-.5.2-1 .2-1.6s-.1-1.1-.2-1.6zM12 18.5c-.4 0-.9 0-1.3-.1l-.3 1.5c.5.1 1 .2 1.6.2s1.1-.1 1.6-.2l-.3-1.5c-.4.1-.9.1-1.3.1zm3.6-1.1.8 1.2c.9-.6 1.6-1.3 2.2-2.2l-1.2-.8c-.5.7-1.1 1.3-1.8 1.8zM10.4 4.2l.3 1.5c.4-.1.8-.1 1.3-.1s.9 0 1.3.1l.3-1.5c-.5-.1-1.1-.2-1.6-.2s-1.1.1-1.6.2z\" />\n\t</SVG>\n);\n\nexport default border;\n"]}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const drawerLeft = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
width: "24",
|
17
|
+
height: "24",
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
19
|
+
viewBox: "0 0 24 24"
|
20
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8.5 18.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h2.5v13zm10-.5c0 .3-.2.5-.5.5h-8v-13h8c.3 0 .5.2.5.5v12z"
|
24
|
+
}));
|
25
|
+
var _default = drawerLeft;
|
26
|
+
exports.default = _default;
|
27
|
+
//# sourceMappingURL=drawer-left.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/drawer-left.js"],"names":["drawerLeft"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,UAAU,GACf,4BAAC,eAAD;AACC,EAAA,KAAK,EAAC,IADP;AAEC,EAAA,MAAM,EAAC,IAFR;AAGC,EAAA,KAAK,EAAC,4BAHP;AAIC,EAAA,OAAO,EAAC;AAJT,GAMC,4BAAC,gBAAD;AACC,EAAA,QAAQ,EAAC,SADV;AAEC,EAAA,QAAQ,EAAC,SAFV;AAGC,EAAA,CAAC,EAAC;AAHH,EAND,CADD;eAeeA,U","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst drawerLeft = (\n\t<SVG\n\t\twidth=\"24\"\n\t\theight=\"24\"\n\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\tviewBox=\"0 0 24 24\"\n\t>\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zM8.5 18.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h2.5v13zm10-.5c0 .3-.2.5-.5.5h-8v-13h8c.3 0 .5.2.5.5v12z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default drawerLeft;\n"]}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const drawerRight = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
width: "24",
|
17
|
+
height: "24",
|
18
|
+
xmlns: "http://www.w3.org/2000/svg",
|
19
|
+
viewBox: "0 0 24 24"
|
20
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4 14.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h8v13zm4.5-.5c0 .3-.2.5-.5.5h-2.5v-13H18c.3 0 .5.2.5.5v12z"
|
24
|
+
}));
|
25
|
+
var _default = drawerRight;
|
26
|
+
exports.default = _default;
|
27
|
+
//# sourceMappingURL=drawer-right.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/drawer-right.js"],"names":["drawerRight"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,WAAW,GAChB,4BAAC,eAAD;AACC,EAAA,KAAK,EAAC,IADP;AAEC,EAAA,MAAM,EAAC,IAFR;AAGC,EAAA,KAAK,EAAC,4BAHP;AAIC,EAAA,OAAO,EAAC;AAJT,GAMC,4BAAC,gBAAD;AACC,EAAA,QAAQ,EAAC,SADV;AAEC,EAAA,QAAQ,EAAC,SAFV;AAGC,EAAA,CAAC,EAAC;AAHH,EAND,CADD;eAeeA,W","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst drawerRight = (\n\t<SVG\n\t\twidth=\"24\"\n\t\theight=\"24\"\n\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\tviewBox=\"0 0 24 24\"\n\t>\n\t\t<Path\n\t\t\tfillRule=\"evenodd\"\n\t\t\tclipRule=\"evenodd\"\n\t\t\td=\"M18 4H6c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-4 14.5H6c-.3 0-.5-.2-.5-.5V6c0-.3.2-.5.5-.5h8v13zm4.5-.5c0 .3-.2.5-.5.5h-2.5v-13H18c.3 0 .5.2.5.5v12z\"\n\t\t/>\n\t</SVG>\n);\n\nexport default drawerRight;\n"]}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const lockOutline = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zM9.8 7c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2v3H9.8V7zm6.7 11.5h-9v-7h9v7z"
|
20
|
+
}));
|
21
|
+
var _default = lockOutline;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=lock-outline.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/lock-outline.js"],"names":["lockOutline"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,WAAW,GAChB,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,W","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst lockOutline = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M17 10h-1.2V7c0-2.1-1.7-3.8-3.8-3.8-2.1 0-3.8 1.7-3.8 3.8v3H7c-.6 0-1 .4-1 1v8c0 .6.4 1 1 1h10c.6 0 1-.4 1-1v-8c0-.6-.4-1-1-1zM9.8 7c0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2v3H9.8V7zm6.7 11.5h-9v-7h9v7z\" />\n\t</SVG>\n);\n\nexport default lockOutline;\n"]}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const seen = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"
|
20
|
+
}));
|
21
|
+
var _default = seen;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=seen.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/seen.js"],"names":["seen"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,IAAI,GACT,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,I","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { SVG, Path } from '@wordpress/primitives';\n\nconst seen = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z\" />\n\t</SVG>\n);\n\nexport default seen;\n"]}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.default = void 0;
|
7
|
+
|
8
|
+
var _element = require("@wordpress/element");
|
9
|
+
|
10
|
+
var _primitives = require("@wordpress/primitives");
|
11
|
+
|
12
|
+
/**
|
13
|
+
* WordPress dependencies
|
14
|
+
*/
|
15
|
+
const shadow = (0, _element.createElement)(_primitives.SVG, {
|
16
|
+
viewBox: "0 0 24 24",
|
17
|
+
xmlns: "http://www.w3.org/2000/svg"
|
18
|
+
}, (0, _element.createElement)(_primitives.Path, {
|
19
|
+
d: "M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12.8 3h-1.5v3h1.5V3zm-1.6 18h1.5v-3h-1.5v3zm6.8-9.8v1.5h3v-1.5h-3zm-12 0H3v1.5h3v-1.5zm9.7 5.6 2.1 2.1 1.1-1.1-2.1-2.1-1.1 1.1zM8.3 7.2 6.2 5.1 5.1 6.2l2.1 2.1 1.1-1.1zM5.1 17.8l1.1 1.1 2.1-2.1-1.1-1.1-2.1 2.1zM18.9 6.2l-1.1-1.1-2.1 2.1 1.1 1.1 2.1-2.1z"
|
20
|
+
}));
|
21
|
+
var _default = shadow;
|
22
|
+
exports.default = _default;
|
23
|
+
//# sourceMappingURL=shadow.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["@wordpress/icons/src/library/shadow.js"],"names":["shadow"],"mappings":";;;;;;;;;AAGA;;AAHA;AACA;AACA;AAGA,MAAMA,MAAM,GACX,4BAAC,eAAD;AAAK,EAAA,OAAO,EAAC,WAAb;AAAyB,EAAA,KAAK,EAAC;AAA/B,GACC,4BAAC,gBAAD;AAAM,EAAA,CAAC,EAAC;AAAR,EADD,CADD;eAMeA,M","sourcesContent":["/**\n * WordPress dependencies\n */\nimport { Path, SVG } from '@wordpress/primitives';\n\nconst shadow = (\n\t<SVG viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n\t\t<Path d=\"M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 6.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12.8 3h-1.5v3h1.5V3zm-1.6 18h1.5v-3h-1.5v3zm6.8-9.8v1.5h3v-1.5h-3zm-12 0H3v1.5h3v-1.5zm9.7 5.6 2.1 2.1 1.1-1.1-2.1-2.1-1.1 1.1zM8.3 7.2 6.2 5.1 5.1 6.2l2.1 2.1 1.1-1.1zM5.1 17.8l1.1 1.1 2.1-2.1-1.1-1.1-2.1 2.1zM18.9 6.2l-1.1-1.1-2.1 2.1 1.1 1.1 2.1-2.1z\" />\n\t</SVG>\n);\n\nexport default shadow;\n"]}
|
package/build-module/index.js
CHANGED
@@ -19,6 +19,7 @@ export { default as backup } from './library/backup';
|
|
19
19
|
export { default as blockDefault } from './library/block-default';
|
20
20
|
export { default as blockMeta } from './library/block-meta';
|
21
21
|
export { default as blockTable } from './library/block-table';
|
22
|
+
export { default as border } from './library/border';
|
22
23
|
export { default as box } from './library/box';
|
23
24
|
export { default as brush } from './library/brush';
|
24
25
|
export { default as bug } from './library/bug';
|
@@ -65,6 +66,8 @@ export { default as currencyPound } from './library/currency-pound';
|
|
65
66
|
export { default as customPostType } from './library/custom-post-type';
|
66
67
|
export { default as desktop } from './library/desktop';
|
67
68
|
export { default as dragHandle } from './library/drag-handle';
|
69
|
+
export { default as drawerLeft } from './library/drawer-left';
|
70
|
+
export { default as drawerRight } from './library/drawer-right';
|
68
71
|
export { default as download } from './library/download';
|
69
72
|
export { default as edit } from './library/edit';
|
70
73
|
export { default as external } from './library/external';
|
@@ -124,6 +127,7 @@ export { default as list } from './library/list';
|
|
124
127
|
export { default as listItem } from './library/list-item';
|
125
128
|
export { default as listView } from './library/list-view';
|
126
129
|
export { default as lock } from './library/lock';
|
130
|
+
export { default as lockOutline } from './library/lock-outline';
|
127
131
|
export { default as login } from './library/login';
|
128
132
|
export { default as loop } from './library/loop';
|
129
133
|
export { default as mapMarker } from './library/map-marker';
|
@@ -194,8 +198,10 @@ export { default as rotateLeft } from './library/rotate-left';
|
|
194
198
|
export { default as rotateRight } from './library/rotate-right';
|
195
199
|
export { default as rss } from './library/rss';
|
196
200
|
export { default as search } from './library/search';
|
201
|
+
export { default as seen } from './library/seen';
|
197
202
|
export { default as separator } from './library/separator';
|
198
203
|
export { default as settings } from './library/settings';
|
204
|
+
export { default as shadow } from './library/shadow';
|
199
205
|
export { default as share } from './library/share';
|
200
206
|
export { default as shield } from './library/shield';
|
201
207
|
export { default as shortcode } from './library/shortcode';
|