wssf-kage-icon 0.1.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/README.md +39 -0
- package/dist/icons/ArrowsAltOutlined.d.ts +4 -0
- package/dist/icons/ArrowsAltOutlined.d.ts.map +1 -0
- package/dist/icons/ArrowsAltOutlined.js +50 -0
- package/dist/icons/CaretDownOutlined.d.ts +4 -0
- package/dist/icons/CaretDownOutlined.d.ts.map +1 -0
- package/dist/icons/CaretDownOutlined.js +50 -0
- package/dist/icons/CaretLeftOutlined.d.ts +4 -0
- package/dist/icons/CaretLeftOutlined.d.ts.map +1 -0
- package/dist/icons/CaretLeftOutlined.js +50 -0
- package/dist/icons/CaretRightOutlined.d.ts +4 -0
- package/dist/icons/CaretRightOutlined.d.ts.map +1 -0
- package/dist/icons/CaretRightOutlined.js +50 -0
- package/dist/icons/CaretUpOutlined.d.ts +4 -0
- package/dist/icons/CaretUpOutlined.d.ts.map +1 -0
- package/dist/icons/CaretUpOutlined.js +50 -0
- package/dist/icons/DownCircleOutlined.d.ts +4 -0
- package/dist/icons/DownCircleOutlined.d.ts.map +1 -0
- package/dist/icons/DownCircleOutlined.js +53 -0
- package/dist/icons/DownOutlined.d.ts +4 -0
- package/dist/icons/DownOutlined.d.ts.map +1 -0
- package/dist/icons/DownOutlined.js +50 -0
- package/dist/icons/FastBackwardOutlined.d.ts +4 -0
- package/dist/icons/FastBackwardOutlined.d.ts.map +1 -0
- package/dist/icons/FastBackwardOutlined.js +50 -0
- package/dist/icons/FastForwardOutlined.d.ts +4 -0
- package/dist/icons/FastForwardOutlined.d.ts.map +1 -0
- package/dist/icons/FastForwardOutlined.js +50 -0
- package/dist/icons/LeftCircleOutlined.d.ts +4 -0
- package/dist/icons/LeftCircleOutlined.d.ts.map +1 -0
- package/dist/icons/LeftCircleOutlined.js +53 -0
- package/dist/icons/LeftOutlined.d.ts +4 -0
- package/dist/icons/LeftOutlined.d.ts.map +1 -0
- package/dist/icons/LeftOutlined.js +50 -0
- package/dist/icons/RightCircleOutlined.d.ts +4 -0
- package/dist/icons/RightCircleOutlined.d.ts.map +1 -0
- package/dist/icons/RightCircleOutlined.js +53 -0
- package/dist/icons/RightOutlined.d.ts +4 -0
- package/dist/icons/RightOutlined.d.ts.map +1 -0
- package/dist/icons/RightOutlined.js +50 -0
- package/dist/icons/ShrinkOutlined.d.ts +4 -0
- package/dist/icons/ShrinkOutlined.d.ts.map +1 -0
- package/dist/icons/ShrinkOutlined.js +50 -0
- package/dist/icons/StepBackwardOutlined.d.ts +4 -0
- package/dist/icons/StepBackwardOutlined.d.ts.map +1 -0
- package/dist/icons/StepBackwardOutlined.js +50 -0
- package/dist/icons/StepForwardOutlined.d.ts +4 -0
- package/dist/icons/StepForwardOutlined.d.ts.map +1 -0
- package/dist/icons/StepForwardOutlined.js +50 -0
- package/dist/icons/UpCircleOutlined.d.ts +4 -0
- package/dist/icons/UpCircleOutlined.d.ts.map +1 -0
- package/dist/icons/UpCircleOutlined.js +53 -0
- package/dist/icons/UpOutlined.d.ts +4 -0
- package/dist/icons/UpOutlined.d.ts.map +1 -0
- package/dist/icons/UpOutlined.js +50 -0
- package/dist/icons/index.d.ts +22 -0
- package/dist/icons/index.d.ts.map +1 -0
- package/dist/icons/index.js +123 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +59 -0
- package/dist/kage-icon.min.js +1 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Kage Icon
|
|
2
|
+
|
|
3
|
+
Kage UI 的图标库,提供丰富的 SVG 图标组件。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install kage-icon
|
|
9
|
+
# 或
|
|
10
|
+
yarn add kage-icon
|
|
11
|
+
# 或
|
|
12
|
+
pnpm add kage-icon
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## 使用
|
|
16
|
+
|
|
17
|
+
```tsx
|
|
18
|
+
import { Icon } from 'kage-icon';
|
|
19
|
+
|
|
20
|
+
function App() {
|
|
21
|
+
return <Icon name="home" size={24} color="#1890ff" />;
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## 特性
|
|
26
|
+
|
|
27
|
+
- 🎨 丰富的图标集合
|
|
28
|
+
- 📦 按需加载
|
|
29
|
+
- 💎 TypeScript 支持
|
|
30
|
+
- 🎯 可自定义大小和颜色
|
|
31
|
+
|
|
32
|
+
## 版本
|
|
33
|
+
|
|
34
|
+
当前版本:0.1.0
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
MIT
|
|
39
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ArrowsAltOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/ArrowsAltOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBjD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/ArrowsAltOutlined.tsx
|
|
20
|
+
var ArrowsAltOutlined_exports = {};
|
|
21
|
+
__export(ArrowsAltOutlined_exports, {
|
|
22
|
+
ArrowsAltOutlined: () => ArrowsAltOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(ArrowsAltOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var ArrowsAltOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M855 160.1l-189.2 23.5c-6.6.8-9.3 8.8-4.7 13.5l54.7 54.7-153.5 153.5a8.03 8.03 0 0 0 0 11.3l45.1 45.1c3.1 3.1 8.2 3.1 11.3 0l153.6-153.6 54.7 54.7a7.94 7.94 0 0 0 13.5-4.7L863.9 169a7.9 7.9 0 0 0-8.9-8.9zM416.9 562.7l-45.1-45.1a8.03 8.03 0 0 0-11.3 0L207.1 710.3l-54.7-54.7a7.94 7.94 0 0 0-13.5 4.7L142.1 850c-.6 5.2 3.7 9.5 8.9 8.9l189.2-23.5c6.6-.8 9.3-8.8 4.7-13.5l-54.7-54.7 153.6-153.6c3-3 3-8.1-.1-11.2z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
ArrowsAltOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CaretDownOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/CaretDownOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBjD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/CaretDownOutlined.tsx
|
|
20
|
+
var CaretDownOutlined_exports = {};
|
|
21
|
+
__export(CaretDownOutlined_exports, {
|
|
22
|
+
CaretDownOutlined: () => CaretDownOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(CaretDownOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var CaretDownOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M858.9 335L530.5 715.8c-9.4 10.9-27.5 10.9-37 0L165.1 335c-12.2-14.2-1.2-35 18.5-35h656.8c19.7 0 30.7 20.8 18.5 35z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
CaretDownOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CaretLeftOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/CaretLeftOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBjD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/CaretLeftOutlined.tsx
|
|
20
|
+
var CaretLeftOutlined_exports = {};
|
|
21
|
+
__export(CaretLeftOutlined_exports, {
|
|
22
|
+
CaretLeftOutlined: () => CaretLeftOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(CaretLeftOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var CaretLeftOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M689 165.1L308.2 493.5c-10.9 9.4-10.9 27.5 0 37L689 858.9c14.2 12.2 35 1.2 35-18.5V183.6c0-19.7-20.8-30.7-35-18.5z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
CaretLeftOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CaretRightOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/CaretRightOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBlD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/CaretRightOutlined.tsx
|
|
20
|
+
var CaretRightOutlined_exports = {};
|
|
21
|
+
__export(CaretRightOutlined_exports, {
|
|
22
|
+
CaretRightOutlined: () => CaretRightOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(CaretRightOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var CaretRightOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
CaretRightOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CaretUpOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/CaretUpOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoB/C,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/CaretUpOutlined.tsx
|
|
20
|
+
var CaretUpOutlined_exports = {};
|
|
21
|
+
__export(CaretUpOutlined_exports, {
|
|
22
|
+
CaretUpOutlined: () => CaretUpOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(CaretUpOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var CaretUpOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M858.9 689L530.5 308.2c-9.4-10.9-27.5-10.9-37 0L165.1 689c-12.2 14.2-1.2 35 18.5 35h656.8c19.7 0 30.7-20.8 18.5-35z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
CaretUpOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownCircleOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/DownCircleOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAqBlD,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/DownCircleOutlined.tsx
|
|
20
|
+
var DownCircleOutlined_exports = {};
|
|
21
|
+
__export(DownCircleOutlined_exports, {
|
|
22
|
+
DownCircleOutlined: () => DownCircleOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(DownCircleOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var DownCircleOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M505.5 663.7a7.95 7.95 0 0 0 12.9 0l178-246c3.8-5.3 0-12.7-6.5-12.7H643c-4.6 0-9 2-12.1 5.5L512 564l-118.9-153.5c-3.1-3.5-7.5-5.5-12.1-5.5H347c-6.5 0-10.3 7.4-6.5 12.7l178 246z" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
DownCircleOutlined
|
|
53
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DownOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/DownOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoB5C,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/DownOutlined.tsx
|
|
20
|
+
var DownOutlined_exports = {};
|
|
21
|
+
__export(DownOutlined_exports, {
|
|
22
|
+
DownOutlined: () => DownOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(DownOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var DownOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3-.1-12.7-6.4-12.7z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
DownOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FastBackwardOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/FastBackwardOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBpD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/FastBackwardOutlined.tsx
|
|
20
|
+
var FastBackwardOutlined_exports = {};
|
|
21
|
+
__export(FastBackwardOutlined_exports, {
|
|
22
|
+
FastBackwardOutlined: () => FastBackwardOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(FastBackwardOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var FastBackwardOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M517.6 273.5L230.2 499.3a16.1 16.1 0 0 0 0 25.4l287.4 225.8c10.7 8.4 26.4.8 26.4-12.7V286.2c0-13.5-15.7-21.1-26.4-12.7zm320 0L550.2 499.3a16.1 16.1 0 0 0 0 25.4l287.4 225.8c10.7 8.4 26.4.8 26.4-12.7V286.2c0-13.5-15.7-21.1-26.4-12.7zM140 874h-64a8 8 0 0 1-8-8V158a8 8 0 0 1 8-8h64a8 8 0 0 1 8 8v708a8 8 0 0 1-8 8z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
FastBackwardOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FastForwardOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/FastForwardOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,mBAAmB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoBnD,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/FastForwardOutlined.tsx
|
|
20
|
+
var FastForwardOutlined_exports = {};
|
|
21
|
+
__export(FastForwardOutlined_exports, {
|
|
22
|
+
FastForwardOutlined: () => FastForwardOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(FastForwardOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var FastForwardOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M186.4 273.5L473.8 499.3a16.1 16.1 0 0 1 0 25.4L186.4 750.5c-10.7 8.4-26.4.8-26.4-12.7V286.2c0-13.5 15.7-21.1 26.4-12.7zm320 0L793.8 499.3a16.1 16.1 0 0 1 0 25.4L506.4 750.5c-10.7 8.4-26.4.8-26.4-12.7V286.2c0-13.5 15.7-21.1 26.4-12.7zM884 158h64a8 8 0 0 1 8 8v708a8 8 0 0 1-8 8h-64a8 8 0 0 1-8-8V166a8 8 0 0 1 8-8z" })
|
|
44
|
+
}
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
FastForwardOutlined
|
|
50
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LeftCircleOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/LeftCircleOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAuBlD,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
+
|
|
19
|
+
// src/icons/LeftCircleOutlined.tsx
|
|
20
|
+
var LeftCircleOutlined_exports = {};
|
|
21
|
+
__export(LeftCircleOutlined_exports, {
|
|
22
|
+
LeftCircleOutlined: () => LeftCircleOutlined
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(LeftCircleOutlined_exports);
|
|
25
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
26
|
+
var LeftCircleOutlined = ({
|
|
27
|
+
size = 16,
|
|
28
|
+
color = "currentColor",
|
|
29
|
+
style,
|
|
30
|
+
className,
|
|
31
|
+
onClick
|
|
32
|
+
}) => {
|
|
33
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
|
|
34
|
+
"svg",
|
|
35
|
+
{
|
|
36
|
+
width: size,
|
|
37
|
+
height: size,
|
|
38
|
+
viewBox: "0 0 1024 1024",
|
|
39
|
+
fill: color,
|
|
40
|
+
style,
|
|
41
|
+
className,
|
|
42
|
+
onClick,
|
|
43
|
+
children: [
|
|
44
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" }),
|
|
45
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M663.7 518.5a7.95 7.95 0 0 0-12.9 0l-246 178c-5.3 3.8 0 12.7 6.5 12.7h381c4.6 0 9 2 12.1 5.5L564 512l153.5 118.9c3.1 3.5 7.5 5.5 12.1 5.5h33.8c6.5 0 10.3-7.4 6.5-12.7l-246-178z" })
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
);
|
|
49
|
+
};
|
|
50
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
51
|
+
0 && (module.exports = {
|
|
52
|
+
LeftCircleOutlined
|
|
53
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LeftOutlined.d.ts","sourceRoot":"","sources":["../../src/icons/LeftOutlined.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAErC,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAoB5C,CAAC"}
|