@arco-iconbox/react-hiagent 0.3.14 → 0.3.18
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/cjs/IconCancelingCircleFill/index.d.ts +4 -0
- package/cjs/IconCancelingCircleFill/index.js +70 -0
- package/cjs/IconCircleDownward/index.d.ts +4 -0
- package/cjs/IconCircleDownward/index.js +59 -0
- package/cjs/IconCircleUpward/index.d.ts +4 -0
- package/cjs/IconCircleUpward/index.js +59 -0
- package/cjs/IconEn1/index.d.ts +4 -0
- package/cjs/IconEn1/index.js +59 -0
- package/cjs/IconFan1/index.d.ts +4 -0
- package/cjs/IconFan1/index.js +59 -0
- package/cjs/IconJapanese1/index.d.ts +4 -0
- package/cjs/IconJapanese1/index.js +59 -0
- package/cjs/IconJian1/index.d.ts +4 -0
- package/cjs/IconJian1/index.js +59 -0
- package/cjs/IconLightning/index.d.ts +4 -0
- package/cjs/IconLightning/index.js +59 -0
- package/cjs/IconVllm/index.d.ts +4 -0
- package/cjs/IconVllm/index.js +60 -0
- package/cjs/index.d.ts +9 -0
- package/cjs/index.js +19 -1
- package/dist/icon.min.js +1 -1
- package/esm/IconCancelingCircleFill/index.d.ts +4 -0
- package/esm/IconCancelingCircleFill/index.js +45 -0
- package/esm/IconCircleDownward/index.d.ts +4 -0
- package/esm/IconCircleDownward/index.js +34 -0
- package/esm/IconCircleUpward/index.d.ts +4 -0
- package/esm/IconCircleUpward/index.js +34 -0
- package/esm/IconEn1/index.d.ts +4 -0
- package/esm/IconEn1/index.js +34 -0
- package/esm/IconFan1/index.d.ts +4 -0
- package/esm/IconFan1/index.js +34 -0
- package/esm/IconJapanese1/index.d.ts +4 -0
- package/esm/IconJapanese1/index.js +34 -0
- package/esm/IconJian1/index.d.ts +4 -0
- package/esm/IconJian1/index.js +34 -0
- package/esm/IconLightning/index.d.ts +4 -0
- package/esm/IconLightning/index.js +34 -0
- package/esm/IconVllm/index.d.ts +4 -0
- package/esm/IconVllm/index.js +35 -0
- package/esm/index.d.ts +9 -0
- package/esm/index.js +9 -0
- package/package.json +1 -1
- package/src/IconCancelingCircleFill/index.tsx +15 -0
- package/src/IconCircleDownward/index.tsx +15 -0
- package/src/IconCircleUpward/index.tsx +15 -0
- package/src/IconEn1/index.tsx +15 -0
- package/src/IconFan1/index.tsx +15 -0
- package/src/IconJapanese1/index.tsx +15 -0
- package/src/IconJian1/index.tsx +15 -0
- package/src/IconLightning/index.tsx +15 -0
- package/src/IconVllm/index.tsx +15 -0
- package/src/index.ts +9 -0
- package/umd/IconCancelingCircleFill/index.d.ts +4 -0
- package/umd/IconCancelingCircleFill/index.js +80 -0
- package/umd/IconCircleDownward/index.d.ts +4 -0
- package/umd/IconCircleDownward/index.js +69 -0
- package/umd/IconCircleUpward/index.d.ts +4 -0
- package/umd/IconCircleUpward/index.js +69 -0
- package/umd/IconEn1/index.d.ts +4 -0
- package/umd/IconEn1/index.js +69 -0
- package/umd/IconFan1/index.d.ts +4 -0
- package/umd/IconFan1/index.js +69 -0
- package/umd/IconJapanese1/index.d.ts +4 -0
- package/umd/IconJapanese1/index.js +69 -0
- package/umd/IconJian1/index.d.ts +4 -0
- package/umd/IconJian1/index.js +69 -0
- package/umd/IconLightning/index.d.ts +4 -0
- package/umd/IconLightning/index.js +69 -0
- package/umd/IconVllm/index.d.ts +4 -0
- package/umd/IconVllm/index.js +70 -0
- package/umd/index.d.ts +9 -0
- package/umd/index.js +20 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconLightningComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
|
|
6
|
+
const { prefix: prefixFromContext } = useContext(Context);
|
|
7
|
+
const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = true, spin, ...rest } = props;
|
|
8
|
+
|
|
9
|
+
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
|
+
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-lightning${loadingKls} ${className}`} width={width} height={height} xmlns="http://www.w3.org/2000/svg" fill={useCurrentColor ? 'currentColor' : '#000'} viewBox="0 0 16 16" {...rest} ref={ref}><path d="M12.173.7a.667.667 0 0 1 .524 1.079L9.878 5.367h3.629a.667.667 0 0 1 .49 1.119l-8 8.666a.666.666 0 0 1-1.135-.622L6.31 9.033H2.507a.667.667 0 0 1-.59-.976l3.666-7L5.63.98A.667.667 0 0 1 6.173.7h6Zm-8.565 7h3.565a.667.667 0 0 1 .645.837l-.986 3.744L11.984 6.7H8.507a.667.667 0 0 1-.524-1.079l2.819-3.588H6.576L3.608 7.7Z"/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconLightning = React.forwardRef(IconLightningComponent);
|
|
15
|
+
export default IconLightning;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React, { ForwardedRef, useContext } from 'react';
|
|
2
|
+
import { OriginIconProps } from '../type';
|
|
3
|
+
import { Context } from '../context';
|
|
4
|
+
|
|
5
|
+
function IconVllmComponent(props: OriginIconProps, ref: ForwardedRef<SVGSVGElement>) {
|
|
6
|
+
const { prefix: prefixFromContext } = useContext(Context);
|
|
7
|
+
const { className = '', prefix: prefixFromProps, width = '1em', height = '1em', useCurrentColor = false, spin, ...rest } = props;
|
|
8
|
+
|
|
9
|
+
const prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
10
|
+
const loadingKls = spin ? ` ${prefix}-icon-loading` : '';
|
|
11
|
+
return <svg className={`${prefix}-icon ${prefix}-icon-vllm${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 200 200" fill={useCurrentColor ? 'currentColor' : 'none'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M17.648 51.8949H86.2721V184.589L17.648 51.894V51.8949Z" fill={useCurrentColor ? 'currentColor' : '#FDB515'}/><path d="M120.591 47.316L182.356 15.293L136.603 184.587H86.2729L120.591 47.3051V47.316Z" fill={useCurrentColor ? 'currentColor' : '#30A2FF'}/></svg>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const IconVllm = React.forwardRef(IconVllmComponent);
|
|
15
|
+
export default IconVllm;
|
package/src/index.ts
CHANGED
|
@@ -882,5 +882,14 @@ export { default as IconWorkflowWaiting } from './IconWorkflowWaiting';
|
|
|
882
882
|
export { default as IconEditNew } from './IconEditNew';
|
|
883
883
|
export { default as IconArrangementKnDownload } from './IconArrangementKnDownload';
|
|
884
884
|
export { default as IconIntentType } from './IconIntentType';
|
|
885
|
+
export { default as IconLightning } from './IconLightning';
|
|
886
|
+
export { default as IconFan1 } from './IconFan1';
|
|
887
|
+
export { default as IconJapanese1 } from './IconJapanese1';
|
|
888
|
+
export { default as IconEn1 } from './IconEn1';
|
|
889
|
+
export { default as IconJian1 } from './IconJian1';
|
|
890
|
+
export { default as IconCircleUpward } from './IconCircleUpward';
|
|
891
|
+
export { default as IconCircleDownward } from './IconCircleDownward';
|
|
892
|
+
export { default as IconCancelingCircleFill } from './IconCancelingCircleFill';
|
|
893
|
+
export { default as IconVllm } from './IconVllm';
|
|
885
894
|
|
|
886
895
|
export * from './type';
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconCancelingCircleFillComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? false : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-canceling-circle-fill").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 10 10", fill: useCurrentColor ? 'currentColor' : 'none', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("g", { clipPath: "url(#svg_db6ad13b8d__clip0_3208_23853)", fillRule: "evenodd", clipRule: "evenodd" },
|
|
66
|
+
react_1.default.createElement("path", { d: "M5.75164 2.4279C5.21029 2.26054 4.62729 2.28146 4.08595 2.49067C3.5446 2.69987 3.08653 3.05553 2.77421 3.5367C2.46189 4.01788 2.31614 4.58274 2.33696 5.16852C2.35778 5.7543 2.58681 6.29824 2.9616 6.73758C3.33638 7.17691 3.8361 7.49072 4.39825 7.61625C4.96043 7.74177 5.54343 7.69993 6.06396 7.44888C6.43875 7.28152 6.87599 7.44888 7.04256 7.82545C7.20914 8.20203 7.04256 8.64136 6.66778 8.80873C5.85575 9.16438 4.93961 9.26898 4.06513 9.05978C3.19063 8.85057 2.39942 8.36939 1.81643 7.69993C1.25425 7.03047 0.900286 6.17272 0.837822 5.27313C0.79618 4.37354 1.02521 3.47394 1.50411 2.72079C2.00382 1.96765 2.71174 1.38187 3.56542 1.08898C4.39825 0.775167 5.33521 0.754246 6.18889 1.0053C7.04256 1.25634 7.81295 1.77936 8.33349 2.49067C8.87484 3.22289 9.16634 4.08065 9.16634 5.00116C9.16634 5.41957 8.8332 5.7543 8.41677 5.7543C8.00035 5.7543 7.6672 5.41957 7.6672 5.00116C7.6672 4.41538 7.47981 3.87143 7.14667 3.39026C6.79271 2.93 6.31382 2.59527 5.75164 2.4279Z", fill: useCurrentColor ? 'currentColor' : 'url(#svg_db6ad13b8d__paint0_linear_3208_23853)' }),
|
|
67
|
+
react_1.default.createElement("path", { d: "M5.75164 2.4279C5.21029 2.26054 4.62729 2.28146 4.08595 2.49067C3.5446 2.69987 3.08653 3.05553 2.77421 3.5367C2.46189 4.01788 2.31614 4.58274 2.33696 5.16852C2.35778 5.7543 2.58681 6.29824 2.9616 6.73758C3.33638 7.17691 3.8361 7.49072 4.39825 7.61625C4.96043 7.74177 5.54343 7.69993 6.06396 7.44888C6.43875 7.28152 6.87599 7.44888 7.04256 7.82545C7.20914 8.20203 7.04256 8.64136 6.66778 8.80873C5.85575 9.16438 4.93961 9.26898 4.06513 9.05978C3.19063 8.85057 2.39942 8.36939 1.81643 7.69993C1.25425 7.03047 0.900286 6.17272 0.837822 5.27313C0.79618 4.37354 1.02521 3.47394 1.50411 2.72079C2.00382 1.96765 2.71174 1.38187 3.56542 1.08898C4.39825 0.775167 5.33521 0.754246 6.18889 1.0053C7.04256 1.25634 7.81295 1.77936 8.33349 2.49067C8.87484 3.22289 9.16634 4.08065 9.16634 5.00116C9.16634 5.41957 8.8332 5.7543 8.41677 5.7543C8.00035 5.7543 7.6672 5.41957 7.6672 5.00116C7.6672 4.41538 7.47981 3.87143 7.14667 3.39026C6.79271 2.93 6.31382 2.59527 5.75164 2.4279Z", fill: useCurrentColor ? 'currentColor' : 'url(#svg_db6ad13b8d__paint1_linear_3208_23853)' })),
|
|
68
|
+
react_1.default.createElement("defs", null,
|
|
69
|
+
react_1.default.createElement("linearGradient", { id: "svg_db6ad13b8d__paint0_linear_3208_23853", x1: "5.508", y1: "2.87", x2: "4.458", y2: "6.79", gradientUnits: "userSpaceOnUse" },
|
|
70
|
+
react_1.default.createElement("stop", { stopColor: "#4E5969" }),
|
|
71
|
+
react_1.default.createElement("stop", { offset: "1", stopColor: "#4E5969", stopOpacity: "0" })),
|
|
72
|
+
react_1.default.createElement("linearGradient", { id: "svg_db6ad13b8d__paint1_linear_3208_23853", x1: "-.234", y1: "3.983", x2: "7.837", y2: "5.538", gradientUnits: "userSpaceOnUse" },
|
|
73
|
+
react_1.default.createElement("stop", { stopColor: "#CCCFD4" }),
|
|
74
|
+
react_1.default.createElement("stop", { offset: "1", stopColor: "#CCCFD4", stopOpacity: "0" })),
|
|
75
|
+
react_1.default.createElement("clipPath", { id: "svg_db6ad13b8d__clip0_3208_23853" },
|
|
76
|
+
react_1.default.createElement("path", { fill: useCurrentColor ? 'currentColor' : '#fff', d: "M0 0H10V10H0z" }))));
|
|
77
|
+
}
|
|
78
|
+
var IconCancelingCircleFill = react_1.default.forwardRef(IconCancelingCircleFillComponent);
|
|
79
|
+
exports.default = IconCancelingCircleFill;
|
|
80
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconCircleDownwardComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-circle-downward").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 14 14" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", d: "M7 13.417A6.417 6.417 0 1 0 7 .583a6.417 6.417 0 0 0 0 12.834Zm0-1.167a5.25 5.25 0 1 1 0-10.5 5.25 5.25 0 0 1 0 10.5ZM4.496 6.708l2.333 2.334c.105.105.27.113.385.024l.028-.024 2.333-2.334a.292.292 0 0 0 .024-.385l-.024-.027-.413-.413a.292.292 0 0 0-.385-.024l-.027.024-1.715 1.715-1.714-1.715a.292.292 0 0 0-.385-.024l-.028.024-.412.413a.292.292 0 0 0-.025.385l.025.027 2.333 2.334-2.333-2.334Z", clipRule: "evenodd" }));
|
|
66
|
+
}
|
|
67
|
+
var IconCircleDownward = react_1.default.forwardRef(IconCircleDownwardComponent);
|
|
68
|
+
exports.default = IconCircleDownward;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconCircleUpwardComponent(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-circle-upward").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 14 14" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", d: "M7 .583a6.417 6.417 0 1 0 0 12.834A6.417 6.417 0 0 0 7 .583ZM7 1.75a5.25 5.25 0 1 1 0 10.5 5.25 5.25 0 0 1 0-10.5Zm2.504 5.542L7.171 4.958a.292.292 0 0 0-.385-.024l-.028.024-2.333 2.334a.292.292 0 0 0-.024.385l.024.027.413.413c.105.105.27.113.385.024l.027-.024 1.715-1.715 1.714 1.715c.105.105.27.113.385.024l.028-.024.412-.413a.292.292 0 0 0 .025-.385l-.025-.027-2.333-2.334 2.333 2.334Z", clipRule: "evenodd" }));
|
|
66
|
+
}
|
|
67
|
+
var IconCircleUpward = react_1.default.forwardRef(IconCircleUpwardComponent);
|
|
68
|
+
exports.default = IconCircleUpward;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconEn1Component(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-en_1").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 12 12", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.78474 9.7747V8.15044H1.80234V6.76901H5.53112V5.15015H1.80234V3.84426H5.76316V2.22H0V9.7747H5.78474ZM12 6.29954C12 5.0746 11.1798 4.33532 10.1221 4.33532C9.41521 4.33532 8.88099 4.58894 8.54642 5.14475V4.48101H6.92756V9.7747H8.61657V6.9255C8.61657 6.24018 9.0051 5.9218 9.47457 5.9218C9.998 5.9218 10.311 6.27256 10.311 6.89852V9.7747H12V6.29954Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconEn1 = react_1.default.forwardRef(IconEn1Component);
|
|
68
|
+
exports.default = IconEn1;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconFan1Component(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-fan_1").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 12 12", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M7.45537 0.51169L8.68278 0.815621C8.47237 1.41569 8.19571 1.99238 7.85282 2.5457C7.50992 3.09901 7.13585 3.5588 6.73061 3.92508C6.66047 3.83936 6.56695 3.74194 6.45005 3.63284C6.34095 3.52373 6.22795 3.41463 6.11105 3.30553C5.99415 3.18863 5.88895 3.09511 5.79543 3.02497C6.16171 2.72104 6.48902 2.35087 6.77736 1.91445C7.0735 1.47024 7.2995 1.00266 7.45537 0.51169ZM9.39586 2.01966L10.6817 2.13656C10.5103 2.91587 10.2453 3.58608 9.88682 4.14718C9.53613 4.70829 9.09582 5.18367 8.56589 5.57333C8.03595 5.95519 7.4203 6.27081 6.71892 6.52019C6.67216 6.43447 6.59812 6.32926 6.49681 6.20457C6.40329 6.07209 6.30198 5.9474 6.19288 5.8305C6.09157 5.70581 6.00195 5.6045 5.92402 5.52657C6.89036 5.24601 7.66578 4.82908 8.25027 4.27577C8.84254 3.71467 9.22441 2.96263 9.39586 2.01966ZM7.35016 1.57545H11.3247V2.62752H6.82412L7.35016 1.57545ZM1.98459 0.5L3.14187 0.792242C2.94704 1.21307 2.69766 1.62221 2.39373 2.01966C2.09759 2.40932 1.79756 2.73663 1.49362 3.00159C1.42349 2.93925 1.32607 2.86521 1.20138 2.77949C1.08448 2.69377 0.959794 2.61194 0.827311 2.53401C0.702621 2.45607 0.593518 2.38983 0.5 2.33528C0.811725 2.10928 1.09617 1.83652 1.35335 1.517C1.61831 1.18969 1.82873 0.85069 1.98459 0.5ZM2.01966 1.21307H6.27471V2.07811H1.58714L2.01966 1.21307ZM7.81775 2.39373C8.12168 3.18084 8.58927 3.84715 9.22051 4.39267C9.85955 4.93819 10.6622 5.32005 11.6286 5.53826C11.4961 5.67074 11.348 5.84998 11.1844 6.07598C11.0285 6.29419 10.9077 6.48512 10.822 6.64878C9.78551 6.34485 8.93606 5.85388 8.27364 5.17588C7.61902 4.49008 7.11247 3.64453 6.75398 2.63921L7.81775 2.39373ZM5.2577 9.05685H6.64878V11.5H5.2577V9.05685ZM5.0356 5.88895L6.19288 6.42667C5.86557 6.67605 5.52657 6.91374 5.17588 7.13975C4.83298 7.36575 4.51736 7.55668 4.22901 7.71254L3.36397 7.24495C3.55101 7.12026 3.74584 6.97999 3.94846 6.82412C4.15887 6.66826 4.3576 6.5085 4.54463 6.34485C4.73946 6.18119 4.90312 6.02922 5.0356 5.88895ZM7.33847 6.33316L8.47237 6.97609C8.05154 7.25664 7.59954 7.5333 7.11637 7.80606C6.63319 8.07102 6.15002 8.3282 5.66684 8.57758C5.18367 8.81916 4.72777 9.02568 4.29915 9.19713L3.48087 8.62434C3.9017 8.42951 4.34591 8.20351 4.8135 7.94633C5.28888 7.68137 5.74477 7.40861 6.18119 7.12806C6.6254 6.8475 7.01116 6.58254 7.33847 6.33316ZM1.89107 7.46706L2.83794 6.7423C3.1029 6.85919 3.38735 6.99947 3.69129 7.16312C3.99522 7.32678 4.28746 7.49433 4.56801 7.66578C4.84857 7.82944 5.07846 7.9892 5.2577 8.14506L4.25239 8.95165C4.08874 8.80358 3.87442 8.63992 3.60946 8.46068C3.34449 8.28144 3.06004 8.10609 2.75611 7.93464C2.45997 7.7554 2.17163 7.59954 1.89107 7.46706ZM7.78268 7.95802L8.74123 7.33847C9.04517 7.50213 9.36468 7.68526 9.69979 7.88789C10.0349 8.09051 10.3505 8.30092 10.6467 8.51913C10.9506 8.73734 11.2039 8.94385 11.4065 9.13868L10.3661 9.81668C10.1947 9.63744 9.96475 9.43872 9.67641 9.22051C9.38806 8.99451 9.07634 8.77241 8.74123 8.5542C8.41392 8.3282 8.0944 8.12947 7.78268 7.95802ZM7.39692 10.1206L8.41392 9.41924C8.71006 9.51275 9.02958 9.62965 9.37248 9.76993C9.72317 9.9102 10.0583 10.0544 10.3778 10.2024C10.7051 10.3505 10.9779 10.4908 11.1961 10.6233L10.1206 11.4065C9.92579 11.2818 9.67251 11.1415 9.36079 10.9857C9.05685 10.8298 8.72954 10.6739 8.37885 10.5181C8.03595 10.37 7.70864 10.2375 7.39692 10.1206ZM0.850691 8.47237C1.41959 8.47237 2.05863 8.46847 2.7678 8.46068C3.48477 8.45289 4.24849 8.44509 5.05898 8.4373C5.87726 8.42951 6.71502 8.42171 7.57226 8.41392C8.42951 8.39833 9.27896 8.38275 10.1206 8.36716L10.0622 9.31403C9.24389 9.3452 8.41782 9.37248 7.58395 9.39586C6.75009 9.41923 5.93181 9.44261 5.12912 9.46599C4.33422 9.48937 3.57829 9.50886 2.86132 9.52444C2.14435 9.54003 1.49752 9.55172 0.920829 9.55951L0.850691 8.47237ZM3.35228 9.48937L4.59139 9.98034C4.33422 10.1752 4.03418 10.3622 3.69129 10.5414C3.35618 10.7207 3.00939 10.8843 2.6509 11.0324C2.29242 11.1883 1.94952 11.3208 1.62221 11.4299C1.54428 11.3441 1.44686 11.2428 1.32997 11.1259C1.21307 11.009 1.08838 10.8921 0.955898 10.7752C0.831208 10.6583 0.722104 10.5648 0.628587 10.4947C1.11955 10.3778 1.61442 10.2336 2.11318 10.0622C2.61973 9.88293 3.03277 9.69199 3.35228 9.48937ZM1.56376 2.46387H2.63921C2.58466 2.86132 2.52232 3.28215 2.45218 3.72635C2.38204 4.16277 2.3119 4.5875 2.24176 5.00053C2.17163 5.40577 2.10538 5.76426 2.04304 6.07598L0.955898 5.97078C1.03383 5.65905 1.10786 5.30446 1.178 4.90701C1.25593 4.50177 1.32607 4.08874 1.38842 3.66791C1.45855 3.23928 1.517 2.83794 1.56376 2.46387ZM3.2237 2.75611H4.14718C4.1238 3.02108 4.09263 3.30163 4.05367 3.59777C4.02249 3.88611 3.98742 4.16667 3.94846 4.43943C3.91729 4.71219 3.88222 4.95377 3.84325 5.16419L2.90808 5.1525C2.94704 4.94208 2.98601 4.7005 3.02497 4.42774C3.07173 4.15498 3.1107 3.87442 3.14187 3.58608C3.17304 3.28994 3.20032 3.01328 3.2237 2.75611ZM1.93783 2.46387H5.22264V3.17694H1.93783V2.46387ZM0.651966 3.62115H6.45005V4.3576H0.651966V3.62115ZM1.66897 4.82519H6.46174V5.56164H1.66897V4.82519ZM4.86026 2.46387H5.87726C5.87726 2.46387 5.87336 2.51452 5.86557 2.61583C5.86557 2.71714 5.86167 2.80287 5.85388 2.87301C5.80712 3.61335 5.75647 4.21732 5.70191 4.68491C5.64736 5.1447 5.58502 5.49929 5.51488 5.74867C5.44474 5.99805 5.36291 6.17729 5.26939 6.2864C5.17588 6.3955 5.07067 6.47733 4.95377 6.53188C4.84467 6.57864 4.71608 6.60981 4.56801 6.6254C4.45112 6.6254 4.29915 6.6293 4.11211 6.63709C3.92508 6.63709 3.72635 6.63319 3.51594 6.6254C3.50815 6.50071 3.48087 6.36043 3.43411 6.20457C3.39515 6.04091 3.34059 5.90843 3.27046 5.80712C3.45749 5.82271 3.62115 5.8344 3.76142 5.84219C3.90949 5.84219 4.02249 5.84219 4.10043 5.84219C4.17836 5.84219 4.2407 5.8344 4.28746 5.81881C4.33422 5.80322 4.38098 5.76815 4.42774 5.7136C4.49008 5.64346 4.54463 5.49929 4.59139 5.28108C4.64594 5.06288 4.6966 4.73946 4.74336 4.31084C4.79012 3.88222 4.82908 3.31722 4.86026 2.61583V2.46387Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconFan1 = react_1.default.forwardRef(IconFan1Component);
|
|
68
|
+
exports.default = IconFan1;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconJapanese1Component(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-japanese_1").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 12 12", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M7.50348 11.9973C7.58533 11.5665 7.63002 10.986 7.65154 10.5161C8.15522 10.6684 11.622 7.65552 8.76226 6.44311L8.73656 6.43193C8.19433 7.36052 7.38335 8.40811 6.19357 9.26881C6.3338 9.55094 6.49949 9.81968 6.68859 10.0717C6.06646 10.5645 5.50691 10.8989 5.42952 10.9606C5.415 10.9606 5.17056 10.6449 4.88813 10.0485C4.51201 10.2308 4.12382 10.3871 3.72628 10.5161C1.52327 11.2324 0.758663 7.65217 1.06009 6.88729C1.2928 6.29728 2.1331 5.25472 4.05816 4.80691C4.08972 4.46721 4.13526 4.11634 4.20119 3.75233C3.06001 3.79647 1.84844 3.65791 0.689941 3.18468C0.928692 2.74879 1.15103 2.30412 1.35649 1.85158C1.35649 1.85158 2.41358 2.3508 4.58977 2.15832C4.81804 1.41983 5.09867 0.698566 5.42952 0L6.76262 0.592238C6.76262 0.592238 6.53131 1.09788 6.26871 1.90103C7.03849 1.73489 7.79705 1.52047 8.53989 1.25907C8.95474 1.95969 9.50284 2.36979 9.50284 2.36979C9.50284 2.36979 7.93006 3.1939 5.81699 3.57299C5.74421 3.91369 5.68411 4.25698 5.63681 4.60214C6.33325 4.57309 7.12411 4.61108 8.02168 4.73958C8.35356 4.41385 8.3178 3.85123 8.3178 3.85123L9.72493 4.07304C9.72493 4.07304 9.63749 4.47224 9.39724 5.07761C9.82075 5.23963 11.0184 5.8179 11.2801 7.40577C11.5734 9.18361 9.26594 12.1484 7.5032 11.9973H7.50348ZM2.24792 7.63652C2.20238 8.01282 2.49934 9.26574 2.9885 9.26574C3.47765 9.26574 4.0995 8.89531 4.0995 8.89531C4.0995 8.89531 3.82908 7.50914 3.80338 6.52552C2.9885 6.71744 2.29373 7.25995 2.24792 7.63624V7.63652ZM7.08779 6.26041C6.87771 6.15788 5.38455 6.26041 5.38455 6.26041C5.23984 6.58809 5.60664 7.96365 5.60664 7.96365C5.60664 7.96365 7.29759 6.36293 7.08779 6.26041Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconJapanese1 = react_1.default.forwardRef(IconJapanese1Component);
|
|
68
|
+
exports.default = IconJapanese1;
|
|
69
|
+
});
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
15
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
16
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
17
|
+
}
|
|
18
|
+
Object.defineProperty(o, k2, desc);
|
|
19
|
+
}) : (function(o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
o[k2] = m[k];
|
|
22
|
+
}));
|
|
23
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
24
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
25
|
+
}) : function(o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
36
|
+
var t = {};
|
|
37
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
38
|
+
t[p] = s[p];
|
|
39
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
40
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
41
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
42
|
+
t[p[i]] = s[p[i]];
|
|
43
|
+
}
|
|
44
|
+
return t;
|
|
45
|
+
};
|
|
46
|
+
(function (factory) {
|
|
47
|
+
if (typeof module === "object" && typeof module.exports === "object") {
|
|
48
|
+
var v = factory(require, exports);
|
|
49
|
+
if (v !== undefined) module.exports = v;
|
|
50
|
+
}
|
|
51
|
+
else if (typeof define === "function" && define.amd) {
|
|
52
|
+
define(["require", "exports", "react", "../context"], factory);
|
|
53
|
+
}
|
|
54
|
+
})(function (require, exports) {
|
|
55
|
+
"use strict";
|
|
56
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
57
|
+
var react_1 = __importStar(require("react"));
|
|
58
|
+
var context_1 = require("../context");
|
|
59
|
+
function IconJian1Component(props, ref) {
|
|
60
|
+
var prefixFromContext = (0, react_1.useContext)(context_1.Context).prefix;
|
|
61
|
+
var _a = props.className, className = _a === void 0 ? '' : _a, prefixFromProps = props.prefix, _b = props.width, width = _b === void 0 ? '1em' : _b, _c = props.height, height = _c === void 0 ? '1em' : _c, _d = props.useCurrentColor, useCurrentColor = _d === void 0 ? true : _d, spin = props.spin, rest = __rest(props, ["className", "prefix", "width", "height", "useCurrentColor", "spin"]);
|
|
62
|
+
var prefix = prefixFromProps || prefixFromContext || 'hiagent';
|
|
63
|
+
var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
|
|
64
|
+
return react_1.default.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-jian_1").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 12 12", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
|
|
65
|
+
react_1.default.createElement("path", { d: "M2.41097 1.45551H6.10152V2.59746H2.41097V1.45551ZM7.03312 1.46716H11.5V2.59746H7.03312V1.46716ZM2.38708 0.5L3.72476 0.849577C3.56551 1.24576 3.37441 1.63807 3.15147 2.02648C2.92852 2.4149 2.68965 2.78001 2.43485 3.12182C2.18802 3.45586 1.93322 3.74718 1.67047 3.99576C1.58288 3.91808 1.46743 3.83263 1.3241 3.73941C1.18874 3.64619 1.04542 3.55297 0.894137 3.45975C0.742852 3.36653 0.611473 3.29661 0.5 3.25C0.898118 2.91596 1.26041 2.50424 1.58686 2.01483C1.92128 1.52542 2.18802 1.02048 2.38708 0.5ZM7.2481 0.534958L8.59772 0.837924C8.42255 1.41278 8.18368 1.96822 7.88111 2.50424C7.57854 3.04025 7.26004 3.48694 6.92562 3.84428C6.846 3.7666 6.73453 3.68114 6.5912 3.58792C6.44788 3.4947 6.30058 3.40148 6.14929 3.30826C6.00597 3.21504 5.87857 3.14513 5.7671 3.09852C6.09356 2.78778 6.38816 2.40325 6.65092 1.94492C6.91368 1.48658 7.11274 1.0166 7.2481 0.534958ZM3.06786 2.3411L4.21444 1.89831C4.38961 2.13912 4.5608 2.41102 4.72801 2.71398C4.90318 3.00918 5.03058 3.26942 5.11021 3.4947L3.88002 3.99576C3.81632 3.77825 3.70485 3.51412 3.5456 3.20339C3.38636 2.88489 3.22711 2.59746 3.06786 2.3411ZM8.1797 2.29449L9.33822 1.79343C9.53728 2.04202 9.74032 2.32168 9.94734 2.63242C10.1544 2.94315 10.3096 3.21504 10.4131 3.44809L9.18295 4.00742C9.10333 3.77436 8.96399 3.49859 8.76493 3.18008C8.56587 2.85381 8.37079 2.55862 8.1797 2.29449ZM4.48914 7.58475H7.74973V8.5286H4.48914V7.58475ZM1.19273 5.27754H2.59012V11.5H1.19273V5.27754ZM4.38165 4.05403H10.5326V5.2892H4.38165V4.05403ZM1.81379 4.31038L2.85288 3.62288C3.09971 3.81709 3.35052 4.05014 3.60532 4.32203C3.86012 4.58616 4.05519 4.81921 4.19055 5.02119L3.06786 5.79025C2.95639 5.58051 2.77723 5.33581 2.5304 5.05614C2.29153 4.77648 2.05266 4.5279 1.81379 4.31038ZM9.67264 4.05403H11.082V10.0318C11.082 10.3658 11.0382 10.6222 10.9506 10.8008C10.871 10.9795 10.7157 11.1194 10.4848 11.2203C10.2619 11.3058 9.98317 11.3602 9.64875 11.3835C9.32229 11.4068 8.93612 11.4145 8.49023 11.4068C8.45838 11.2359 8.40264 11.0378 8.32302 10.8125C8.24339 10.5872 8.15979 10.3891 8.0722 10.2182C8.24738 10.226 8.42653 10.2338 8.60966 10.2415C8.80076 10.2493 8.97195 10.2532 9.12324 10.2532C9.27452 10.2454 9.37803 10.2415 9.43377 10.2415C9.52932 10.2415 9.59301 10.226 9.62486 10.1949C9.65671 10.1638 9.67264 10.1095 9.67264 10.0318V4.05403ZM5.13409 6.99047V9.15784H7.16449V6.99047H5.13409ZM3.9278 5.96504H8.43051V10.1833H3.9278V5.96504Z" }));
|
|
66
|
+
}
|
|
67
|
+
var IconJian1 = react_1.default.forwardRef(IconJian1Component);
|
|
68
|
+
exports.default = IconJian1;
|
|
69
|
+
});
|