@douyinfe/semi-icons 2.93.0 → 2.94.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/dist/umd/semi-icons.js +92 -0
- package/dist/umd/semi-icons.js.map +1 -1
- package/dist/umd/semi-icons.min.js +1 -1
- package/dist/umd/semi-icons.min.js.map +1 -1
- package/lib/cjs/icons/IconMaximize2.d.ts +3 -0
- package/lib/cjs/icons/IconMaximize2.js +28 -0
- package/lib/cjs/icons/IconMaximize2Stroked.d.ts +3 -0
- package/lib/cjs/icons/IconMaximize2Stroked.js +28 -0
- package/lib/cjs/icons/IconRestore.d.ts +3 -0
- package/lib/cjs/icons/IconRestore.js +28 -0
- package/lib/cjs/icons/IconRestoreStroked.d.ts +3 -0
- package/lib/cjs/icons/IconRestoreStroked.js +28 -0
- package/lib/cjs/icons/index.d.ts +4 -0
- package/lib/cjs/icons/index.js +28 -0
- package/lib/es/icons/IconMaximize2.d.ts +3 -0
- package/lib/es/icons/IconMaximize2.js +20 -0
- package/lib/es/icons/IconMaximize2Stroked.d.ts +3 -0
- package/lib/es/icons/IconMaximize2Stroked.js +20 -0
- package/lib/es/icons/IconRestore.d.ts +3 -0
- package/lib/es/icons/IconRestore.js +20 -0
- package/lib/es/icons/IconRestoreStroked.d.ts +3 -0
- package/lib/es/icons/IconRestoreStroked.js +20 -0
- package/lib/es/icons/index.d.ts +4 -0
- package/lib/es/icons/index.js +4 -0
- package/package.json +2 -2
- package/src/icons/IconMaximize2.tsx +25 -0
- package/src/icons/IconMaximize2Stroked.tsx +25 -0
- package/src/icons/IconRestore.tsx +25 -0
- package/src/icons/IconRestoreStroked.tsx +25 -0
- package/src/icons/index.ts +4 -0
- package/src/svgs/maximize2.svg +1 -0
- package/src/svgs/maximize2_stroked.svg +1 -0
- package/src/svgs/meta.json +16 -0
- package/src/svgs/restore.svg +1 -0
- package/src/svgs/restore_stroked.svg +1 -0
package/dist/umd/semi-icons.js
CHANGED
|
@@ -489,6 +489,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
489
489
|
IconMarginStroked: () => (/* reexport */ IconMarginStroked),
|
|
490
490
|
IconMark: () => (/* reexport */ IconMark),
|
|
491
491
|
IconMaximize: () => (/* reexport */ IconMaximize),
|
|
492
|
+
IconMaximize2: () => (/* reexport */ IconMaximize2),
|
|
493
|
+
IconMaximize2Stroked: () => (/* reexport */ IconMaximize2Stroked),
|
|
492
494
|
IconMember: () => (/* reexport */ IconMember),
|
|
493
495
|
IconMenu: () => (/* reexport */ IconMenu),
|
|
494
496
|
IconMicrophone: () => (/* reexport */ IconMicrophone),
|
|
@@ -559,6 +561,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
559
561
|
IconReplyStroked: () => (/* reexport */ IconReplyStroked),
|
|
560
562
|
IconResso: () => (/* reexport */ IconResso),
|
|
561
563
|
IconRestart: () => (/* reexport */ IconRestart),
|
|
564
|
+
IconRestore: () => (/* reexport */ IconRestore),
|
|
565
|
+
IconRestoreStroked: () => (/* reexport */ IconRestoreStroked),
|
|
562
566
|
IconRingChartStroked: () => (/* reexport */ IconRingChartStroked),
|
|
563
567
|
IconRotate: () => (/* reexport */ IconRotate),
|
|
564
568
|
IconRotationStroked: () => (/* reexport */ IconRotationStroked),
|
|
@@ -8111,6 +8115,48 @@ function IconMaximize_SvgComponent(props) {
|
|
|
8111
8115
|
}
|
|
8112
8116
|
const IconMaximize_IconComponent = convertIcon(IconMaximize_SvgComponent, 'maximize');
|
|
8113
8117
|
/* harmony default export */ const IconMaximize = (IconMaximize_IconComponent);
|
|
8118
|
+
;// CONCATENATED MODULE: ./lib/es/icons/IconMaximize2.js
|
|
8119
|
+
|
|
8120
|
+
|
|
8121
|
+
function IconMaximize2_SvgComponent(props) {
|
|
8122
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
8123
|
+
viewBox: "0 0 24 24",
|
|
8124
|
+
fill: "none",
|
|
8125
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8126
|
+
width: "1em",
|
|
8127
|
+
height: "1em",
|
|
8128
|
+
focusable: false,
|
|
8129
|
+
"aria-hidden": true
|
|
8130
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
8131
|
+
fillRule: "evenodd",
|
|
8132
|
+
clipRule: "evenodd",
|
|
8133
|
+
d: "M5 5.5A.5.5 0 015.5 5h13a.5.5 0 01.5.5v13a.5.5 0 01-.5.5H5.5A.5.5 0 015 18.5V5.5Zm-3 0v13A3.5 3.5 0 005.5 22h13A3.5 3.5 0 0022 18.5V5A3.5 3.5 0 0018.5 2H5.5A3.5 3.5 0 002 5.5Z",
|
|
8134
|
+
fill: "currentColor"
|
|
8135
|
+
}));
|
|
8136
|
+
}
|
|
8137
|
+
const IconMaximize2_IconComponent = convertIcon(IconMaximize2_SvgComponent, 'maximize_2');
|
|
8138
|
+
/* harmony default export */ const IconMaximize2 = (IconMaximize2_IconComponent);
|
|
8139
|
+
;// CONCATENATED MODULE: ./lib/es/icons/IconMaximize2Stroked.js
|
|
8140
|
+
|
|
8141
|
+
|
|
8142
|
+
function IconMaximize2Stroked_SvgComponent(props) {
|
|
8143
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
8144
|
+
viewBox: "0 0 24 24",
|
|
8145
|
+
fill: "none",
|
|
8146
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8147
|
+
width: "1em",
|
|
8148
|
+
height: "1em",
|
|
8149
|
+
focusable: false,
|
|
8150
|
+
"aria-hidden": true
|
|
8151
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
8152
|
+
fillRule: "evenodd",
|
|
8153
|
+
clipRule: "evenodd",
|
|
8154
|
+
d: "M4 4H21V20H4V4ZM2 3V21a1 1 0 001 1H22a1 1 0 001-1V3A1 1 0 0022 2H3A1 1 0 002 3Z",
|
|
8155
|
+
fill: "currentColor"
|
|
8156
|
+
}));
|
|
8157
|
+
}
|
|
8158
|
+
const IconMaximize2Stroked_IconComponent = convertIcon(IconMaximize2Stroked_SvgComponent, 'maximize_2_stroked');
|
|
8159
|
+
/* harmony default export */ const IconMaximize2Stroked = (IconMaximize2Stroked_IconComponent);
|
|
8114
8160
|
;// CONCATENATED MODULE: ./lib/es/icons/IconMember.js
|
|
8115
8161
|
|
|
8116
8162
|
|
|
@@ -9601,6 +9647,48 @@ function IconRestart_SvgComponent(props) {
|
|
|
9601
9647
|
}
|
|
9602
9648
|
const IconRestart_IconComponent = convertIcon(IconRestart_SvgComponent, 'restart');
|
|
9603
9649
|
/* harmony default export */ const IconRestart = (IconRestart_IconComponent);
|
|
9650
|
+
;// CONCATENATED MODULE: ./lib/es/icons/IconRestore.js
|
|
9651
|
+
|
|
9652
|
+
|
|
9653
|
+
function IconRestore_SvgComponent(props) {
|
|
9654
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
9655
|
+
viewBox: "0 0 24 24",
|
|
9656
|
+
fill: "none",
|
|
9657
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9658
|
+
width: "1em",
|
|
9659
|
+
height: "1em",
|
|
9660
|
+
focusable: false,
|
|
9661
|
+
"aria-hidden": true
|
|
9662
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
9663
|
+
fillRule: "evenodd",
|
|
9664
|
+
clipRule: "evenodd",
|
|
9665
|
+
d: "M3 9A2 2 0 015 7H15a2 2 0 012 2V19a2 2 0 01-2 2H5A2 2 0 013 19V9Zm3 1v8h8V10H6ZM7 4c0-1.1.9-2 2-2h11a2 2 0 012 2v11a2 2 0 01-2 2h-1V5H7V4Z",
|
|
9666
|
+
fill: "currentColor"
|
|
9667
|
+
}));
|
|
9668
|
+
}
|
|
9669
|
+
const IconRestore_IconComponent = convertIcon(IconRestore_SvgComponent, 'restore');
|
|
9670
|
+
/* harmony default export */ const IconRestore = (IconRestore_IconComponent);
|
|
9671
|
+
;// CONCATENATED MODULE: ./lib/es/icons/IconRestoreStroked.js
|
|
9672
|
+
|
|
9673
|
+
|
|
9674
|
+
function IconRestoreStroked_SvgComponent(props) {
|
|
9675
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
9676
|
+
viewBox: "0 0 24 24",
|
|
9677
|
+
fill: "none",
|
|
9678
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9679
|
+
width: "1em",
|
|
9680
|
+
height: "1em",
|
|
9681
|
+
focusable: false,
|
|
9682
|
+
"aria-hidden": true
|
|
9683
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
9684
|
+
fillRule: "evenodd",
|
|
9685
|
+
clipRule: "evenodd",
|
|
9686
|
+
d: "M22 16a2 2 0 01-2 2V4H6c0-1.1.9-2 2-2h12a2 2 0 012 2v12ZM2 8c0-1.1.9-2 2-2h12a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V8ZM4 8V20H16V8H4Z",
|
|
9687
|
+
fill: "currentColor"
|
|
9688
|
+
}));
|
|
9689
|
+
}
|
|
9690
|
+
const IconRestoreStroked_IconComponent = convertIcon(IconRestoreStroked_SvgComponent, 'restore_stroked');
|
|
9691
|
+
/* harmony default export */ const IconRestoreStroked = (IconRestoreStroked_IconComponent);
|
|
9604
9692
|
;// CONCATENATED MODULE: ./lib/es/icons/IconRingChartStroked.js
|
|
9605
9693
|
|
|
9606
9694
|
|
|
@@ -13175,6 +13263,10 @@ const IconYoutube_IconComponent = convertIcon(IconYoutube_SvgComponent, 'youtube
|
|
|
13175
13263
|
|
|
13176
13264
|
|
|
13177
13265
|
|
|
13266
|
+
|
|
13267
|
+
|
|
13268
|
+
|
|
13269
|
+
|
|
13178
13270
|
|
|
13179
13271
|
|
|
13180
13272
|
|