a-icons 1.1.7 → 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 (40) hide show
  1. package/es/SpeakerFilled.d.ts +7 -0
  2. package/es/SpeakerFilled.js +34 -0
  3. package/es/SpeakerOutlined.d.ts +7 -0
  4. package/es/SpeakerOutlined.js +38 -0
  5. package/es/TreeFilled.d.ts +7 -0
  6. package/es/TreeFilled.js +38 -0
  7. package/es/TreeOutlined.d.ts +7 -0
  8. package/es/TreeOutlined.js +33 -0
  9. package/es/index.d.ts +4 -0
  10. package/es/index.js +4 -0
  11. package/lib/SpeakerFilled.d.ts +7 -0
  12. package/lib/SpeakerFilled.js +77 -0
  13. package/lib/SpeakerOutlined.d.ts +7 -0
  14. package/lib/SpeakerOutlined.js +81 -0
  15. package/lib/TreeFilled.d.ts +7 -0
  16. package/lib/TreeFilled.js +81 -0
  17. package/lib/TreeOutlined.d.ts +7 -0
  18. package/lib/TreeOutlined.js +76 -0
  19. package/lib/index.d.ts +4 -0
  20. package/lib/index.js +30 -1
  21. package/package.json +2 -2
  22. package/src/SpeakerFilled.tsx +22 -0
  23. package/src/SpeakerOutlined.tsx +26 -0
  24. package/src/TreeFilled.tsx +23 -0
  25. package/src/TreeOutlined.tsx +22 -0
  26. package/src/index.tsx +4 -0
  27. package/svgs/filled/refresh-filled.svg +1 -1
  28. package/svgs/filled/retry-refresh-filled.svg +4 -2
  29. package/svgs/filled/rounded-rectangle-clock-filled.svg +3 -1
  30. package/svgs/filled/speaker-filled.svg +11 -0
  31. package/svgs/filled/tree-filled.svg +18 -0
  32. package/svgs/outlined/speaker-outlined.svg +9 -0
  33. package/svgs/outlined/tree-outlined.svg +17 -0
  34. package/tmpAllSvgs/refresh-filled.svg +1 -1
  35. package/tmpAllSvgs/retry-refresh-filled.svg +4 -2
  36. package/tmpAllSvgs/rounded-rectangle-clock-filled.svg +3 -1
  37. package/tmpAllSvgs/speaker-filled.svg +11 -0
  38. package/tmpAllSvgs/speaker-outlined.svg +9 -0
  39. package/tmpAllSvgs/tree-filled.svg +18 -0
  40. package/tmpAllSvgs/tree-outlined.svg +17 -0
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function SpeakerFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace SpeakerFilled {
5
+ var displayName: string;
6
+ }
7
+ export default SpeakerFilled;
@@ -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) {
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 SpeakerFilled(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: "M17.532 16a.485.485 0 01-.32-.126c-.233-.21-.283-.607-.105-.885 1.113-1.76 1.113-4.218 0-5.978-.178-.278-.128-.674.106-.884.234-.211.567-.152.744.126 1.39 2.206 1.39 5.288 0 7.494a.5.5 0 01-.425.253z",
23
+ fill: "currentColor"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ d: "M18.822 19a.909.909 0 01-.493-.145c-.362-.241-.438-.695-.164-1.014 2.923-3.437 2.923-8.245 0-11.682-.274-.319-.198-.773.164-1.014.361-.241.876-.174 1.15.145 3.361 3.949 3.361 9.471 0 13.42-.154.194-.405.29-.657.29zM13.449 4.346c-1.004-.577-2.286-.428-3.595.419L7.236 6.469a1.13 1.13 0 01-.592.177H5.362C3.192 6.646 2 7.885 2 10.138v3.725c0 2.254 1.192 3.492 3.362 3.492h1.282c.206 0 .413.066.592.177l2.618 1.704c.789.513 1.56.764 2.277.764a2.61 2.61 0 001.318-.345c.995-.577 1.551-1.778 1.551-3.38V7.726c0-1.601-.556-2.803-1.551-3.38z",
26
+ fill: "currentColor"
27
+ }));
28
+ };
29
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
30
+ component: IconNode
31
+ }));
32
+ }
33
+ SpeakerFilled.displayName = 'SpeakerFilled';
34
+ export default SpeakerFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function SpeakerOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace SpeakerOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default SpeakerOutlined;
@@ -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 SpeakerOutlined(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: "M2.833 10.167v3.666c0 1.834.917 2.75 2.75 2.75h1.311c.34 0 .679.101.972.275l2.677 1.678c2.31 1.448 4.207.394 4.207-2.329V7.792c0-2.731-1.898-3.776-4.207-2.328L7.866 7.142a1.922 1.922 0 01-.972.275h-1.31c-1.834 0-2.75.916-2.75 2.75z",
23
+ stroke: "currentColor",
24
+ strokeWidth: 1.5
25
+ }), /*#__PURE__*/React.createElement("path", {
26
+ d: "M17.5 8.333a6.105 6.105 0 010 7.334M19.177 6.042a9.927 9.927 0 010 11.916",
27
+ stroke: "currentColor",
28
+ strokeWidth: 1.5,
29
+ strokeLinecap: "round",
30
+ strokeLinejoin: "round"
31
+ }));
32
+ };
33
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
34
+ component: IconNode
35
+ }));
36
+ }
37
+ SpeakerOutlined.displayName = 'SpeakerOutlined';
38
+ export default SpeakerOutlined;
@@ -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;
@@ -0,0 +1,33 @@
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 TreeOutlined(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("path", {
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",
22
+ fill: "currentColor"
23
+ }), /*#__PURE__*/React.createElement("path", {
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",
25
+ fill: "currentColor"
26
+ }));
27
+ };
28
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
29
+ component: IconNode
30
+ }));
31
+ }
32
+ TreeOutlined.displayName = 'TreeOutlined';
33
+ export default TreeOutlined;
package/es/index.d.ts CHANGED
@@ -175,6 +175,8 @@ export { default as ShieldFilled } from './ShieldFilled';
175
175
  export { default as ShieldOutlined } from './ShieldOutlined';
176
176
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
177
177
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
178
+ export { default as SpeakerFilled } from './SpeakerFilled';
179
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
178
180
  export { default as SquareFilled } from './SquareFilled';
179
181
  export { default as StampFilled } from './StampFilled';
180
182
  export { default as StarFilled } from './StarFilled';
@@ -186,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
186
188
  export { default as TmdLogo } from './TmdLogo';
187
189
  export { default as TrashCanFilled } from './TrashCanFilled';
188
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
189
193
  export { default as UnlockFilled } from './UnlockFilled';
190
194
  export { default as UpFilled } from './UpFilled';
191
195
  export { default as UpOutlined } from './UpOutlined';
package/es/index.js CHANGED
@@ -175,6 +175,8 @@ export { default as ShieldFilled } from './ShieldFilled';
175
175
  export { default as ShieldOutlined } from './ShieldOutlined';
176
176
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
177
177
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
178
+ export { default as SpeakerFilled } from './SpeakerFilled';
179
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
178
180
  export { default as SquareFilled } from './SquareFilled';
179
181
  export { default as StampFilled } from './StampFilled';
180
182
  export { default as StarFilled } from './StarFilled';
@@ -186,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
186
188
  export { default as TmdLogo } from './TmdLogo';
187
189
  export { default as TrashCanFilled } from './TrashCanFilled';
188
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
189
193
  export { default as UnlockFilled } from './UnlockFilled';
190
194
  export { default as UpFilled } from './UpFilled';
191
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 SpeakerFilled(componentProps: IconProps): JSX.Element;
4
+ declare namespace SpeakerFilled {
5
+ var displayName: string;
6
+ }
7
+ export default SpeakerFilled;
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function SpeakerFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("path", {
65
+ d: "M17.532 16a.485.485 0 01-.32-.126c-.233-.21-.283-.607-.105-.885 1.113-1.76 1.113-4.218 0-5.978-.178-.278-.128-.674.106-.884.234-.211.567-.152.744.126 1.39 2.206 1.39 5.288 0 7.494a.5.5 0 01-.425.253z",
66
+ fill: "currentColor"
67
+ }), React.createElement("path", {
68
+ d: "M18.822 19a.909.909 0 01-.493-.145c-.362-.241-.438-.695-.164-1.014 2.923-3.437 2.923-8.245 0-11.682-.274-.319-.198-.773.164-1.014.361-.241.876-.174 1.15.145 3.361 3.949 3.361 9.471 0 13.42-.154.194-.405.29-.657.29zM13.449 4.346c-1.004-.577-2.286-.428-3.595.419L7.236 6.469a1.13 1.13 0 01-.592.177H5.362C3.192 6.646 2 7.885 2 10.138v3.725c0 2.254 1.192 3.492 3.362 3.492h1.282c.206 0 .413.066.592.177l2.618 1.704c.789.513 1.56.764 2.277.764a2.61 2.61 0 001.318-.345c.995-.577 1.551-1.778 1.551-3.38V7.726c0-1.601-.556-2.803-1.551-3.38z",
69
+ fill: "currentColor"
70
+ }));
71
+ };
72
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
73
+ component: IconNode
74
+ }));
75
+ }
76
+ SpeakerFilled.displayName = 'SpeakerFilled';
77
+ exports["default"] = SpeakerFilled;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function SpeakerOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace SpeakerOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default SpeakerOutlined;
@@ -0,0 +1,81 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function SpeakerOutlined(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ fill: "none",
63
+ xmlns: "http://www.w3.org/2000/svg"
64
+ }, props), React.createElement("path", {
65
+ d: "M2.833 10.167v3.666c0 1.834.917 2.75 2.75 2.75h1.311c.34 0 .679.101.972.275l2.677 1.678c2.31 1.448 4.207.394 4.207-2.329V7.792c0-2.731-1.898-3.776-4.207-2.328L7.866 7.142a1.922 1.922 0 01-.972.275h-1.31c-1.834 0-2.75.916-2.75 2.75z",
66
+ stroke: "currentColor",
67
+ strokeWidth: 1.5
68
+ }), React.createElement("path", {
69
+ d: "M17.5 8.333a6.105 6.105 0 010 7.334M19.177 6.042a9.927 9.927 0 010 11.916",
70
+ stroke: "currentColor",
71
+ strokeWidth: 1.5,
72
+ strokeLinecap: "round",
73
+ strokeLinejoin: "round"
74
+ }));
75
+ };
76
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
77
+ component: IconNode
78
+ }));
79
+ }
80
+ SpeakerOutlined.displayName = 'SpeakerOutlined';
81
+ exports["default"] = SpeakerOutlined;
@@ -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,81 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function TreeFilled(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ xmlns: "http://www.w3.org/2000/svg"
63
+ }, props), React.createElement("rect", {
64
+ width: "100%",
65
+ height: "100%",
66
+ rx: 12,
67
+ fill: "inherit"
68
+ }), React.createElement("path", {
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"
74
+ }));
75
+ };
76
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
77
+ component: IconNode
78
+ }));
79
+ }
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;
@@ -0,0 +1,76 @@
1
+ "use strict";
2
+
3
+ var __assign = this && this.__assign || function () {
4
+ __assign = Object.assign || function (t) {
5
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
6
+ s = arguments[i];
7
+ for (var p in s) {
8
+ if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
+ }
10
+ }
11
+ return t;
12
+ };
13
+ return __assign.apply(this, arguments);
14
+ };
15
+ var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
16
+ if (k2 === undefined) k2 = k;
17
+ var desc = Object.getOwnPropertyDescriptor(m, k);
18
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
19
+ desc = {
20
+ enumerable: true,
21
+ get: function get() {
22
+ return m[k];
23
+ }
24
+ };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ } : function (o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ });
31
+ var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
32
+ Object.defineProperty(o, "default", {
33
+ enumerable: true,
34
+ value: v
35
+ });
36
+ } : function (o, v) {
37
+ o["default"] = v;
38
+ });
39
+ var __importStar = this && this.__importStar || function (mod) {
40
+ if (mod && mod.__esModule) return mod;
41
+ var result = {};
42
+ if (mod != null) for (var k in mod) {
43
+ if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
44
+ }
45
+ __setModuleDefault(result, mod);
46
+ return result;
47
+ };
48
+ var __importDefault = this && this.__importDefault || function (mod) {
49
+ return mod && mod.__esModule ? mod : {
50
+ "default": mod
51
+ };
52
+ };
53
+ Object.defineProperty(exports, "__esModule", {
54
+ value: true
55
+ });
56
+ var React = __importStar(require("react"));
57
+ var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
58
+ function TreeOutlined(componentProps) {
59
+ var IconNode = function IconNode(props) {
60
+ return React.createElement("svg", __assign({
61
+ viewBox: "0 0 24 24",
62
+ xmlns: "http://www.w3.org/2000/svg"
63
+ }, props), React.createElement("path", {
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",
65
+ fill: "currentColor"
66
+ }), React.createElement("path", {
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",
68
+ fill: "currentColor"
69
+ }));
70
+ };
71
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
72
+ component: IconNode
73
+ }));
74
+ }
75
+ TreeOutlined.displayName = 'TreeOutlined';
76
+ exports["default"] = TreeOutlined;
package/lib/index.d.ts CHANGED
@@ -175,6 +175,8 @@ export { default as ShieldFilled } from './ShieldFilled';
175
175
  export { default as ShieldOutlined } from './ShieldOutlined';
176
176
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
177
177
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
178
+ export { default as SpeakerFilled } from './SpeakerFilled';
179
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
178
180
  export { default as SquareFilled } from './SquareFilled';
179
181
  export { default as StampFilled } from './StampFilled';
180
182
  export { default as StarFilled } from './StarFilled';
@@ -186,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
186
188
  export { default as TmdLogo } from './TmdLogo';
187
189
  export { default as TrashCanFilled } from './TrashCanFilled';
188
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
189
193
  export { default as UnlockFilled } from './UnlockFilled';
190
194
  export { default as UpFilled } from './UpFilled';
191
195
  export { default as UpOutlined } from './UpOutlined';
package/lib/index.js CHANGED
@@ -11,7 +11,8 @@ Object.defineProperty(exports, "__esModule", {
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
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
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.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = 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.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;
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
+ exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = void 0;
15
16
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
16
17
  Object.defineProperty(exports, "ImpassabilityFilled", {
17
18
  enumerable: true,
@@ -1251,6 +1252,20 @@ Object.defineProperty(exports, "ShopKeeperOutlined", {
1251
1252
  return __importDefault(ShopKeeperOutlined_1)["default"];
1252
1253
  }
1253
1254
  });
1255
+ var SpeakerFilled_1 = require("./SpeakerFilled");
1256
+ Object.defineProperty(exports, "SpeakerFilled", {
1257
+ enumerable: true,
1258
+ get: function get() {
1259
+ return __importDefault(SpeakerFilled_1)["default"];
1260
+ }
1261
+ });
1262
+ var SpeakerOutlined_1 = require("./SpeakerOutlined");
1263
+ Object.defineProperty(exports, "SpeakerOutlined", {
1264
+ enumerable: true,
1265
+ get: function get() {
1266
+ return __importDefault(SpeakerOutlined_1)["default"];
1267
+ }
1268
+ });
1254
1269
  var SquareFilled_1 = require("./SquareFilled");
1255
1270
  Object.defineProperty(exports, "SquareFilled", {
1256
1271
  enumerable: true,
@@ -1328,6 +1343,20 @@ Object.defineProperty(exports, "TrashOutlined", {
1328
1343
  return __importDefault(TrashOutlined_1)["default"];
1329
1344
  }
1330
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
+ });
1331
1360
  var UnlockFilled_1 = require("./UnlockFilled");
1332
1361
  Object.defineProperty(exports, "UnlockFilled", {
1333
1362
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.1.7",
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": "e91909c7e3ec67a9d05b4ce70f78ad7b82e7b6bb"
25
+ "gitHead": "4a0e8485fb1b83c3a005c092235b683b05d85563"
26
26
  }
@@ -0,0 +1,22 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function SpeakerFilled(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="M17.532 16a.485.485 0 01-.32-.126c-.233-.21-.283-.607-.105-.885 1.113-1.76 1.113-4.218 0-5.978-.178-.278-.128-.674.106-.884.234-.211.567-.152.744.126 1.39 2.206 1.39 5.288 0 7.494a.5.5 0 01-.425.253z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M18.822 19a.909.909 0 01-.493-.145c-.362-.241-.438-.695-.164-1.014 2.923-3.437 2.923-8.245 0-11.682-.274-.319-.198-.773.164-1.014.361-.241.876-.174 1.15.145 3.361 3.949 3.361 9.471 0 13.42-.154.194-.405.29-.657.29zM13.449 4.346c-1.004-.577-2.286-.428-3.595.419L7.236 6.469a1.13 1.13 0 01-.592.177H5.362C3.192 6.646 2 7.885 2 10.138v3.725c0 2.254 1.192 3.492 3.362 3.492h1.282c.206 0 .413.066.592.177l2.618 1.704c.789.513 1.56.764 2.277.764a2.61 2.61 0 001.318-.345c.995-.577 1.551-1.778 1.551-3.38V7.726c0-1.601-.556-2.803-1.551-3.38z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ return <Icon {...componentProps} component={IconNode} />;
19
+ }
20
+
21
+ SpeakerFilled.displayName = 'SpeakerFilled';
22
+ export default SpeakerFilled;
@@ -0,0 +1,26 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function SpeakerOutlined(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="M2.833 10.167v3.666c0 1.834.917 2.75 2.75 2.75h1.311c.34 0 .679.101.972.275l2.677 1.678c2.31 1.448 4.207.394 4.207-2.329V7.792c0-2.731-1.898-3.776-4.207-2.328L7.866 7.142a1.922 1.922 0 01-.972.275h-1.31c-1.834 0-2.75.916-2.75 2.75z"
9
+ stroke="currentColor"
10
+ strokeWidth={1.5}
11
+ />
12
+ <path
13
+ d="M17.5 8.333a6.105 6.105 0 010 7.334M19.177 6.042a9.927 9.927 0 010 11.916"
14
+ stroke="currentColor"
15
+ strokeWidth={1.5}
16
+ strokeLinecap="round"
17
+ strokeLinejoin="round"
18
+ />
19
+ </svg>
20
+ );
21
+
22
+ return <Icon {...componentProps} component={IconNode} />;
23
+ }
24
+
25
+ SpeakerOutlined.displayName = 'SpeakerOutlined';
26
+ export default SpeakerOutlined;
@@ -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
@@ -175,6 +175,8 @@ export { default as ShieldFilled } from './ShieldFilled';
175
175
  export { default as ShieldOutlined } from './ShieldOutlined';
176
176
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
177
177
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
178
+ export { default as SpeakerFilled } from './SpeakerFilled';
179
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
178
180
  export { default as SquareFilled } from './SquareFilled';
179
181
  export { default as StampFilled } from './StampFilled';
180
182
  export { default as StarFilled } from './StarFilled';
@@ -186,6 +188,8 @@ export { default as TagOutlined } from './TagOutlined';
186
188
  export { default as TmdLogo } from './TmdLogo';
187
189
  export { default as TrashCanFilled } from './TrashCanFilled';
188
190
  export { default as TrashOutlined } from './TrashOutlined';
191
+ export { default as TreeFilled } from './TreeFilled';
192
+ export { default as TreeOutlined } from './TreeOutlined';
189
193
  export { default as UnlockFilled } from './UnlockFilled';
190
194
  export { default as UpFilled } from './UpFilled';
191
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,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M17.5321 16C17.4186 16 17.3122 15.9579 17.2129 15.8737C16.9789 15.6632 16.9293 15.2674 17.1066 14.9895C18.2199 13.2296 18.2199 10.7707 17.1066 9.01073C16.9293 8.73284 16.9789 8.33706 17.2129 8.12654C17.447 7.91602 17.7803 7.97497 17.9575 8.25285C19.3475 10.4591 19.3475 13.5411 17.9575 15.7474C17.8512 15.9158 17.6952 16 17.5321 16Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M18.8216 19C18.6464 19 18.4821 18.9517 18.3288 18.8552C17.9674 18.6138 17.8908 18.16 18.1646 17.8414C21.0884 14.4042 21.0884 9.59604 18.1646 6.15886C17.8908 5.84025 17.9674 5.38646 18.3288 5.14509C18.6902 4.90371 19.2049 4.9713 19.4786 5.28991C22.8405 9.2388 22.8405 14.7615 19.4786 18.7104C19.3253 18.9035 19.0735 19 18.8216 19Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M13.449 4.34597C12.4448 3.76861 11.1628 3.91761 9.85379 4.76503L7.23586 6.46918C7.05655 6.58093 6.85034 6.64612 6.64414 6.64612H5.81034H5.36207C3.19241 6.64612 2 7.88466 2 10.1382V13.8632C2 16.1168 3.19241 17.3553 5.36207 17.3553H5.81034H6.64414C6.85034 17.3553 7.05655 17.4205 7.23586 17.5322L9.85379 19.2364C10.6428 19.7486 11.4138 20 12.131 20C12.5972 20 13.0455 19.8883 13.449 19.6554C14.4441 19.0781 15 17.8768 15 16.2751V7.72635C15 6.12463 14.4441 4.92334 13.449 4.34597Z"
10
+ fill="currentColor" />
11
+ </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,9 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M2.83334 10.1666V13.8333C2.83334 15.6666 3.75001 16.5833 5.58334 16.5833H6.89418C7.23334 16.5833 7.57251 16.6841 7.86584 16.8583L10.5425 18.5358C12.8525 19.9841 14.75 18.9299 14.75 16.2074V7.79245C14.75 5.06078 12.8525 4.01578 10.5425 5.46412L7.86584 7.14162C7.57251 7.31578 7.23334 7.41662 6.89418 7.41662H5.58334C3.75001 7.41662 2.83334 8.33328 2.83334 10.1666Z"
4
+ stroke="currentColor" stroke-width="1.5" />
5
+ <path d="M17.5 8.33331C19.1317 10.5058 19.1317 13.4941 17.5 15.6666" stroke="currentColor" stroke-width="1.5"
6
+ stroke-linecap="round" stroke-linejoin="round" />
7
+ <path d="M19.1775 6.04169C21.8267 9.57085 21.8267 14.4292 19.1775 17.9584" stroke="currentColor" stroke-width="1.5"
8
+ stroke-linecap="round" stroke-linejoin="round" />
9
+ </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,11 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M17.5321 16C17.4186 16 17.3122 15.9579 17.2129 15.8737C16.9789 15.6632 16.9293 15.2674 17.1066 14.9895C18.2199 13.2296 18.2199 10.7707 17.1066 9.01073C16.9293 8.73284 16.9789 8.33706 17.2129 8.12654C17.447 7.91602 17.7803 7.97497 17.9575 8.25285C19.3475 10.4591 19.3475 13.5411 17.9575 15.7474C17.8512 15.9158 17.6952 16 17.5321 16Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M18.8216 19C18.6464 19 18.4821 18.9517 18.3288 18.8552C17.9674 18.6138 17.8908 18.16 18.1646 17.8414C21.0884 14.4042 21.0884 9.59604 18.1646 6.15886C17.8908 5.84025 17.9674 5.38646 18.3288 5.14509C18.6902 4.90371 19.2049 4.9713 19.4786 5.28991C22.8405 9.2388 22.8405 14.7615 19.4786 18.7104C19.3253 18.9035 19.0735 19 18.8216 19Z"
7
+ fill="currentColor" />
8
+ <path
9
+ d="M13.449 4.34597C12.4448 3.76861 11.1628 3.91761 9.85379 4.76503L7.23586 6.46918C7.05655 6.58093 6.85034 6.64612 6.64414 6.64612H5.81034H5.36207C3.19241 6.64612 2 7.88466 2 10.1382V13.8632C2 16.1168 3.19241 17.3553 5.36207 17.3553H5.81034H6.64414C6.85034 17.3553 7.05655 17.4205 7.23586 17.5322L9.85379 19.2364C10.6428 19.7486 11.4138 20 12.131 20C12.5972 20 13.0455 19.8883 13.449 19.6554C14.4441 19.0781 15 17.8768 15 16.2751V7.72635C15 6.12463 14.4441 4.92334 13.449 4.34597Z"
10
+ fill="currentColor" />
11
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M2.83334 10.1666V13.8333C2.83334 15.6666 3.75001 16.5833 5.58334 16.5833H6.89418C7.23334 16.5833 7.57251 16.6841 7.86584 16.8583L10.5425 18.5358C12.8525 19.9841 14.75 18.9299 14.75 16.2074V7.79245C14.75 5.06078 12.8525 4.01578 10.5425 5.46412L7.86584 7.14162C7.57251 7.31578 7.23334 7.41662 6.89418 7.41662H5.58334C3.75001 7.41662 2.83334 8.33328 2.83334 10.1666Z"
4
+ stroke="currentColor" stroke-width="1.5" />
5
+ <path d="M17.5 8.33331C19.1317 10.5058 19.1317 13.4941 17.5 15.6666" stroke="currentColor" stroke-width="1.5"
6
+ stroke-linecap="round" stroke-linejoin="round" />
7
+ <path d="M19.1775 6.04169C21.8267 9.57085 21.8267 14.4292 19.1775 17.9584" stroke="currentColor" stroke-width="1.5"
8
+ stroke-linecap="round" stroke-linejoin="round" />
9
+ </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>