@douyinfe/semi-icons 2.2.0 → 2.3.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 +28 -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/components/Icon.js +1 -0
- package/lib/cjs/icons/IconFastForward.d.ts +3 -0
- package/lib/cjs/icons/IconFastForward.js +47 -0
- package/lib/cjs/icons/index.d.ts +1 -0
- package/lib/cjs/icons/index.js +9 -0
- package/lib/es/components/Icon.js +1 -0
- package/lib/es/icons/IconFastForward.d.ts +3 -0
- package/lib/es/icons/IconFastForward.js +24 -0
- package/lib/es/icons/index.d.ts +1 -0
- package/lib/es/icons/index.js +1 -0
- package/package.json +3 -3
- package/src/components/Icon.tsx +1 -1
- package/src/icons/IconFastForward.tsx +29 -0
- package/src/icons/index.ts +1 -0
- package/src/svgs/fast_forward.svg +1 -0
- package/src/svgs/meta.json +1 -1
package/dist/umd/semi-icons.js
CHANGED
|
@@ -451,6 +451,7 @@ __webpack_require__.d(__webpack_exports__, "IconEyeClosedSolid", function() { re
|
|
|
451
451
|
__webpack_require__.d(__webpack_exports__, "IconEyeOpened", function() { return /* reexport */ IconEyeOpened; });
|
|
452
452
|
__webpack_require__.d(__webpack_exports__, "IconFacebook", function() { return /* reexport */ IconFacebook; });
|
|
453
453
|
__webpack_require__.d(__webpack_exports__, "IconFaceuLogo", function() { return /* reexport */ IconFaceuLogo; });
|
|
454
|
+
__webpack_require__.d(__webpack_exports__, "IconFastForward", function() { return /* reexport */ IconFastForward; });
|
|
454
455
|
__webpack_require__.d(__webpack_exports__, "IconFastFoward", function() { return /* reexport */ IconFastFoward; });
|
|
455
456
|
__webpack_require__.d(__webpack_exports__, "IconFavoriteList", function() { return /* reexport */ IconFavoriteList; });
|
|
456
457
|
__webpack_require__.d(__webpack_exports__, "IconFeishuLogo", function() { return /* reexport */ IconFeishuLogo; });
|
|
@@ -833,6 +834,7 @@ const Icon = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd
|
|
|
833
834
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("span", assign_default()({
|
|
834
835
|
role: "img",
|
|
835
836
|
ref: ref,
|
|
837
|
+
"aria-label": type,
|
|
836
838
|
className: classes,
|
|
837
839
|
style: outerStyle
|
|
838
840
|
}, restProps), svg);
|
|
@@ -4472,6 +4474,31 @@ function IconFaceuLogo_SvgComponent(props) {
|
|
|
4472
4474
|
|
|
4473
4475
|
const IconFaceuLogo_IconComponent = convertIcon(IconFaceuLogo_SvgComponent, 'faceu_logo');
|
|
4474
4476
|
/* harmony default export */ var IconFaceuLogo = (IconFaceuLogo_IconComponent);
|
|
4477
|
+
// CONCATENATED MODULE: ./lib/es/icons/IconFastForward.js
|
|
4478
|
+
|
|
4479
|
+
|
|
4480
|
+
|
|
4481
|
+
|
|
4482
|
+
function IconFastForward_SvgComponent(props) {
|
|
4483
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("svg", assign_default()({
|
|
4484
|
+
viewBox: "0 0 24 24",
|
|
4485
|
+
fill: "none",
|
|
4486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4487
|
+
width: "1em",
|
|
4488
|
+
height: "1em",
|
|
4489
|
+
focusable: false,
|
|
4490
|
+
"aria-hidden": true
|
|
4491
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("path", {
|
|
4492
|
+
d: "M1 5.96376C1 5.14647 1.9272 4.67432 2.58817 5.15502L10.888 11.1913C11.4371 11.5906 11.4371 12.4094 10.888 12.8087L2.58817 18.845C1.9272 19.3257 1 18.8535 1 18.0362V5.96376Z",
|
|
4493
|
+
fill: "currentColor"
|
|
4494
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_["createElement"]("path", {
|
|
4495
|
+
d: "M12 5.96376C12 5.14647 12.9272 4.67432 13.5882 5.15502L21.888 11.1913C22.4371 11.5906 22.4371 12.4094 21.888 12.8087L13.5882 18.845C12.9272 19.3257 12 18.8535 12 18.0362V5.96376Z",
|
|
4496
|
+
fill: "currentColor"
|
|
4497
|
+
}));
|
|
4498
|
+
}
|
|
4499
|
+
|
|
4500
|
+
const IconFastForward_IconComponent = convertIcon(IconFastForward_SvgComponent, 'fast_forward');
|
|
4501
|
+
/* harmony default export */ var IconFastForward = (IconFastForward_IconComponent);
|
|
4475
4502
|
// CONCATENATED MODULE: ./lib/es/icons/IconFastFoward.js
|
|
4476
4503
|
|
|
4477
4504
|
|
|
@@ -12133,6 +12160,7 @@ const IconYoutube_IconComponent = convertIcon(IconYoutube_SvgComponent, 'youtube
|
|
|
12133
12160
|
|
|
12134
12161
|
|
|
12135
12162
|
|
|
12163
|
+
|
|
12136
12164
|
|
|
12137
12165
|
|
|
12138
12166
|
// CONCATENATED MODULE: ./lib/es/index.js
|