@arco-iconbox/react-hiagent 0.2.62 → 0.2.64

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.
Files changed (58) hide show
  1. package/cjs/IconMermaidCopy/index.d.ts +4 -0
  2. package/cjs/IconMermaidCopy/index.js +60 -0
  3. package/cjs/IconMermaidDownload/index.d.ts +4 -0
  4. package/cjs/IconMermaidDownload/index.js +59 -0
  5. package/cjs/IconMermaidFull/index.d.ts +4 -0
  6. package/cjs/IconMermaidFull/index.js +59 -0
  7. package/cjs/IconMermaidMagnify/index.d.ts +4 -0
  8. package/cjs/IconMermaidMagnify/index.js +59 -0
  9. package/cjs/IconMermaidScale/index.d.ts +4 -0
  10. package/cjs/IconMermaidScale/index.js +59 -0
  11. package/cjs/IconMermaidShrink/index.d.ts +4 -0
  12. package/cjs/IconMermaidShrink/index.js +59 -0
  13. package/cjs/IconSafeTag/index.d.ts +4 -0
  14. package/cjs/IconSafeTag/index.js +59 -0
  15. package/cjs/index.d.ts +7 -0
  16. package/cjs/index.js +15 -1
  17. package/dist/icon.min.js +1 -1
  18. package/esm/IconMermaidCopy/index.d.ts +4 -0
  19. package/esm/IconMermaidCopy/index.js +35 -0
  20. package/esm/IconMermaidDownload/index.d.ts +4 -0
  21. package/esm/IconMermaidDownload/index.js +34 -0
  22. package/esm/IconMermaidFull/index.d.ts +4 -0
  23. package/esm/IconMermaidFull/index.js +34 -0
  24. package/esm/IconMermaidMagnify/index.d.ts +4 -0
  25. package/esm/IconMermaidMagnify/index.js +34 -0
  26. package/esm/IconMermaidScale/index.d.ts +4 -0
  27. package/esm/IconMermaidScale/index.js +34 -0
  28. package/esm/IconMermaidShrink/index.d.ts +4 -0
  29. package/esm/IconMermaidShrink/index.js +34 -0
  30. package/esm/IconSafeTag/index.d.ts +4 -0
  31. package/esm/IconSafeTag/index.js +34 -0
  32. package/esm/index.d.ts +7 -0
  33. package/esm/index.js +7 -0
  34. package/package.json +1 -1
  35. package/src/IconMermaidCopy/index.tsx +15 -0
  36. package/src/IconMermaidDownload/index.tsx +15 -0
  37. package/src/IconMermaidFull/index.tsx +15 -0
  38. package/src/IconMermaidMagnify/index.tsx +15 -0
  39. package/src/IconMermaidScale/index.tsx +15 -0
  40. package/src/IconMermaidShrink/index.tsx +15 -0
  41. package/src/IconSafeTag/index.tsx +15 -0
  42. package/src/index.ts +7 -0
  43. package/umd/IconMermaidCopy/index.d.ts +4 -0
  44. package/umd/IconMermaidCopy/index.js +70 -0
  45. package/umd/IconMermaidDownload/index.d.ts +4 -0
  46. package/umd/IconMermaidDownload/index.js +69 -0
  47. package/umd/IconMermaidFull/index.d.ts +4 -0
  48. package/umd/IconMermaidFull/index.js +69 -0
  49. package/umd/IconMermaidMagnify/index.d.ts +4 -0
  50. package/umd/IconMermaidMagnify/index.js +69 -0
  51. package/umd/IconMermaidScale/index.d.ts +4 -0
  52. package/umd/IconMermaidScale/index.js +69 -0
  53. package/umd/IconMermaidShrink/index.d.ts +4 -0
  54. package/umd/IconMermaidShrink/index.js +69 -0
  55. package/umd/IconSafeTag/index.d.ts +4 -0
  56. package/umd/IconSafeTag/index.js +69 -0
  57. package/umd/index.d.ts +7 -0
  58. package/umd/index.js +16 -2
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidCopy: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidCopy;
@@ -0,0 +1,35 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidCopyComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-copy").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "M10.4 4.4a.6.6 0 0 1 .6.6v8.467c0 .294-.25.533-.56.533H3.16a.547.547 0 0 1-.56-.533V4.933c0-.294.25-.533.56-.533h7.24Zm-.6 1.2h-6v7.2h6V5.6Zm3-3.6a.6.6 0 0 1 .6.6v7.5a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V3.2H6.5a.3.3 0 0 1-.3-.3v-.6a.3.3 0 0 1 .3-.3h6.3Z", clipRule: "evenodd" }),
32
+ React.createElement("path", { d: "M9.8 5.6h.05v-.05H9.8v.05Zm-6 0v-.05h-.05v.05h.05Zm0 7.2h-.05v.05h.05v-.05Zm6 0v.05h.05v-.05H9.8Zm2.4-9.6h.05v-.05h-.05v.05Zm-1.8 1.2v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65v.05Zm.6.6h-.05v8.467h.1V5H11Zm0 8.467h-.05a.497.497 0 0 1-.51.483v.1c.335 0 .61-.259.61-.583H11Zm-.56.533v-.05H3.16v.1h7.28V14Zm-7.28 0v-.05a.497.497 0 0 1-.51-.483h-.1c0 .324.275.583.61.583V14Zm-.56-.533h.05V4.933h-.1v8.534h.05Zm0-8.534h.05c0-.264.226-.483.51-.483v-.1a.597.597 0 0 0-.61.583h.05Zm.56-.533v.05h7.24v-.1H3.16v.05ZM9.8 5.6v-.05h-6v.1h6V5.6Zm-6 0h-.05v7.2h.1V5.6H3.8Zm0 7.2v.05h6v-.1h-6v.05Zm6 0h.05V5.6h-.1v7.2h.05Zm3-10.8v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65V2Zm.6.6h-.05v7.5h.1V2.6h-.05Zm0 7.5h-.05a.25.25 0 0 1-.25.25v.1a.35.35 0 0 0 .35-.35h-.05Zm-.3.3v-.05h-.6v.1h.6v-.05Zm-.6 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35v-.05Zm-.3-.3h.05V3.2h-.1v6.9h.05Zm0-6.9v-.05H6.5v.1h5.7V3.2Zm-5.7 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35V3.2Zm-.3-.3h.05v-.6h-.1v.6h.05Zm0-.6h.05a.25.25 0 0 1 .25-.25v-.1a.35.35 0 0 0-.35.35h.05Zm.3-.3v.05h6.3v-.1H6.5V2Z" }));
33
+ }
34
+ var IconMermaidCopy = React.forwardRef(IconMermaidCopyComponent);
35
+ export default IconMermaidCopy;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidDownload: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidDownload;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidDownloadComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-download").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M3.553 10.814a.27.27 0 0 1 .27.27v1.492h8.448v-1.491a.27.27 0 0 1 .272-.271h.881l.055.006a.27.27 0 0 1 .216.265v2.204l-.003.072a.712.712 0 0 1-.709.639h-9.87a.712.712 0 0 1-.713-.711v-2.204a.27.27 0 0 1 .271-.271h.882ZM8.488 2l.055.005a.271.271 0 0 1 .216.266v5.692l.29-.288 1.595-1.596a.272.272 0 0 1 .384 0l.623.624a.271.271 0 0 1 0 .384l-3.305 3.305a.271.271 0 0 1-.383 0L4.657 7.087a.271.271 0 0 1 0-.384l.623-.624a.272.272 0 0 1 .385 0l1.67 1.672V2.27c0-.15.122-.27.271-.271h.882Z" }));
32
+ }
33
+ var IconMermaidDownload = React.forwardRef(IconMermaidDownloadComponent);
34
+ export default IconMermaidDownload;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidFull: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidFull;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidFullComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-full").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M2.9 9.95a.35.35 0 0 1 .35.35v2.45H5.7a.35.35 0 0 1 .35.35v.6a.35.35 0 0 1-.35.35H2.6a.65.65 0 0 1-.65-.65v-3.1a.35.35 0 0 1 .35-.35h.6Zm10.8 0a.35.35 0 0 1 .35.35v3.1a.65.65 0 0 1-.65.65h-3.1a.35.35 0 0 1-.35-.35v-.6a.35.35 0 0 1 .35-.35h2.45V10.3a.35.35 0 0 1 .35-.35h.6ZM10.95 5.4a.9.9 0 0 1 .9.9v3.4a.9.9 0 0 1-.9.9h-5.9a.9.9 0 0 1-.9-.9V6.3a.9.9 0 0 1 .9-.9h5.9Zm-5.6 4h5.3V6.6h-5.3v2.8Zm.35-7.45a.35.35 0 0 1 .35.35v.6a.35.35 0 0 1-.35.35H3.25V5.7a.35.35 0 0 1-.35.35h-.6a.35.35 0 0 1-.35-.35V2.6c0-.36.29-.65.65-.65h3.1Zm7.7 0c.36 0 .65.29.65.65v3.1a.35.35 0 0 1-.35.35h-.6a.35.35 0 0 1-.35-.35V3.25H10.3a.35.35 0 0 1-.35-.35v-.6a.35.35 0 0 1 .35-.35h3.1Z" }));
32
+ }
33
+ var IconMermaidFull = React.forwardRef(IconMermaidFullComponent);
34
+ export default IconMermaidFull;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidMagnify: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidMagnify;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidMagnifyComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-magnify").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M7.505 1.45a6.056 6.056 0 0 1 6.055 6.055c0 1.428-.496 2.74-1.324 3.776l2.088 2.088a.3.3 0 0 1 0 .424l-.531.53a.3.3 0 0 1-.424 0l-2.088-2.087A6.056 6.056 0 1 1 7.505 1.45Zm0 1.35a4.706 4.706 0 1 0 0 9.41 4.706 4.706 0 0 0 0-9.41Zm.68 4.03h1.108a.3.3 0 0 1 .3.3v.75a.3.3 0 0 1-.3.3H8.184v1.108a.3.3 0 0 1-.3.3h-.75a.3.3 0 0 1-.3-.3V8.179H5.728a.3.3 0 0 1-.3-.3v-.75a.3.3 0 0 1 .3-.3h1.108V5.723a.3.3 0 0 1 .3-.3h.75a.3.3 0 0 1 .3.3V6.83Z" }));
32
+ }
33
+ var IconMermaidMagnify = React.forwardRef(IconMermaidMagnifyComponent);
34
+ export default IconMermaidMagnify;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidScale: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidScale;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidScaleComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-scale").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { fillRule: "evenodd", d: "m8.966 8.495-.47.472a.333.333 0 0 0 0 .471l3.228 3.228H9.75c-.149 0-.203.016-.257.045a.303.303 0 0 0-.126.126c-.029.055-.045.108-.045.257v.479c0 .148.016.202.045.256a.303.303 0 0 0 .126.127c.054.029.108.044.257.044h3.572a.667.667 0 0 0 .667-.667V9.761c0-.149-.015-.203-.044-.257a.302.302 0 0 0-.126-.126c-.055-.03-.109-.045-.257-.045h-.479c-.148 0-.202.016-.257.045a.303.303 0 0 0-.126.126c-.029.054-.044.108-.044.257v1.953l-3.22-3.219a.333.333 0 0 0-.47 0ZM2.666 2A.667.667 0 0 0 2 2.667v3.666c0 .184.15.334.333.334H3c.184 0 .333-.15.333-.334v-2L6.52 7.519c.13.13.341.13.471 0l.472-.472a.333.333 0 0 0 0-.471L4.219 3.333h2.114A.334.334 0 0 0 6.667 3v-.667A.333.333 0 0 0 6.333 2H2.667Z", clipRule: "evenodd" }));
32
+ }
33
+ var IconMermaidScale = React.forwardRef(IconMermaidScaleComponent);
34
+ export default IconMermaidScale;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidShrink: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidShrink;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconMermaidShrinkComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-mermaid-shrink").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M7.505 1.45a6.056 6.056 0 0 1 6.055 6.055c0 1.428-.496 2.74-1.324 3.776l2.088 2.088a.3.3 0 0 1 0 .424l-.531.53a.3.3 0 0 1-.424 0l-2.088-2.087A6.056 6.056 0 1 1 7.505 1.45Zm0 1.35a4.706 4.706 0 1 0 0 9.41 4.706 4.706 0 0 0 0-9.41Zm2.088 5.08a.3.3 0 0 1-.3.3H5.727a.3.3 0 0 1-.3-.3v-.75a.3.3 0 0 1 .3-.3h3.566a.3.3 0 0 1 .3.3v.75Z" }));
32
+ }
33
+ var IconMermaidShrink = React.forwardRef(IconMermaidShrinkComponent);
34
+ export default IconMermaidShrink;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconSafeTag: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconSafeTag;
@@ -0,0 +1,34 @@
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 __rest = (this && this.__rest) || function (s, e) {
13
+ var t = {};
14
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
15
+ t[p] = s[p];
16
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
17
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
18
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
19
+ t[p[i]] = s[p[i]];
20
+ }
21
+ return t;
22
+ };
23
+ import React, { useContext } from 'react';
24
+ import { Context } from '../context';
25
+ function IconSafeTagComponent(props, ref) {
26
+ var prefixFromContext = useContext(Context).prefix;
27
+ 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"]);
28
+ var prefix = prefixFromProps || prefixFromContext || 'hiagent';
29
+ var loadingKls = spin ? " ".concat(prefix, "-icon-loading") : '';
30
+ return React.createElement("svg", __assign({ className: "".concat(prefix, "-icon ").concat(prefix, "-icon-safe_tag").concat(loadingKls, " ").concat(className), width: width, height: height, viewBox: "0 0 16 16", fill: useCurrentColor ? 'currentColor' : '#000', xmlns: "http://www.w3.org/2000/svg" }, rest, { ref: ref }),
31
+ React.createElement("path", { d: "M7.7334 1.00841C7.89707 0.936654 8.08334 0.936769 8.24707 1.00841L13.7295 3.40782C13.9625 3.50981 14.1133 3.74039 14.1133 3.99474C14.1131 4.73937 14.1123 6.24064 14.1123 6.49767C14.1122 9.15429 13.2337 10.8911 12.0879 12.3004C11.0498 13.5773 9.58899 14.5471 8.16211 15.0172C8.05011 15.0541 7.93041 15.0559 7.81836 15.0191C7.24785 14.8317 5.36882 14.1054 3.89355 12.2838C2.42576 10.4709 1.88871 8.70836 1.88867 6.36876C1.88867 6.05329 1.88824 5.55681 1.8877 5.04649C1.88731 4.68266 1.88694 4.31158 1.88672 3.99376C1.88657 3.73977 2.03697 3.50994 2.26953 3.40782L7.7334 1.00841ZM10.3828 5.89708C10.2579 5.7725 10.0556 5.77243 9.93066 5.89708L7.36719 8.46056L6.06934 7.1627C5.9444 7.03785 5.74218 7.03794 5.61719 7.1627L5.15137 7.62755C5.02642 7.75252 5.02645 7.95568 5.15137 8.08067L7.14062 10.0699C7.19881 10.1281 7.27444 10.1587 7.35059 10.1627C7.43795 10.1673 7.52697 10.1366 7.59375 10.0699L10.8486 6.81505C10.9733 6.69016 10.9732 6.48785 10.8486 6.3629L10.3828 5.89708Z" }));
32
+ }
33
+ var IconSafeTag = React.forwardRef(IconSafeTagComponent);
34
+ export default IconSafeTag;
package/esm/index.d.ts CHANGED
@@ -807,4 +807,11 @@ export { default as IconAdministratorLine } from './IconAdministratorLine';
807
807
  export { default as IconUserLine } from './IconUserLine';
808
808
  export { default as IconEvalOffline } from './IconEvalOffline';
809
809
  export { default as IconEvalOnline } from './IconEvalOnline';
810
+ export { default as IconSafeTag } from './IconSafeTag';
811
+ export { default as IconMermaidFull } from './IconMermaidFull';
812
+ export { default as IconMermaidDownload } from './IconMermaidDownload';
813
+ export { default as IconMermaidMagnify } from './IconMermaidMagnify';
814
+ export { default as IconMermaidShrink } from './IconMermaidShrink';
815
+ export { default as IconMermaidCopy } from './IconMermaidCopy';
816
+ export { default as IconMermaidScale } from './IconMermaidScale';
810
817
  export * from './type';
package/esm/index.js CHANGED
@@ -807,4 +807,11 @@ export { default as IconAdministratorLine } from './IconAdministratorLine';
807
807
  export { default as IconUserLine } from './IconUserLine';
808
808
  export { default as IconEvalOffline } from './IconEvalOffline';
809
809
  export { default as IconEvalOnline } from './IconEvalOnline';
810
+ export { default as IconSafeTag } from './IconSafeTag';
811
+ export { default as IconMermaidFull } from './IconMermaidFull';
812
+ export { default as IconMermaidDownload } from './IconMermaidDownload';
813
+ export { default as IconMermaidMagnify } from './IconMermaidMagnify';
814
+ export { default as IconMermaidShrink } from './IconMermaidShrink';
815
+ export { default as IconMermaidCopy } from './IconMermaidCopy';
816
+ export { default as IconMermaidScale } from './IconMermaidScale';
810
817
  export * from './type';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/react-hiagent",
3
- "version": "0.2.62",
3
+ "version": "0.2.64",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "license": "ISC",
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidCopyComponent(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-mermaid-copy${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 fillRule="evenodd" d="M10.4 4.4a.6.6 0 0 1 .6.6v8.467c0 .294-.25.533-.56.533H3.16a.547.547 0 0 1-.56-.533V4.933c0-.294.25-.533.56-.533h7.24Zm-.6 1.2h-6v7.2h6V5.6Zm3-3.6a.6.6 0 0 1 .6.6v7.5a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V3.2H6.5a.3.3 0 0 1-.3-.3v-.6a.3.3 0 0 1 .3-.3h6.3Z" clipRule="evenodd"/><path d="M9.8 5.6h.05v-.05H9.8v.05Zm-6 0v-.05h-.05v.05h.05Zm0 7.2h-.05v.05h.05v-.05Zm6 0v.05h.05v-.05H9.8Zm2.4-9.6h.05v-.05h-.05v.05Zm-1.8 1.2v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65v.05Zm.6.6h-.05v8.467h.1V5H11Zm0 8.467h-.05a.497.497 0 0 1-.51.483v.1c.335 0 .61-.259.61-.583H11Zm-.56.533v-.05H3.16v.1h7.28V14Zm-7.28 0v-.05a.497.497 0 0 1-.51-.483h-.1c0 .324.275.583.61.583V14Zm-.56-.533h.05V4.933h-.1v8.534h.05Zm0-8.534h.05c0-.264.226-.483.51-.483v-.1a.597.597 0 0 0-.61.583h.05Zm.56-.533v.05h7.24v-.1H3.16v.05ZM9.8 5.6v-.05h-6v.1h6V5.6Zm-6 0h-.05v7.2h.1V5.6H3.8Zm0 7.2v.05h6v-.1h-6v.05Zm6 0h.05V5.6h-.1v7.2h.05Zm3-10.8v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65V2Zm.6.6h-.05v7.5h.1V2.6h-.05Zm0 7.5h-.05a.25.25 0 0 1-.25.25v.1a.35.35 0 0 0 .35-.35h-.05Zm-.3.3v-.05h-.6v.1h.6v-.05Zm-.6 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35v-.05Zm-.3-.3h.05V3.2h-.1v6.9h.05Zm0-6.9v-.05H6.5v.1h5.7V3.2Zm-5.7 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35V3.2Zm-.3-.3h.05v-.6h-.1v.6h.05Zm0-.6h.05a.25.25 0 0 1 .25-.25v-.1a.35.35 0 0 0-.35.35h.05Zm.3-.3v.05h6.3v-.1H6.5V2Z"/></svg>;
12
+ }
13
+
14
+ const IconMermaidCopy = React.forwardRef(IconMermaidCopyComponent);
15
+ export default IconMermaidCopy;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidDownloadComponent(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-mermaid-download${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="M3.553 10.814a.27.27 0 0 1 .27.27v1.492h8.448v-1.491a.27.27 0 0 1 .272-.271h.881l.055.006a.27.27 0 0 1 .216.265v2.204l-.003.072a.712.712 0 0 1-.709.639h-9.87a.712.712 0 0 1-.713-.711v-2.204a.27.27 0 0 1 .271-.271h.882ZM8.488 2l.055.005a.271.271 0 0 1 .216.266v5.692l.29-.288 1.595-1.596a.272.272 0 0 1 .384 0l.623.624a.271.271 0 0 1 0 .384l-3.305 3.305a.271.271 0 0 1-.383 0L4.657 7.087a.271.271 0 0 1 0-.384l.623-.624a.272.272 0 0 1 .385 0l1.67 1.672V2.27c0-.15.122-.27.271-.271h.882Z"/></svg>;
12
+ }
13
+
14
+ const IconMermaidDownload = React.forwardRef(IconMermaidDownloadComponent);
15
+ export default IconMermaidDownload;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidFullComponent(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-mermaid-full${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="M2.9 9.95a.35.35 0 0 1 .35.35v2.45H5.7a.35.35 0 0 1 .35.35v.6a.35.35 0 0 1-.35.35H2.6a.65.65 0 0 1-.65-.65v-3.1a.35.35 0 0 1 .35-.35h.6Zm10.8 0a.35.35 0 0 1 .35.35v3.1a.65.65 0 0 1-.65.65h-3.1a.35.35 0 0 1-.35-.35v-.6a.35.35 0 0 1 .35-.35h2.45V10.3a.35.35 0 0 1 .35-.35h.6ZM10.95 5.4a.9.9 0 0 1 .9.9v3.4a.9.9 0 0 1-.9.9h-5.9a.9.9 0 0 1-.9-.9V6.3a.9.9 0 0 1 .9-.9h5.9Zm-5.6 4h5.3V6.6h-5.3v2.8Zm.35-7.45a.35.35 0 0 1 .35.35v.6a.35.35 0 0 1-.35.35H3.25V5.7a.35.35 0 0 1-.35.35h-.6a.35.35 0 0 1-.35-.35V2.6c0-.36.29-.65.65-.65h3.1Zm7.7 0c.36 0 .65.29.65.65v3.1a.35.35 0 0 1-.35.35h-.6a.35.35 0 0 1-.35-.35V3.25H10.3a.35.35 0 0 1-.35-.35v-.6a.35.35 0 0 1 .35-.35h3.1Z"/></svg>;
12
+ }
13
+
14
+ const IconMermaidFull = React.forwardRef(IconMermaidFullComponent);
15
+ export default IconMermaidFull;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidMagnifyComponent(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-mermaid-magnify${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="M7.505 1.45a6.056 6.056 0 0 1 6.055 6.055c0 1.428-.496 2.74-1.324 3.776l2.088 2.088a.3.3 0 0 1 0 .424l-.531.53a.3.3 0 0 1-.424 0l-2.088-2.087A6.056 6.056 0 1 1 7.505 1.45Zm0 1.35a4.706 4.706 0 1 0 0 9.41 4.706 4.706 0 0 0 0-9.41Zm.68 4.03h1.108a.3.3 0 0 1 .3.3v.75a.3.3 0 0 1-.3.3H8.184v1.108a.3.3 0 0 1-.3.3h-.75a.3.3 0 0 1-.3-.3V8.179H5.728a.3.3 0 0 1-.3-.3v-.75a.3.3 0 0 1 .3-.3h1.108V5.723a.3.3 0 0 1 .3-.3h.75a.3.3 0 0 1 .3.3V6.83Z"/></svg>;
12
+ }
13
+
14
+ const IconMermaidMagnify = React.forwardRef(IconMermaidMagnifyComponent);
15
+ export default IconMermaidMagnify;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidScaleComponent(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-mermaid-scale${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 fillRule="evenodd" d="m8.966 8.495-.47.472a.333.333 0 0 0 0 .471l3.228 3.228H9.75c-.149 0-.203.016-.257.045a.303.303 0 0 0-.126.126c-.029.055-.045.108-.045.257v.479c0 .148.016.202.045.256a.303.303 0 0 0 .126.127c.054.029.108.044.257.044h3.572a.667.667 0 0 0 .667-.667V9.761c0-.149-.015-.203-.044-.257a.302.302 0 0 0-.126-.126c-.055-.03-.109-.045-.257-.045h-.479c-.148 0-.202.016-.257.045a.303.303 0 0 0-.126.126c-.029.054-.044.108-.044.257v1.953l-3.22-3.219a.333.333 0 0 0-.47 0ZM2.666 2A.667.667 0 0 0 2 2.667v3.666c0 .184.15.334.333.334H3c.184 0 .333-.15.333-.334v-2L6.52 7.519c.13.13.341.13.471 0l.472-.472a.333.333 0 0 0 0-.471L4.219 3.333h2.114A.334.334 0 0 0 6.667 3v-.667A.333.333 0 0 0 6.333 2H2.667Z" clipRule="evenodd"/></svg>;
12
+ }
13
+
14
+ const IconMermaidScale = React.forwardRef(IconMermaidScaleComponent);
15
+ export default IconMermaidScale;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconMermaidShrinkComponent(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-mermaid-shrink${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="M7.505 1.45a6.056 6.056 0 0 1 6.055 6.055c0 1.428-.496 2.74-1.324 3.776l2.088 2.088a.3.3 0 0 1 0 .424l-.531.53a.3.3 0 0 1-.424 0l-2.088-2.087A6.056 6.056 0 1 1 7.505 1.45Zm0 1.35a4.706 4.706 0 1 0 0 9.41 4.706 4.706 0 0 0 0-9.41Zm2.088 5.08a.3.3 0 0 1-.3.3H5.727a.3.3 0 0 1-.3-.3v-.75a.3.3 0 0 1 .3-.3h3.566a.3.3 0 0 1 .3.3v.75Z"/></svg>;
12
+ }
13
+
14
+ const IconMermaidShrink = React.forwardRef(IconMermaidShrinkComponent);
15
+ export default IconMermaidShrink;
@@ -0,0 +1,15 @@
1
+ import React, { ForwardedRef, useContext } from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ import { Context } from '../context';
4
+
5
+ function IconSafeTagComponent(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-safe_tag${loadingKls} ${className}`} width={width} height={height} viewBox="0 0 16 16" fill={useCurrentColor ? 'currentColor' : '#000'} xmlns="http://www.w3.org/2000/svg" {...rest} ref={ref}><path d="M7.7334 1.00841C7.89707 0.936654 8.08334 0.936769 8.24707 1.00841L13.7295 3.40782C13.9625 3.50981 14.1133 3.74039 14.1133 3.99474C14.1131 4.73937 14.1123 6.24064 14.1123 6.49767C14.1122 9.15429 13.2337 10.8911 12.0879 12.3004C11.0498 13.5773 9.58899 14.5471 8.16211 15.0172C8.05011 15.0541 7.93041 15.0559 7.81836 15.0191C7.24785 14.8317 5.36882 14.1054 3.89355 12.2838C2.42576 10.4709 1.88871 8.70836 1.88867 6.36876C1.88867 6.05329 1.88824 5.55681 1.8877 5.04649C1.88731 4.68266 1.88694 4.31158 1.88672 3.99376C1.88657 3.73977 2.03697 3.50994 2.26953 3.40782L7.7334 1.00841ZM10.3828 5.89708C10.2579 5.7725 10.0556 5.77243 9.93066 5.89708L7.36719 8.46056L6.06934 7.1627C5.9444 7.03785 5.74218 7.03794 5.61719 7.1627L5.15137 7.62755C5.02642 7.75252 5.02645 7.95568 5.15137 8.08067L7.14062 10.0699C7.19881 10.1281 7.27444 10.1587 7.35059 10.1627C7.43795 10.1673 7.52697 10.1366 7.59375 10.0699L10.8486 6.81505C10.9733 6.69016 10.9732 6.48785 10.8486 6.3629L10.3828 5.89708Z"/></svg>;
12
+ }
13
+
14
+ const IconSafeTag = React.forwardRef(IconSafeTagComponent);
15
+ export default IconSafeTag;
package/src/index.ts CHANGED
@@ -807,5 +807,12 @@ export { default as IconAdministratorLine } from './IconAdministratorLine';
807
807
  export { default as IconUserLine } from './IconUserLine';
808
808
  export { default as IconEvalOffline } from './IconEvalOffline';
809
809
  export { default as IconEvalOnline } from './IconEvalOnline';
810
+ export { default as IconSafeTag } from './IconSafeTag';
811
+ export { default as IconMermaidFull } from './IconMermaidFull';
812
+ export { default as IconMermaidDownload } from './IconMermaidDownload';
813
+ export { default as IconMermaidMagnify } from './IconMermaidMagnify';
814
+ export { default as IconMermaidShrink } from './IconMermaidShrink';
815
+ export { default as IconMermaidCopy } from './IconMermaidCopy';
816
+ export { default as IconMermaidScale } from './IconMermaidScale';
810
817
 
811
818
  export * from './type';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidCopy: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidCopy;
@@ -0,0 +1,70 @@
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 IconMermaidCopyComponent(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-mermaid-copy").concat(loadingKls, " ").concat(className), width: width, height: height, xmlns: "http://www.w3.org/2000/svg", fill: useCurrentColor ? 'currentColor' : '#000', viewBox: "0 0 16 16" }, rest, { ref: ref }),
65
+ react_1.default.createElement("path", { fillRule: "evenodd", d: "M10.4 4.4a.6.6 0 0 1 .6.6v8.467c0 .294-.25.533-.56.533H3.16a.547.547 0 0 1-.56-.533V4.933c0-.294.25-.533.56-.533h7.24Zm-.6 1.2h-6v7.2h6V5.6Zm3-3.6a.6.6 0 0 1 .6.6v7.5a.3.3 0 0 1-.3.3h-.6a.3.3 0 0 1-.3-.3V3.2H6.5a.3.3 0 0 1-.3-.3v-.6a.3.3 0 0 1 .3-.3h6.3Z", clipRule: "evenodd" }),
66
+ react_1.default.createElement("path", { d: "M9.8 5.6h.05v-.05H9.8v.05Zm-6 0v-.05h-.05v.05h.05Zm0 7.2h-.05v.05h.05v-.05Zm6 0v.05h.05v-.05H9.8Zm2.4-9.6h.05v-.05h-.05v.05Zm-1.8 1.2v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65v.05Zm.6.6h-.05v8.467h.1V5H11Zm0 8.467h-.05a.497.497 0 0 1-.51.483v.1c.335 0 .61-.259.61-.583H11Zm-.56.533v-.05H3.16v.1h7.28V14Zm-7.28 0v-.05a.497.497 0 0 1-.51-.483h-.1c0 .324.275.583.61.583V14Zm-.56-.533h.05V4.933h-.1v8.534h.05Zm0-8.534h.05c0-.264.226-.483.51-.483v-.1a.597.597 0 0 0-.61.583h.05Zm.56-.533v.05h7.24v-.1H3.16v.05ZM9.8 5.6v-.05h-6v.1h6V5.6Zm-6 0h-.05v7.2h.1V5.6H3.8Zm0 7.2v.05h6v-.1h-6v.05Zm6 0h.05V5.6h-.1v7.2h.05Zm3-10.8v.05a.55.55 0 0 1 .55.55h.1a.65.65 0 0 0-.65-.65V2Zm.6.6h-.05v7.5h.1V2.6h-.05Zm0 7.5h-.05a.25.25 0 0 1-.25.25v.1a.35.35 0 0 0 .35-.35h-.05Zm-.3.3v-.05h-.6v.1h.6v-.05Zm-.6 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35v-.05Zm-.3-.3h.05V3.2h-.1v6.9h.05Zm0-6.9v-.05H6.5v.1h5.7V3.2Zm-5.7 0v-.05a.25.25 0 0 1-.25-.25h-.1c0 .193.157.35.35.35V3.2Zm-.3-.3h.05v-.6h-.1v.6h.05Zm0-.6h.05a.25.25 0 0 1 .25-.25v-.1a.35.35 0 0 0-.35.35h.05Zm.3-.3v.05h6.3v-.1H6.5V2Z" }));
67
+ }
68
+ var IconMermaidCopy = react_1.default.forwardRef(IconMermaidCopyComponent);
69
+ exports.default = IconMermaidCopy;
70
+ });
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { OriginIconProps } from '../type';
3
+ declare const IconMermaidDownload: React.ForwardRefExoticComponent<Omit<OriginIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default IconMermaidDownload;