a-icons 1.1.8 → 1.1.9

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 (37) hide show
  1. package/es/TreeFilled.d.ts +7 -0
  2. package/es/TreeFilled.js +38 -0
  3. package/es/TreeOutlined.d.ts +7 -0
  4. package/es/{ForkFilled.js → TreeOutlined.js} +5 -6
  5. package/es/index.d.ts +2 -2
  6. package/es/index.js +2 -2
  7. package/lib/TreeFilled.d.ts +7 -0
  8. package/lib/{ForkOutlined.js → TreeFilled.js} +13 -15
  9. package/lib/TreeOutlined.d.ts +7 -0
  10. package/lib/{ForkFilled.js → TreeOutlined.js} +5 -6
  11. package/lib/index.d.ts +2 -2
  12. package/lib/index.js +17 -17
  13. package/package.json +2 -2
  14. package/src/TreeFilled.tsx +23 -0
  15. package/src/TreeOutlined.tsx +22 -0
  16. package/src/index.tsx +2 -2
  17. package/svgs/filled/refresh-filled.svg +1 -1
  18. package/svgs/filled/retry-refresh-filled.svg +4 -2
  19. package/svgs/filled/rounded-rectangle-clock-filled.svg +3 -1
  20. package/svgs/filled/tree-filled.svg +18 -0
  21. package/svgs/outlined/tree-outlined.svg +17 -0
  22. package/tmpAllSvgs/refresh-filled.svg +1 -1
  23. package/tmpAllSvgs/retry-refresh-filled.svg +4 -2
  24. package/tmpAllSvgs/rounded-rectangle-clock-filled.svg +3 -1
  25. package/tmpAllSvgs/tree-filled.svg +18 -0
  26. package/tmpAllSvgs/tree-outlined.svg +17 -0
  27. package/es/ForkFilled.d.ts +0 -7
  28. package/es/ForkOutlined.d.ts +0 -7
  29. package/es/ForkOutlined.js +0 -40
  30. package/lib/ForkFilled.d.ts +0 -7
  31. package/lib/ForkOutlined.d.ts +0 -7
  32. package/src/ForkFilled.tsx +0 -22
  33. package/src/ForkOutlined.tsx +0 -28
  34. package/svgs/filled/fork-filled.svg +0 -17
  35. package/svgs/outlined/fork-outlined.svg +0 -18
  36. package/tmpAllSvgs/fork-filled.svg +0 -17
  37. package/tmpAllSvgs/fork-outlined.svg +0 -18
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function TreeFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace TreeFilled {
5
+ var displayName: string;
6
+ }
7
+ export default TreeFilled;
@@ -0,0 +1,38 @@
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) {
6
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
+ }
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ import * as React from 'react';
14
+ import Icon from 'a-base-icon/lib/icon';
15
+ function TreeFilled(componentProps) {
16
+ var IconNode = function IconNode(props) {
17
+ return /*#__PURE__*/React.createElement("svg", __assign({
18
+ viewBox: "0 0 24 24",
19
+ xmlns: "http://www.w3.org/2000/svg"
20
+ }, props), /*#__PURE__*/React.createElement("rect", {
21
+ width: "100%",
22
+ height: "100%",
23
+ rx: 12,
24
+ fill: "inherit"
25
+ }), /*#__PURE__*/React.createElement("path", {
26
+ d: "M17.285 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 7.895a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 19.322a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM5.858 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214z",
27
+ fill: "currentColor"
28
+ }), /*#__PURE__*/React.createElement("path", {
29
+ d: "M16.57 12.538a.54.54 0 00.537-.536.54.54 0 00-.536-.536h-5.179V8.431c0-1.129.479-1.608 1.607-1.608h3.572a.54.54 0 00.536-.535.54.54 0 00-.536-.536h-3.572c-1.728 0-2.678.95-2.678 2.679v3.035H6.57a.54.54 0 00-.536.536.54.54 0 00.536.536h3.75v3.035c0 1.729.95 2.679 2.678 2.679h3.572a.54.54 0 00.536-.536.54.54 0 00-.536-.536h-3.572c-1.128 0-1.607-.478-1.607-1.607v-3.035h5.179z",
30
+ fill: "currentColor"
31
+ }));
32
+ };
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+ TreeFilled.displayName = 'TreeFilled';
38
+ export default TreeFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function TreeOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace TreeOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default TreeOutlined;
@@ -12,17 +12,16 @@ var __assign = this && this.__assign || function () {
12
12
  };
13
13
  import * as React from 'react';
14
14
  import Icon from 'a-base-icon/lib/icon';
15
- function ForkFilled(componentProps) {
15
+ function TreeOutlined(componentProps) {
16
16
  var IconNode = function IconNode(props) {
17
17
  return /*#__PURE__*/React.createElement("svg", __assign({
18
18
  viewBox: "0 0 24 24",
19
- fill: "none",
20
19
  xmlns: "http://www.w3.org/2000/svg"
21
20
  }, props), /*#__PURE__*/React.createElement("path", {
22
- d: "M19.333 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124zM19.333 6.73a2.062 2.062 0 100-4.126 2.062 2.062 0 000 4.125zM19.333 21.396a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.125zM4.667 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124z",
21
+ d: "M18.666 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 7.21a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 20.541a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM5.334 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75z",
23
22
  fill: "currentColor"
24
23
  }), /*#__PURE__*/React.createElement("path", {
25
- d: "M18.417 12.688a.692.692 0 00.687-.688.693.693 0 00-.687-.688H11.77V7.418c0-1.449.614-2.063 2.062-2.063h4.584a.693.693 0 00.687-.687.693.693 0 00-.687-.688h-4.584c-2.218 0-3.437 1.22-3.437 3.438v3.896H5.583a.693.693 0 00-.687.687c0 .376.312.688.687.688h4.813v3.895c0 2.219 1.219 3.438 3.437 3.438h4.584a.693.693 0 00.687-.688.692.692 0 00-.687-.687h-4.584c-1.448 0-2.062-.614-2.062-2.063v-3.895h6.646z",
24
+ d: "M17.832 12.627a.63.63 0 00.625-.626.63.63 0 00-.625-.624h-6.041V7.835c0-1.317.558-1.875 1.875-1.875h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-2.017 0-3.125 1.108-3.125 3.125v3.542H6.166a.63.63 0 00-.625.624.63.63 0 00.625.626h4.375v3.541c0 2.017 1.108 3.125 3.125 3.125h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-1.317 0-1.875-.558-1.875-1.875v-3.541h6.041z",
26
25
  fill: "currentColor"
27
26
  }));
28
27
  };
@@ -30,5 +29,5 @@ function ForkFilled(componentProps) {
30
29
  component: IconNode
31
30
  }));
32
31
  }
33
- ForkFilled.displayName = 'ForkFilled';
34
- export default ForkFilled;
32
+ TreeOutlined.displayName = 'TreeOutlined';
33
+ export default TreeOutlined;
package/es/index.d.ts CHANGED
@@ -84,8 +84,6 @@ export { default as FilterFilled } from './FilterFilled';
84
84
  export { default as FilterOutlined } from './FilterOutlined';
85
85
  export { default as FireFilled } from './FireFilled';
86
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
- export { default as ForkFilled } from './ForkFilled';
88
- export { default as ForkOutlined } from './ForkOutlined';
89
87
  export { default as FormOutlined } from './FormOutlined';
90
88
  export { default as FunnelFilled } from './FunnelFilled';
91
89
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -190,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
190
188
  export { default as TmdLogo } from './TmdLogo';
191
189
  export { default as TrashCanFilled } from './TrashCanFilled';
192
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
193
193
  export { default as UnlockFilled } from './UnlockFilled';
194
194
  export { default as UpFilled } from './UpFilled';
195
195
  export { default as UpOutlined } from './UpOutlined';
package/es/index.js CHANGED
@@ -84,8 +84,6 @@ export { default as FilterFilled } from './FilterFilled';
84
84
  export { default as FilterOutlined } from './FilterOutlined';
85
85
  export { default as FireFilled } from './FireFilled';
86
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
- export { default as ForkFilled } from './ForkFilled';
88
- export { default as ForkOutlined } from './ForkOutlined';
89
87
  export { default as FormOutlined } from './FormOutlined';
90
88
  export { default as FunnelFilled } from './FunnelFilled';
91
89
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -190,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
190
188
  export { default as TmdLogo } from './TmdLogo';
191
189
  export { default as TrashCanFilled } from './TrashCanFilled';
192
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
193
193
  export { default as UnlockFilled } from './UnlockFilled';
194
194
  export { default as UpFilled } from './UpFilled';
195
195
  export { default as UpOutlined } from './UpOutlined';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function TreeFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace TreeFilled {
5
+ var displayName: string;
6
+ }
7
+ export default TreeFilled;
@@ -55,29 +55,27 @@ Object.defineProperty(exports, "__esModule", {
55
55
  });
56
56
  var React = __importStar(require("react"));
57
57
  var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
- function ForkOutlined(componentProps) {
58
+ function TreeFilled(componentProps) {
59
59
  var IconNode = function IconNode(props) {
60
60
  return React.createElement("svg", __assign({
61
61
  viewBox: "0 0 24 24",
62
- fill: "none",
63
62
  xmlns: "http://www.w3.org/2000/svg"
64
- }, props), React.createElement("path", {
65
- d: "M19.333 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM19.333 6.5a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM19.333 21.167a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM4.667 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM6.5 12h11",
66
- stroke: "currentColor",
67
- strokeWidth: 1.5,
68
- strokeLinecap: "round",
69
- strokeLinejoin: "round"
63
+ }, props), React.createElement("rect", {
64
+ width: "100%",
65
+ height: "100%",
66
+ rx: 12,
67
+ fill: "inherit"
70
68
  }), React.createElement("path", {
71
- d: "M17.5 4.667h-3.667c-1.833 0-2.75.916-2.75 2.75v9.166c0 1.834.917 2.75 2.75 2.75H17.5",
72
- stroke: "currentColor",
73
- strokeWidth: 1.5,
74
- strokeLinecap: "round",
75
- strokeLinejoin: "round"
69
+ d: "M17.285 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 7.895a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 19.322a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM5.858 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214z",
70
+ fill: "currentColor"
71
+ }), React.createElement("path", {
72
+ d: "M16.57 12.538a.54.54 0 00.537-.536.54.54 0 00-.536-.536h-5.179V8.431c0-1.129.479-1.608 1.607-1.608h3.572a.54.54 0 00.536-.535.54.54 0 00-.536-.536h-3.572c-1.728 0-2.678.95-2.678 2.679v3.035H6.57a.54.54 0 00-.536.536.54.54 0 00.536.536h3.75v3.035c0 1.729.95 2.679 2.678 2.679h3.572a.54.54 0 00.536-.536.54.54 0 00-.536-.536h-3.572c-1.128 0-1.607-.478-1.607-1.607v-3.035h5.179z",
73
+ fill: "currentColor"
76
74
  }));
77
75
  };
78
76
  return React.createElement(icon_1["default"], __assign({}, componentProps, {
79
77
  component: IconNode
80
78
  }));
81
79
  }
82
- ForkOutlined.displayName = 'ForkOutlined';
83
- exports["default"] = ForkOutlined;
80
+ TreeFilled.displayName = 'TreeFilled';
81
+ exports["default"] = TreeFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function TreeOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace TreeOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default TreeOutlined;
@@ -55,17 +55,16 @@ Object.defineProperty(exports, "__esModule", {
55
55
  });
56
56
  var React = __importStar(require("react"));
57
57
  var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
- function ForkFilled(componentProps) {
58
+ function TreeOutlined(componentProps) {
59
59
  var IconNode = function IconNode(props) {
60
60
  return React.createElement("svg", __assign({
61
61
  viewBox: "0 0 24 24",
62
- fill: "none",
63
62
  xmlns: "http://www.w3.org/2000/svg"
64
63
  }, props), React.createElement("path", {
65
- d: "M19.333 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124zM19.333 6.73a2.062 2.062 0 100-4.126 2.062 2.062 0 000 4.125zM19.333 21.396a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.125zM4.667 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124z",
64
+ d: "M18.666 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 7.21a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 20.541a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM5.334 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75z",
66
65
  fill: "currentColor"
67
66
  }), React.createElement("path", {
68
- d: "M18.417 12.688a.692.692 0 00.687-.688.693.693 0 00-.687-.688H11.77V7.418c0-1.449.614-2.063 2.062-2.063h4.584a.693.693 0 00.687-.687.693.693 0 00-.687-.688h-4.584c-2.218 0-3.437 1.22-3.437 3.438v3.896H5.583a.693.693 0 00-.687.687c0 .376.312.688.687.688h4.813v3.895c0 2.219 1.219 3.438 3.437 3.438h4.584a.693.693 0 00.687-.688.692.692 0 00-.687-.687h-4.584c-1.448 0-2.062-.614-2.062-2.063v-3.895h6.646z",
67
+ d: "M17.832 12.627a.63.63 0 00.625-.626.63.63 0 00-.625-.624h-6.041V7.835c0-1.317.558-1.875 1.875-1.875h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-2.017 0-3.125 1.108-3.125 3.125v3.542H6.166a.63.63 0 00-.625.624.63.63 0 00.625.626h4.375v3.541c0 2.017 1.108 3.125 3.125 3.125h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-1.317 0-1.875-.558-1.875-1.875v-3.541h6.041z",
69
68
  fill: "currentColor"
70
69
  }));
71
70
  };
@@ -73,5 +72,5 @@ function ForkFilled(componentProps) {
73
72
  component: IconNode
74
73
  }));
75
74
  }
76
- ForkFilled.displayName = 'ForkFilled';
77
- exports["default"] = ForkFilled;
75
+ TreeOutlined.displayName = 'TreeOutlined';
76
+ exports["default"] = TreeOutlined;
package/lib/index.d.ts CHANGED
@@ -84,8 +84,6 @@ export { default as FilterFilled } from './FilterFilled';
84
84
  export { default as FilterOutlined } from './FilterOutlined';
85
85
  export { default as FireFilled } from './FireFilled';
86
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
- export { default as ForkFilled } from './ForkFilled';
88
- export { default as ForkOutlined } from './ForkOutlined';
89
87
  export { default as FormOutlined } from './FormOutlined';
90
88
  export { default as FunnelFilled } from './FunnelFilled';
91
89
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -190,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
190
188
  export { default as TmdLogo } from './TmdLogo';
191
189
  export { default as TrashCanFilled } from './TrashCanFilled';
192
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
193
193
  export { default as UnlockFilled } from './UnlockFilled';
194
194
  export { default as UpFilled } from './UpFilled';
195
195
  export { default as UpOutlined } from './UpOutlined';
package/lib/index.js CHANGED
@@ -9,9 +9,9 @@ Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
11
11
  exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddFilled = exports.ImpassabilityFilled = void 0;
12
- exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.ForkOutlined = exports.ForkFilled = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.CoinOverlapLockFilled = void 0;
13
- exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = void 0;
14
- exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = void 0;
12
+ exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.CoinOverlapLockFilled = void 0;
13
+ exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.KeyFilled = void 0;
14
+ exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TreeOutlined = exports.TreeFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.ReceiptOutlined = exports.ReceiptFilled = void 0;
15
15
  exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = void 0;
16
16
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
17
17
  Object.defineProperty(exports, "ImpassabilityFilled", {
@@ -615,20 +615,6 @@ Object.defineProperty(exports, "FolderAddOutlined", {
615
615
  return __importDefault(FolderAddOutlined_1)["default"];
616
616
  }
617
617
  });
618
- var ForkFilled_1 = require("./ForkFilled");
619
- Object.defineProperty(exports, "ForkFilled", {
620
- enumerable: true,
621
- get: function get() {
622
- return __importDefault(ForkFilled_1)["default"];
623
- }
624
- });
625
- var ForkOutlined_1 = require("./ForkOutlined");
626
- Object.defineProperty(exports, "ForkOutlined", {
627
- enumerable: true,
628
- get: function get() {
629
- return __importDefault(ForkOutlined_1)["default"];
630
- }
631
- });
632
618
  var FormOutlined_1 = require("./FormOutlined");
633
619
  Object.defineProperty(exports, "FormOutlined", {
634
620
  enumerable: true,
@@ -1357,6 +1343,20 @@ Object.defineProperty(exports, "TrashOutlined", {
1357
1343
  return __importDefault(TrashOutlined_1)["default"];
1358
1344
  }
1359
1345
  });
1346
+ var TreeFilled_1 = require("./TreeFilled");
1347
+ Object.defineProperty(exports, "TreeFilled", {
1348
+ enumerable: true,
1349
+ get: function get() {
1350
+ return __importDefault(TreeFilled_1)["default"];
1351
+ }
1352
+ });
1353
+ var TreeOutlined_1 = require("./TreeOutlined");
1354
+ Object.defineProperty(exports, "TreeOutlined", {
1355
+ enumerable: true,
1356
+ get: function get() {
1357
+ return __importDefault(TreeOutlined_1)["default"];
1358
+ }
1359
+ });
1360
1360
  var UnlockFilled_1 = require("./UnlockFilled");
1361
1361
  Object.defineProperty(exports, "UnlockFilled", {
1362
1362
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "repository": "git@github.com:SPOTEC-LTD/assui.git",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -22,5 +22,5 @@
22
22
  "peerDependencies": {
23
23
  "assui": "^2.0.2"
24
24
  },
25
- "gitHead": "0356d455d5c4508fcbb20357b08b0baafce6dc67"
25
+ "gitHead": "4a0e8485fb1b83c3a005c092235b683b05d85563"
26
26
  }
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function TreeFilled(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <rect width="100%" height="100%" rx={12} fill="inherit" />
8
+ <path
9
+ d="M17.285 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 7.895a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM17.285 19.322a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214zM5.858 13.608a1.607 1.607 0 100-3.214 1.607 1.607 0 000 3.214z"
10
+ fill="currentColor"
11
+ />
12
+ <path
13
+ d="M16.57 12.538a.54.54 0 00.537-.536.54.54 0 00-.536-.536h-5.179V8.431c0-1.129.479-1.608 1.607-1.608h3.572a.54.54 0 00.536-.535.54.54 0 00-.536-.536h-3.572c-1.728 0-2.678.95-2.678 2.679v3.035H6.57a.54.54 0 00-.536.536.54.54 0 00.536.536h3.75v3.035c0 1.729.95 2.679 2.678 2.679h3.572a.54.54 0 00.536-.536.54.54 0 00-.536-.536h-3.572c-1.128 0-1.607-.478-1.607-1.607v-3.035h5.179z"
14
+ fill="currentColor"
15
+ />
16
+ </svg>
17
+ );
18
+
19
+ return <Icon {...componentProps} component={IconNode} />;
20
+ }
21
+
22
+ TreeFilled.displayName = 'TreeFilled';
23
+ export default TreeFilled;
@@ -0,0 +1,22 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function TreeOutlined(componentProps: IconProps) {
5
+ const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
7
+ <path
8
+ d="M18.666 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 7.21a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM18.666 20.541a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75zM5.334 13.875a1.875 1.875 0 100-3.75 1.875 1.875 0 000 3.75z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M17.832 12.627a.63.63 0 00.625-.626.63.63 0 00-.625-.624h-6.041V7.835c0-1.317.558-1.875 1.875-1.875h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-2.017 0-3.125 1.108-3.125 3.125v3.542H6.166a.63.63 0 00-.625.624.63.63 0 00.625.626h4.375v3.541c0 2.017 1.108 3.125 3.125 3.125h4.166a.63.63 0 00.625-.625.63.63 0 00-.625-.625h-4.166c-1.317 0-1.875-.558-1.875-1.875v-3.541h6.041z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ return <Icon {...componentProps} component={IconNode} />;
19
+ }
20
+
21
+ TreeOutlined.displayName = 'TreeOutlined';
22
+ export default TreeOutlined;
package/src/index.tsx CHANGED
@@ -84,8 +84,6 @@ export { default as FilterFilled } from './FilterFilled';
84
84
  export { default as FilterOutlined } from './FilterOutlined';
85
85
  export { default as FireFilled } from './FireFilled';
86
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
- export { default as ForkFilled } from './ForkFilled';
88
- export { default as ForkOutlined } from './ForkOutlined';
89
87
  export { default as FormOutlined } from './FormOutlined';
90
88
  export { default as FunnelFilled } from './FunnelFilled';
91
89
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -190,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
190
188
  export { default as TmdLogo } from './TmdLogo';
191
189
  export { default as TrashCanFilled } from './TrashCanFilled';
192
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
193
193
  export { default as UnlockFilled } from './UnlockFilled';
194
194
  export { default as UpFilled } from './UpFilled';
195
195
  export { default as UpOutlined } from './UpOutlined';
@@ -2,4 +2,4 @@
2
2
  <path fill-rule="evenodd" clip-rule="evenodd"
3
3
  d="M7.56 2H16.44C19.5107 2 22 4.4893 22 7.56V16.44C22 19.5107 19.5107 22 16.44 22H7.56C4.4893 22 2 19.5107 2 16.44V7.56C2 4.4893 4.4893 2 7.56 2ZM5.70855 15.2052C6.72266 17.7946 9.21908 19.4988 12 19.5C15.4889 19.4774 18.3874 16.8034 18.6907 13.3277C18.9939 9.85198 16.6022 6.71644 13.17 6.09L13.33 5.92C13.6558 5.59691 13.6581 5.07085 13.335 4.745C13.0119 4.41915 12.4858 4.41691 12.16 4.74L10.67 6.22C10.5099 6.37453 10.4195 6.58749 10.4195 6.81C10.4195 7.03251 10.5099 7.24547 10.67 7.4L12.16 8.89C12.3151 9.04194 12.5229 9.12795 12.74 9.13C12.9599 9.12746 13.1707 9.0417 13.33 8.89C13.5909 8.62096 13.6361 8.20931 13.44 7.89C15.6704 8.5557 17.1711 10.6421 17.0928 12.9683C17.0145 15.2946 15.3769 17.2754 13.1068 17.7896C10.8368 18.3039 8.50547 17.2222 7.43232 15.1567C6.35917 13.0913 6.81424 10.5619 8.54 9C8.87689 8.68796 8.89704 8.16189 8.585 7.825C8.27296 7.48811 7.74689 7.46796 7.41 7.78C5.36956 9.66948 4.69443 12.6157 5.70855 15.2052Z"
4
4
  fill="currentColor" />
5
- </svg>
5
+ </svg>
@@ -1,3 +1,5 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.004 3H15.996C18.7596 3 21 5.24037 21 8.004V15.996C21 18.7596 18.7596 21 15.996 21H8.004C5.24037 21 3 18.7596 3 15.996V8.004C3 5.24037 5.24037 3 8.004 3ZM6.3376 14.8846C7.2503 17.2151 9.49708 18.7489 11.9999 18.75C15.1399 18.7297 17.7486 16.3231 18.0215 13.1949C18.2944 10.0668 16.1419 7.2448 13.0529 6.681L13.1969 6.528C13.4902 6.23723 13.4922 5.76377 13.2014 5.4705C12.9106 5.17724 12.4372 5.17523 12.1439 5.466L10.8029 6.798C10.6588 6.93708 10.5774 7.12874 10.5774 7.329C10.5774 7.52926 10.6588 7.72093 10.8029 7.86L12.1439 9.201C12.2835 9.33775 12.4705 9.41516 12.6659 9.417C12.8638 9.41471 13.0536 9.33754 13.1969 9.201C13.4317 8.95887 13.4724 8.58838 13.2959 8.301C15.3032 8.90013 16.6539 10.7779 16.5834 12.8715C16.5129 14.9652 15.0391 16.7478 12.9961 17.2107C10.953 17.6735 8.85483 16.7 7.88899 14.8411C6.92316 12.9822 7.33273 10.7057 8.88591 9.3C9.18911 9.01917 9.20724 8.54571 8.92641 8.2425C8.64557 7.9393 8.17211 7.92117 7.86891 8.202C6.03251 9.90253 5.4249 12.5542 6.3376 14.8846Z" fill="currentColor" />
3
- </svg>
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M8.004 3H15.996C18.7596 3 21 5.24037 21 8.004V15.996C21 18.7596 18.7596 21 15.996 21H8.004C5.24037 21 3 18.7596 3 15.996V8.004C3 5.24037 5.24037 3 8.004 3ZM6.3376 14.8846C7.2503 17.2151 9.49708 18.7489 11.9999 18.75C15.1399 18.7297 17.7486 16.3231 18.0215 13.1949C18.2944 10.0668 16.1419 7.2448 13.0529 6.681L13.1969 6.528C13.4902 6.23723 13.4922 5.76377 13.2014 5.4705C12.9106 5.17724 12.4372 5.17523 12.1439 5.466L10.8029 6.798C10.6588 6.93708 10.5774 7.12874 10.5774 7.329C10.5774 7.52926 10.6588 7.72093 10.8029 7.86L12.1439 9.201C12.2835 9.33775 12.4705 9.41516 12.6659 9.417C12.8638 9.41471 13.0536 9.33754 13.1969 9.201C13.4317 8.95887 13.4724 8.58838 13.2959 8.301C15.3032 8.90013 16.6539 10.7779 16.5834 12.8715C16.5129 14.9652 15.0391 16.7478 12.9961 17.2107C10.953 17.6735 8.85483 16.7 7.88899 14.8411C6.92316 12.9822 7.33273 10.7057 8.88591 9.3C9.18911 9.01917 9.20724 8.54571 8.92641 8.2425C8.64557 7.9393 8.17211 7.92117 7.86891 8.202C6.03251 9.90253 5.4249 12.5542 6.3376 14.8846Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -1,3 +1,5 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z" fill="currentColor" />
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z"
4
+ fill="currentColor" />
3
5
  </svg>
@@ -0,0 +1,18 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="100%" height="100%" rx="12" fill="inherit" />
3
+ <path
4
+ d="M17.2849 13.6078C18.1725 13.6078 18.892 12.8883 18.892 12.0007C18.892 11.1131 18.1725 10.3936 17.2849 10.3936C16.3973 10.3936 15.6777 11.1131 15.6777 12.0007C15.6777 12.8883 16.3973 13.6078 17.2849 13.6078Z"
5
+ fill="currentColor" />
6
+ <path
7
+ d="M17.2849 7.89495C18.1725 7.89495 18.892 7.17541 18.892 6.28781C18.892 5.40021 18.1725 4.68066 17.2849 4.68066C16.3973 4.68066 15.6777 5.40021 15.6777 6.28781C15.6777 7.17541 16.3973 7.89495 17.2849 7.89495Z"
8
+ fill="currentColor" />
9
+ <path
10
+ d="M17.2849 19.3217C18.1725 19.3217 18.892 18.6022 18.892 17.7146C18.892 16.827 18.1725 16.1074 17.2849 16.1074C16.3973 16.1074 15.6777 16.827 15.6777 17.7146C15.6777 18.6022 16.3973 19.3217 17.2849 19.3217Z"
11
+ fill="currentColor" />
12
+ <path
13
+ d="M5.85812 13.6078C6.74572 13.6078 7.46526 12.8883 7.46526 12.0007C7.46526 11.1131 6.74572 10.3936 5.85812 10.3936C4.97052 10.3936 4.25098 11.1131 4.25098 12.0007C4.25098 12.8883 4.97052 13.6078 5.85812 13.6078Z"
14
+ fill="currentColor" />
15
+ <path
16
+ d="M16.5709 12.5377C16.8637 12.5377 17.1066 12.2948 17.1066 12.002C17.1066 11.7091 16.8637 11.4662 16.5709 11.4662H11.3923V8.43052C11.3923 7.30195 11.8709 6.82338 12.9994 6.82338H16.5709C16.8637 6.82338 17.1066 6.58052 17.1066 6.28767C17.1066 5.99481 16.8637 5.75195 16.5709 5.75195H12.9994C11.2709 5.75195 10.3209 6.70195 10.3209 8.43052V11.4662H6.57087C6.27801 11.4662 6.03516 11.7091 6.03516 12.002C6.03516 12.2948 6.27801 12.5377 6.57087 12.5377H10.3209V15.5734C10.3209 17.302 11.2709 18.252 12.9994 18.252H16.5709C16.8637 18.252 17.1066 18.0091 17.1066 17.7162C17.1066 17.4234 16.8637 17.1805 16.5709 17.1805H12.9994C11.8709 17.1805 11.3923 16.702 11.3923 15.5734V12.5377H16.5709Z"
17
+ fill="currentColor" />
18
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M18.666 13.8749C19.7015 13.8749 20.541 13.0355 20.541 12C20.541 10.9645 19.7015 10.125 18.666 10.125C17.6305 10.125 16.791 10.9645 16.791 12C16.791 13.0355 17.6305 13.8749 18.666 13.8749Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M18.666 7.20991C19.7015 7.20991 20.541 6.37045 20.541 5.33493C20.541 4.29942 19.7015 3.45996 18.666 3.45996C17.6305 3.45996 16.791 4.29942 16.791 5.33493C16.791 6.37045 17.6305 7.20991 18.666 7.20991Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M18.666 20.541C19.7015 20.541 20.541 19.7015 20.541 18.666C20.541 17.6305 19.7015 16.791 18.666 16.791C17.6305 16.791 16.791 17.6305 16.791 18.666C16.791 19.7015 17.6305 20.541 18.666 20.541Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M5.33396 13.8749C6.36948 13.8749 7.20893 13.0355 7.20893 12C7.20893 10.9645 6.36948 10.125 5.33396 10.125C4.29844 10.125 3.45898 10.9645 3.45898 12C3.45898 13.0355 4.29844 13.8749 5.33396 13.8749Z"
13
+ fill="currentColor" />
14
+ <path
15
+ d="M17.8325 12.6265C18.1742 12.6265 18.4575 12.3432 18.4575 12.0015C18.4575 11.6599 18.1742 11.3765 17.8325 11.3765H11.7909V7.83492C11.7909 6.51827 12.3493 5.95994 13.6659 5.95994H17.8325C18.1742 5.95994 18.4575 5.67661 18.4575 5.33495C18.4575 4.99329 18.1742 4.70996 17.8325 4.70996H13.6659C11.6493 4.70996 10.5409 5.81828 10.5409 7.83492V11.3765H6.16601C5.82435 11.3765 5.54102 11.6599 5.54102 12.0015C5.54102 12.3432 5.82435 12.6265 6.16601 12.6265H10.5409V16.1681C10.5409 18.1848 11.6493 19.2931 13.6659 19.2931H17.8325C18.1742 19.2931 18.4575 19.0098 18.4575 18.6681C18.4575 18.3264 18.1742 18.0431 17.8325 18.0431H13.6659C12.3493 18.0431 11.7909 17.4848 11.7909 16.1681V12.6265H17.8325Z"
16
+ fill="currentColor" />
17
+ </svg>
@@ -2,4 +2,4 @@
2
2
  <path fill-rule="evenodd" clip-rule="evenodd"
3
3
  d="M7.56 2H16.44C19.5107 2 22 4.4893 22 7.56V16.44C22 19.5107 19.5107 22 16.44 22H7.56C4.4893 22 2 19.5107 2 16.44V7.56C2 4.4893 4.4893 2 7.56 2ZM5.70855 15.2052C6.72266 17.7946 9.21908 19.4988 12 19.5C15.4889 19.4774 18.3874 16.8034 18.6907 13.3277C18.9939 9.85198 16.6022 6.71644 13.17 6.09L13.33 5.92C13.6558 5.59691 13.6581 5.07085 13.335 4.745C13.0119 4.41915 12.4858 4.41691 12.16 4.74L10.67 6.22C10.5099 6.37453 10.4195 6.58749 10.4195 6.81C10.4195 7.03251 10.5099 7.24547 10.67 7.4L12.16 8.89C12.3151 9.04194 12.5229 9.12795 12.74 9.13C12.9599 9.12746 13.1707 9.0417 13.33 8.89C13.5909 8.62096 13.6361 8.20931 13.44 7.89C15.6704 8.5557 17.1711 10.6421 17.0928 12.9683C17.0145 15.2946 15.3769 17.2754 13.1068 17.7896C10.8368 18.3039 8.50547 17.2222 7.43232 15.1567C6.35917 13.0913 6.81424 10.5619 8.54 9C8.87689 8.68796 8.89704 8.16189 8.585 7.825C8.27296 7.48811 7.74689 7.46796 7.41 7.78C5.36956 9.66948 4.69443 12.6157 5.70855 15.2052Z"
4
4
  fill="currentColor" />
5
- </svg>
5
+ </svg>
@@ -1,3 +1,5 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.004 3H15.996C18.7596 3 21 5.24037 21 8.004V15.996C21 18.7596 18.7596 21 15.996 21H8.004C5.24037 21 3 18.7596 3 15.996V8.004C3 5.24037 5.24037 3 8.004 3ZM6.3376 14.8846C7.2503 17.2151 9.49708 18.7489 11.9999 18.75C15.1399 18.7297 17.7486 16.3231 18.0215 13.1949C18.2944 10.0668 16.1419 7.2448 13.0529 6.681L13.1969 6.528C13.4902 6.23723 13.4922 5.76377 13.2014 5.4705C12.9106 5.17724 12.4372 5.17523 12.1439 5.466L10.8029 6.798C10.6588 6.93708 10.5774 7.12874 10.5774 7.329C10.5774 7.52926 10.6588 7.72093 10.8029 7.86L12.1439 9.201C12.2835 9.33775 12.4705 9.41516 12.6659 9.417C12.8638 9.41471 13.0536 9.33754 13.1969 9.201C13.4317 8.95887 13.4724 8.58838 13.2959 8.301C15.3032 8.90013 16.6539 10.7779 16.5834 12.8715C16.5129 14.9652 15.0391 16.7478 12.9961 17.2107C10.953 17.6735 8.85483 16.7 7.88899 14.8411C6.92316 12.9822 7.33273 10.7057 8.88591 9.3C9.18911 9.01917 9.20724 8.54571 8.92641 8.2425C8.64557 7.9393 8.17211 7.92117 7.86891 8.202C6.03251 9.90253 5.4249 12.5542 6.3376 14.8846Z" fill="currentColor" />
3
- </svg>
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M8.004 3H15.996C18.7596 3 21 5.24037 21 8.004V15.996C21 18.7596 18.7596 21 15.996 21H8.004C5.24037 21 3 18.7596 3 15.996V8.004C3 5.24037 5.24037 3 8.004 3ZM6.3376 14.8846C7.2503 17.2151 9.49708 18.7489 11.9999 18.75C15.1399 18.7297 17.7486 16.3231 18.0215 13.1949C18.2944 10.0668 16.1419 7.2448 13.0529 6.681L13.1969 6.528C13.4902 6.23723 13.4922 5.76377 13.2014 5.4705C12.9106 5.17724 12.4372 5.17523 12.1439 5.466L10.8029 6.798C10.6588 6.93708 10.5774 7.12874 10.5774 7.329C10.5774 7.52926 10.6588 7.72093 10.8029 7.86L12.1439 9.201C12.2835 9.33775 12.4705 9.41516 12.6659 9.417C12.8638 9.41471 13.0536 9.33754 13.1969 9.201C13.4317 8.95887 13.4724 8.58838 13.2959 8.301C15.3032 8.90013 16.6539 10.7779 16.5834 12.8715C16.5129 14.9652 15.0391 16.7478 12.9961 17.2107C10.953 17.6735 8.85483 16.7 7.88899 14.8411C6.92316 12.9822 7.33273 10.7057 8.88591 9.3C9.18911 9.01917 9.20724 8.54571 8.92641 8.2425C8.64557 7.9393 8.17211 7.92117 7.86891 8.202C6.03251 9.90253 5.4249 12.5542 6.3376 14.8846Z"
4
+ fill="currentColor" />
5
+ </svg>
@@ -1,3 +1,5 @@
1
1
  <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z" fill="currentColor" />
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M10 2H14.24C16.3617 2 18.3966 2.84285 19.8969 4.34315C21.3971 5.84344 22.24 7.87827 22.24 10V14.24C22.24 18.6583 18.6583 22.24 14.24 22.24H10C5.58172 22.24 2 18.6583 2 14.24V10C2 5.58172 5.58172 2 10 2ZM12.12 18.12C12.6723 18.12 13.12 17.6723 13.12 17.12V12.12C13.1215 11.8542 13.0172 11.5987 12.83 11.41L8.83 7.41C8.57634 7.15634 8.20663 7.05728 7.86012 7.15012C7.51362 7.24297 7.24297 7.51362 7.15012 7.86012C7.05728 8.20663 7.15634 8.57634 7.41 8.83L11.12 12.53V17.12C11.12 17.6723 11.5677 18.12 12.12 18.12Z"
4
+ fill="currentColor" />
3
5
  </svg>
@@ -0,0 +1,18 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="100%" height="100%" rx="12" fill="inherit" />
3
+ <path
4
+ d="M17.2849 13.6078C18.1725 13.6078 18.892 12.8883 18.892 12.0007C18.892 11.1131 18.1725 10.3936 17.2849 10.3936C16.3973 10.3936 15.6777 11.1131 15.6777 12.0007C15.6777 12.8883 16.3973 13.6078 17.2849 13.6078Z"
5
+ fill="currentColor" />
6
+ <path
7
+ d="M17.2849 7.89495C18.1725 7.89495 18.892 7.17541 18.892 6.28781C18.892 5.40021 18.1725 4.68066 17.2849 4.68066C16.3973 4.68066 15.6777 5.40021 15.6777 6.28781C15.6777 7.17541 16.3973 7.89495 17.2849 7.89495Z"
8
+ fill="currentColor" />
9
+ <path
10
+ d="M17.2849 19.3217C18.1725 19.3217 18.892 18.6022 18.892 17.7146C18.892 16.827 18.1725 16.1074 17.2849 16.1074C16.3973 16.1074 15.6777 16.827 15.6777 17.7146C15.6777 18.6022 16.3973 19.3217 17.2849 19.3217Z"
11
+ fill="currentColor" />
12
+ <path
13
+ d="M5.85812 13.6078C6.74572 13.6078 7.46526 12.8883 7.46526 12.0007C7.46526 11.1131 6.74572 10.3936 5.85812 10.3936C4.97052 10.3936 4.25098 11.1131 4.25098 12.0007C4.25098 12.8883 4.97052 13.6078 5.85812 13.6078Z"
14
+ fill="currentColor" />
15
+ <path
16
+ d="M16.5709 12.5377C16.8637 12.5377 17.1066 12.2948 17.1066 12.002C17.1066 11.7091 16.8637 11.4662 16.5709 11.4662H11.3923V8.43052C11.3923 7.30195 11.8709 6.82338 12.9994 6.82338H16.5709C16.8637 6.82338 17.1066 6.58052 17.1066 6.28767C17.1066 5.99481 16.8637 5.75195 16.5709 5.75195H12.9994C11.2709 5.75195 10.3209 6.70195 10.3209 8.43052V11.4662H6.57087C6.27801 11.4662 6.03516 11.7091 6.03516 12.002C6.03516 12.2948 6.27801 12.5377 6.57087 12.5377H10.3209V15.5734C10.3209 17.302 11.2709 18.252 12.9994 18.252H16.5709C16.8637 18.252 17.1066 18.0091 17.1066 17.7162C17.1066 17.4234 16.8637 17.1805 16.5709 17.1805H12.9994C11.8709 17.1805 11.3923 16.702 11.3923 15.5734V12.5377H16.5709Z"
17
+ fill="currentColor" />
18
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M18.666 13.8749C19.7015 13.8749 20.541 13.0355 20.541 12C20.541 10.9645 19.7015 10.125 18.666 10.125C17.6305 10.125 16.791 10.9645 16.791 12C16.791 13.0355 17.6305 13.8749 18.666 13.8749Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M18.666 7.20991C19.7015 7.20991 20.541 6.37045 20.541 5.33493C20.541 4.29942 19.7015 3.45996 18.666 3.45996C17.6305 3.45996 16.791 4.29942 16.791 5.33493C16.791 6.37045 17.6305 7.20991 18.666 7.20991Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M18.666 20.541C19.7015 20.541 20.541 19.7015 20.541 18.666C20.541 17.6305 19.7015 16.791 18.666 16.791C17.6305 16.791 16.791 17.6305 16.791 18.666C16.791 19.7015 17.6305 20.541 18.666 20.541Z"
10
+ fill="currentColor" />
11
+ <path
12
+ d="M5.33396 13.8749C6.36948 13.8749 7.20893 13.0355 7.20893 12C7.20893 10.9645 6.36948 10.125 5.33396 10.125C4.29844 10.125 3.45898 10.9645 3.45898 12C3.45898 13.0355 4.29844 13.8749 5.33396 13.8749Z"
13
+ fill="currentColor" />
14
+ <path
15
+ d="M17.8325 12.6265C18.1742 12.6265 18.4575 12.3432 18.4575 12.0015C18.4575 11.6599 18.1742 11.3765 17.8325 11.3765H11.7909V7.83492C11.7909 6.51827 12.3493 5.95994 13.6659 5.95994H17.8325C18.1742 5.95994 18.4575 5.67661 18.4575 5.33495C18.4575 4.99329 18.1742 4.70996 17.8325 4.70996H13.6659C11.6493 4.70996 10.5409 5.81828 10.5409 7.83492V11.3765H6.16601C5.82435 11.3765 5.54102 11.6599 5.54102 12.0015C5.54102 12.3432 5.82435 12.6265 6.16601 12.6265H10.5409V16.1681C10.5409 18.1848 11.6493 19.2931 13.6659 19.2931H17.8325C18.1742 19.2931 18.4575 19.0098 18.4575 18.6681C18.4575 18.3264 18.1742 18.0431 17.8325 18.0431H13.6659C12.3493 18.0431 11.7909 17.4848 11.7909 16.1681V12.6265H17.8325Z"
16
+ fill="currentColor" />
17
+ </svg>
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconProps } from 'a-base-icon/lib/icon';
3
- declare function ForkFilled(componentProps: IconProps): JSX.Element;
4
- declare namespace ForkFilled {
5
- var displayName: string;
6
- }
7
- export default ForkFilled;
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconProps } from 'a-base-icon/lib/icon';
3
- declare function ForkOutlined(componentProps: IconProps): JSX.Element;
4
- declare namespace ForkOutlined {
5
- var displayName: string;
6
- }
7
- export default ForkOutlined;
@@ -1,40 +0,0 @@
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) {
6
- if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
7
- }
8
- }
9
- return t;
10
- };
11
- return __assign.apply(this, arguments);
12
- };
13
- import * as React from 'react';
14
- import Icon from 'a-base-icon/lib/icon';
15
- function ForkOutlined(componentProps) {
16
- var IconNode = function IconNode(props) {
17
- return /*#__PURE__*/React.createElement("svg", __assign({
18
- viewBox: "0 0 24 24",
19
- fill: "none",
20
- xmlns: "http://www.w3.org/2000/svg"
21
- }, props), /*#__PURE__*/React.createElement("path", {
22
- d: "M19.333 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM19.333 6.5a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM19.333 21.167a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM4.667 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM6.5 12h11",
23
- stroke: "currentColor",
24
- strokeWidth: 1.5,
25
- strokeLinecap: "round",
26
- strokeLinejoin: "round"
27
- }), /*#__PURE__*/React.createElement("path", {
28
- d: "M17.5 4.667h-3.667c-1.833 0-2.75.916-2.75 2.75v9.166c0 1.834.917 2.75 2.75 2.75H17.5",
29
- stroke: "currentColor",
30
- strokeWidth: 1.5,
31
- strokeLinecap: "round",
32
- strokeLinejoin: "round"
33
- }));
34
- };
35
- return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
36
- component: IconNode
37
- }));
38
- }
39
- ForkOutlined.displayName = 'ForkOutlined';
40
- export default ForkOutlined;
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconProps } from 'a-base-icon/lib/icon';
3
- declare function ForkFilled(componentProps: IconProps): JSX.Element;
4
- declare namespace ForkFilled {
5
- var displayName: string;
6
- }
7
- export default ForkFilled;
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- import { IconProps } from 'a-base-icon/lib/icon';
3
- declare function ForkOutlined(componentProps: IconProps): JSX.Element;
4
- declare namespace ForkOutlined {
5
- var displayName: string;
6
- }
7
- export default ForkOutlined;
@@ -1,22 +0,0 @@
1
- import * as React from 'react';
2
- import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
-
4
- function ForkFilled(componentProps: IconProps) {
5
- const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
- <path
8
- d="M19.333 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124zM19.333 6.73a2.062 2.062 0 100-4.126 2.062 2.062 0 000 4.125zM19.333 21.396a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.125zM4.667 14.063a2.062 2.062 0 100-4.125 2.062 2.062 0 000 4.124z"
9
- fill="currentColor"
10
- />
11
- <path
12
- d="M18.417 12.688a.692.692 0 00.687-.688.693.693 0 00-.687-.688H11.77V7.418c0-1.449.614-2.063 2.062-2.063h4.584a.693.693 0 00.687-.687.693.693 0 00-.687-.688h-4.584c-2.218 0-3.437 1.22-3.437 3.438v3.896H5.583a.693.693 0 00-.687.687c0 .376.312.688.687.688h4.813v3.895c0 2.219 1.219 3.438 3.437 3.438h4.584a.693.693 0 00.687-.688.692.692 0 00-.687-.687h-4.584c-1.448 0-2.062-.614-2.062-2.063v-3.895h6.646z"
13
- fill="currentColor"
14
- />
15
- </svg>
16
- );
17
-
18
- return <Icon {...componentProps} component={IconNode} />;
19
- }
20
-
21
- ForkFilled.displayName = 'ForkFilled';
22
- export default ForkFilled;
@@ -1,28 +0,0 @@
1
- import * as React from 'react';
2
- import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
-
4
- function ForkOutlined(componentProps: IconProps) {
5
- const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
6
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
7
- <path
8
- d="M19.333 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM19.333 6.5a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM19.333 21.167a1.833 1.833 0 100-3.667 1.833 1.833 0 000 3.667zM4.667 13.833a1.833 1.833 0 100-3.666 1.833 1.833 0 000 3.666zM6.5 12h11"
9
- stroke="currentColor"
10
- strokeWidth={1.5}
11
- strokeLinecap="round"
12
- strokeLinejoin="round"
13
- />
14
- <path
15
- d="M17.5 4.667h-3.667c-1.833 0-2.75.916-2.75 2.75v9.166c0 1.834.917 2.75 2.75 2.75H17.5"
16
- stroke="currentColor"
17
- strokeWidth={1.5}
18
- strokeLinecap="round"
19
- strokeLinejoin="round"
20
- />
21
- </svg>
22
- );
23
-
24
- return <Icon {...componentProps} component={IconNode} />;
25
- }
26
-
27
- ForkOutlined.displayName = 'ForkOutlined';
28
- export default ForkOutlined;
@@ -1,17 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M19.3333 14.0625C20.4724 14.0625 21.3958 13.1391 21.3958 12C21.3958 10.8609 20.4724 9.9375 19.3333 9.9375C18.1943 9.9375 17.2708 10.8609 17.2708 12C17.2708 13.1391 18.1943 14.0625 19.3333 14.0625Z"
4
- fill="currentColor" />
5
- <path
6
- d="M19.3333 6.72919C20.4724 6.72919 21.3958 5.80577 21.3958 4.66669C21.3958 3.5276 20.4724 2.60419 19.3333 2.60419C18.1943 2.60419 17.2708 3.5276 17.2708 4.66669C17.2708 5.80577 18.1943 6.72919 19.3333 6.72919Z"
7
- fill="currentColor" />
8
- <path
9
- d="M19.3333 21.3958C20.4724 21.3958 21.3958 20.4724 21.3958 19.3333C21.3958 18.1942 20.4724 17.2708 19.3333 17.2708C18.1943 17.2708 17.2708 18.1942 17.2708 19.3333C17.2708 20.4724 18.1943 21.3958 19.3333 21.3958Z"
10
- fill="currentColor" />
11
- <path
12
- d="M4.66666 14.0625C5.80574 14.0625 6.72916 13.1391 6.72916 12C6.72916 10.8609 5.80574 9.9375 4.66666 9.9375C3.52757 9.9375 2.60416 10.8609 2.60416 12C2.60416 13.1391 3.52757 14.0625 4.66666 14.0625Z"
13
- fill="currentColor" />
14
- <path
15
- d="M18.4167 12.6875C18.7925 12.6875 19.1042 12.3759 19.1042 12C19.1042 11.6242 18.7925 11.3125 18.4167 11.3125H11.7708V7.41669C11.7708 5.96835 12.385 5.35419 13.8333 5.35419H18.4167C18.7925 5.35419 19.1042 5.04252 19.1042 4.66669C19.1042 4.29085 18.7925 3.97919 18.4167 3.97919H13.8333C11.615 3.97919 10.3958 5.19835 10.3958 7.41669V11.3125H5.58334C5.20751 11.3125 4.89584 11.6242 4.89584 12C4.89584 12.3759 5.20751 12.6875 5.58334 12.6875H10.3958V16.5834C10.3958 18.8017 11.615 20.0209 13.8333 20.0209H18.4167C18.7925 20.0209 19.1042 19.7092 19.1042 19.3334C19.1042 18.9575 18.7925 18.6459 18.4167 18.6459H13.8333C12.385 18.6459 11.7708 18.0317 11.7708 16.5834V12.6875H18.4167Z"
16
- fill="currentColor" />
17
- </svg>
@@ -1,18 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M19.3333 13.8334C20.3459 13.8334 21.1667 13.0125 21.1667 12C21.1667 10.9875 20.3459 10.1667 19.3333 10.1667C18.3208 10.1667 17.5 10.9875 17.5 12C17.5 13.0125 18.3208 13.8334 19.3333 13.8334Z"
4
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
- <path
6
- d="M19.3333 6.49998C20.3459 6.49998 21.1667 5.67917 21.1667 4.66665C21.1667 3.65412 20.3459 2.83331 19.3333 2.83331C18.3208 2.83331 17.5 3.65412 17.5 4.66665C17.5 5.67917 18.3208 6.49998 19.3333 6.49998Z"
7
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
8
- <path
9
- d="M19.3333 21.1667C20.3459 21.1667 21.1667 20.3459 21.1667 19.3333C21.1667 18.3208 20.3459 17.5 19.3333 17.5C18.3208 17.5 17.5 18.3208 17.5 19.3333C17.5 20.3459 18.3208 21.1667 19.3333 21.1667Z"
10
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
11
- <path
12
- d="M4.66668 13.8334C5.6792 13.8334 6.50001 13.0125 6.50001 12C6.50001 10.9875 5.6792 10.1667 4.66668 10.1667C3.65415 10.1667 2.83334 10.9875 2.83334 12C2.83334 13.0125 3.65415 13.8334 4.66668 13.8334Z"
13
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
14
- <path d="M6.5 12H17.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
15
- <path
16
- d="M17.5 4.66669H13.8333C12 4.66669 11.0833 5.58335 11.0833 7.41669V16.5834C11.0833 18.4167 12 19.3334 13.8333 19.3334H17.5"
17
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
- </svg>
@@ -1,17 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M19.3333 14.0625C20.4724 14.0625 21.3958 13.1391 21.3958 12C21.3958 10.8609 20.4724 9.9375 19.3333 9.9375C18.1943 9.9375 17.2708 10.8609 17.2708 12C17.2708 13.1391 18.1943 14.0625 19.3333 14.0625Z"
4
- fill="currentColor" />
5
- <path
6
- d="M19.3333 6.72919C20.4724 6.72919 21.3958 5.80577 21.3958 4.66669C21.3958 3.5276 20.4724 2.60419 19.3333 2.60419C18.1943 2.60419 17.2708 3.5276 17.2708 4.66669C17.2708 5.80577 18.1943 6.72919 19.3333 6.72919Z"
7
- fill="currentColor" />
8
- <path
9
- d="M19.3333 21.3958C20.4724 21.3958 21.3958 20.4724 21.3958 19.3333C21.3958 18.1942 20.4724 17.2708 19.3333 17.2708C18.1943 17.2708 17.2708 18.1942 17.2708 19.3333C17.2708 20.4724 18.1943 21.3958 19.3333 21.3958Z"
10
- fill="currentColor" />
11
- <path
12
- d="M4.66666 14.0625C5.80574 14.0625 6.72916 13.1391 6.72916 12C6.72916 10.8609 5.80574 9.9375 4.66666 9.9375C3.52757 9.9375 2.60416 10.8609 2.60416 12C2.60416 13.1391 3.52757 14.0625 4.66666 14.0625Z"
13
- fill="currentColor" />
14
- <path
15
- d="M18.4167 12.6875C18.7925 12.6875 19.1042 12.3759 19.1042 12C19.1042 11.6242 18.7925 11.3125 18.4167 11.3125H11.7708V7.41669C11.7708 5.96835 12.385 5.35419 13.8333 5.35419H18.4167C18.7925 5.35419 19.1042 5.04252 19.1042 4.66669C19.1042 4.29085 18.7925 3.97919 18.4167 3.97919H13.8333C11.615 3.97919 10.3958 5.19835 10.3958 7.41669V11.3125H5.58334C5.20751 11.3125 4.89584 11.6242 4.89584 12C4.89584 12.3759 5.20751 12.6875 5.58334 12.6875H10.3958V16.5834C10.3958 18.8017 11.615 20.0209 13.8333 20.0209H18.4167C18.7925 20.0209 19.1042 19.7092 19.1042 19.3334C19.1042 18.9575 18.7925 18.6459 18.4167 18.6459H13.8333C12.385 18.6459 11.7708 18.0317 11.7708 16.5834V12.6875H18.4167Z"
16
- fill="currentColor" />
17
- </svg>
@@ -1,18 +0,0 @@
1
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path
3
- d="M19.3333 13.8334C20.3459 13.8334 21.1667 13.0125 21.1667 12C21.1667 10.9875 20.3459 10.1667 19.3333 10.1667C18.3208 10.1667 17.5 10.9875 17.5 12C17.5 13.0125 18.3208 13.8334 19.3333 13.8334Z"
4
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
- <path
6
- d="M19.3333 6.49998C20.3459 6.49998 21.1667 5.67917 21.1667 4.66665C21.1667 3.65412 20.3459 2.83331 19.3333 2.83331C18.3208 2.83331 17.5 3.65412 17.5 4.66665C17.5 5.67917 18.3208 6.49998 19.3333 6.49998Z"
7
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
8
- <path
9
- d="M19.3333 21.1667C20.3459 21.1667 21.1667 20.3459 21.1667 19.3333C21.1667 18.3208 20.3459 17.5 19.3333 17.5C18.3208 17.5 17.5 18.3208 17.5 19.3333C17.5 20.3459 18.3208 21.1667 19.3333 21.1667Z"
10
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
11
- <path
12
- d="M4.66668 13.8334C5.6792 13.8334 6.50001 13.0125 6.50001 12C6.50001 10.9875 5.6792 10.1667 4.66668 10.1667C3.65415 10.1667 2.83334 10.9875 2.83334 12C2.83334 13.0125 3.65415 13.8334 4.66668 13.8334Z"
13
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
14
- <path d="M6.5 12H17.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
15
- <path
16
- d="M17.5 4.66669H13.8333C12 4.66669 11.0833 5.58335 11.0833 7.41669V16.5834C11.0833 18.4167 12 19.3334 13.8333 19.3334H17.5"
17
- stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
- </svg>