a-icons 1.1.6 → 1.1.8

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 (41) hide show
  1. package/es/ClockOutline.d.ts +7 -0
  2. package/es/ClockOutline.js +36 -0
  3. package/es/ForkFilled.d.ts +7 -0
  4. package/es/ForkFilled.js +34 -0
  5. package/es/ForkOutlined.d.ts +7 -0
  6. package/es/ForkOutlined.js +40 -0
  7. package/es/SpeakerFilled.d.ts +7 -0
  8. package/es/SpeakerFilled.js +34 -0
  9. package/es/SpeakerOutlined.d.ts +7 -0
  10. package/es/SpeakerOutlined.js +38 -0
  11. package/es/index.d.ts +5 -0
  12. package/es/index.js +5 -0
  13. package/lib/ClockOutline.d.ts +7 -0
  14. package/lib/ClockOutline.js +79 -0
  15. package/lib/ForkFilled.d.ts +7 -0
  16. package/lib/ForkFilled.js +77 -0
  17. package/lib/ForkOutlined.d.ts +7 -0
  18. package/lib/ForkOutlined.js +83 -0
  19. package/lib/SpeakerFilled.d.ts +7 -0
  20. package/lib/SpeakerFilled.js +77 -0
  21. package/lib/SpeakerOutlined.d.ts +7 -0
  22. package/lib/SpeakerOutlined.js +81 -0
  23. package/lib/index.d.ts +5 -0
  24. package/lib/index.js +40 -4
  25. package/package.json +2 -2
  26. package/src/ClockOutline.tsx +24 -0
  27. package/src/ForkFilled.tsx +22 -0
  28. package/src/ForkOutlined.tsx +28 -0
  29. package/src/SpeakerFilled.tsx +22 -0
  30. package/src/SpeakerOutlined.tsx +26 -0
  31. package/src/index.tsx +5 -0
  32. package/svgs/filled/fork-filled.svg +17 -0
  33. package/svgs/filled/speaker-filled.svg +11 -0
  34. package/svgs/outlined/clock-outline.svg +4 -0
  35. package/svgs/outlined/fork-outlined.svg +18 -0
  36. package/svgs/outlined/speaker-outlined.svg +9 -0
  37. package/tmpAllSvgs/clock-outline.svg +4 -0
  38. package/tmpAllSvgs/fork-filled.svg +17 -0
  39. package/tmpAllSvgs/fork-outlined.svg +18 -0
  40. package/tmpAllSvgs/speaker-filled.svg +11 -0
  41. package/tmpAllSvgs/speaker-outlined.svg +9 -0
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ClockOutline(componentProps: IconProps): JSX.Element;
4
+ declare namespace ClockOutline {
5
+ var displayName: string;
6
+ }
7
+ export default ClockOutline;
@@ -0,0 +1,36 @@
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 ClockOutline(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: "M8.65 7.59a.75.75 0 00-1.06 1.06l3.78 3.78v4.69a.75.75 0 001.5 0v-5a.75.75 0 00-.22-.53l-4-4z",
23
+ fill: "currentColor"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm4.24 18.74a6.51 6.51 0 006.5-6.5V10a6.51 6.51 0 00-6.5-6.5H10A6.51 6.51 0 003.5 10v4.24a6.51 6.51 0 006.5 6.5h4.24z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+ ClockOutline.displayName = 'ClockOutline';
36
+ export default ClockOutline;
@@ -0,0 +1,7 @@
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;
@@ -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 ForkFilled(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 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",
23
+ fill: "currentColor"
24
+ }), /*#__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",
26
+ fill: "currentColor"
27
+ }));
28
+ };
29
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
30
+ component: IconNode
31
+ }));
32
+ }
33
+ ForkFilled.displayName = 'ForkFilled';
34
+ export default ForkFilled;
@@ -0,0 +1,7 @@
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;
@@ -0,0 +1,40 @@
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;
@@ -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;
package/es/index.d.ts CHANGED
@@ -40,6 +40,7 @@ export { default as ChevronUpFilled } from './ChevronUpFilled';
40
40
  export { default as CirclePlusFilled } from './CirclePlusFilled';
41
41
  export { default as ClockCircleFilled } from './ClockCircleFilled';
42
42
  export { default as ClockCircleOutline } from './ClockCircleOutline';
43
+ export { default as ClockOutline } from './ClockOutline';
43
44
  export { default as CloseCircleFilled } from './CloseCircleFilled';
44
45
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
45
46
  export { default as CloseFilled } from './CloseFilled';
@@ -83,6 +84,8 @@ export { default as FilterFilled } from './FilterFilled';
83
84
  export { default as FilterOutlined } from './FilterOutlined';
84
85
  export { default as FireFilled } from './FireFilled';
85
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
+ export { default as ForkFilled } from './ForkFilled';
88
+ export { default as ForkOutlined } from './ForkOutlined';
86
89
  export { default as FormOutlined } from './FormOutlined';
87
90
  export { default as FunnelFilled } from './FunnelFilled';
88
91
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -174,6 +177,8 @@ export { default as ShieldFilled } from './ShieldFilled';
174
177
  export { default as ShieldOutlined } from './ShieldOutlined';
175
178
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
176
179
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
180
+ export { default as SpeakerFilled } from './SpeakerFilled';
181
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
177
182
  export { default as SquareFilled } from './SquareFilled';
178
183
  export { default as StampFilled } from './StampFilled';
179
184
  export { default as StarFilled } from './StarFilled';
package/es/index.js CHANGED
@@ -40,6 +40,7 @@ export { default as ChevronUpFilled } from './ChevronUpFilled';
40
40
  export { default as CirclePlusFilled } from './CirclePlusFilled';
41
41
  export { default as ClockCircleFilled } from './ClockCircleFilled';
42
42
  export { default as ClockCircleOutline } from './ClockCircleOutline';
43
+ export { default as ClockOutline } from './ClockOutline';
43
44
  export { default as CloseCircleFilled } from './CloseCircleFilled';
44
45
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
45
46
  export { default as CloseFilled } from './CloseFilled';
@@ -83,6 +84,8 @@ export { default as FilterFilled } from './FilterFilled';
83
84
  export { default as FilterOutlined } from './FilterOutlined';
84
85
  export { default as FireFilled } from './FireFilled';
85
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
+ export { default as ForkFilled } from './ForkFilled';
88
+ export { default as ForkOutlined } from './ForkOutlined';
86
89
  export { default as FormOutlined } from './FormOutlined';
87
90
  export { default as FunnelFilled } from './FunnelFilled';
88
91
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -174,6 +177,8 @@ export { default as ShieldFilled } from './ShieldFilled';
174
177
  export { default as ShieldOutlined } from './ShieldOutlined';
175
178
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
176
179
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
180
+ export { default as SpeakerFilled } from './SpeakerFilled';
181
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
177
182
  export { default as SquareFilled } from './SquareFilled';
178
183
  export { default as StampFilled } from './StampFilled';
179
184
  export { default as StarFilled } from './StarFilled';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function ClockOutline(componentProps: IconProps): JSX.Element;
4
+ declare namespace ClockOutline {
5
+ var displayName: string;
6
+ }
7
+ export default ClockOutline;
@@ -0,0 +1,79 @@
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 ClockOutline(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: "M8.65 7.59a.75.75 0 00-1.06 1.06l3.78 3.78v4.69a.75.75 0 001.5 0v-5a.75.75 0 00-.22-.53l-4-4z",
66
+ fill: "currentColor"
67
+ }), React.createElement("path", {
68
+ fillRule: "evenodd",
69
+ clipRule: "evenodd",
70
+ d: "M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm4.24 18.74a6.51 6.51 0 006.5-6.5V10a6.51 6.51 0 00-6.5-6.5H10A6.51 6.51 0 003.5 10v4.24a6.51 6.51 0 006.5 6.5h4.24z",
71
+ fill: "currentColor"
72
+ }));
73
+ };
74
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
75
+ component: IconNode
76
+ }));
77
+ }
78
+ ClockOutline.displayName = 'ClockOutline';
79
+ exports["default"] = ClockOutline;
@@ -0,0 +1,7 @@
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;
@@ -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 ForkFilled(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: "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",
66
+ fill: "currentColor"
67
+ }), 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",
69
+ fill: "currentColor"
70
+ }));
71
+ };
72
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
73
+ component: IconNode
74
+ }));
75
+ }
76
+ ForkFilled.displayName = 'ForkFilled';
77
+ exports["default"] = ForkFilled;
@@ -0,0 +1,7 @@
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;
@@ -0,0 +1,83 @@
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 ForkOutlined(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: "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"
70
+ }), 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"
76
+ }));
77
+ };
78
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
79
+ component: IconNode
80
+ }));
81
+ }
82
+ ForkOutlined.displayName = 'ForkOutlined';
83
+ exports["default"] = ForkOutlined;
@@ -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;
package/lib/index.d.ts CHANGED
@@ -40,6 +40,7 @@ export { default as ChevronUpFilled } from './ChevronUpFilled';
40
40
  export { default as CirclePlusFilled } from './CirclePlusFilled';
41
41
  export { default as ClockCircleFilled } from './ClockCircleFilled';
42
42
  export { default as ClockCircleOutline } from './ClockCircleOutline';
43
+ export { default as ClockOutline } from './ClockOutline';
43
44
  export { default as CloseCircleFilled } from './CloseCircleFilled';
44
45
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
45
46
  export { default as CloseFilled } from './CloseFilled';
@@ -83,6 +84,8 @@ export { default as FilterFilled } from './FilterFilled';
83
84
  export { default as FilterOutlined } from './FilterOutlined';
84
85
  export { default as FireFilled } from './FireFilled';
85
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
+ export { default as ForkFilled } from './ForkFilled';
88
+ export { default as ForkOutlined } from './ForkOutlined';
86
89
  export { default as FormOutlined } from './FormOutlined';
87
90
  export { default as FunnelFilled } from './FunnelFilled';
88
91
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -174,6 +177,8 @@ export { default as ShieldFilled } from './ShieldFilled';
174
177
  export { default as ShieldOutlined } from './ShieldOutlined';
175
178
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
176
179
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
180
+ export { default as SpeakerFilled } from './SpeakerFilled';
181
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
177
182
  export { default as SquareFilled } from './SquareFilled';
178
183
  export { default as StampFilled } from './StampFilled';
179
184
  export { default as StarFilled } from './StarFilled';
package/lib/index.js CHANGED
@@ -8,10 +8,11 @@ var __importDefault = this && this.__importDefault || function (mod) {
8
8
  Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
11
- exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = 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.KeyFilled = 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 = void 0;
13
- exports.ReceiptFilled = 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 = 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 = void 0;
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;
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,
@@ -306,6 +307,13 @@ Object.defineProperty(exports, "ClockCircleOutline", {
306
307
  return __importDefault(ClockCircleOutline_1)["default"];
307
308
  }
308
309
  });
310
+ var ClockOutline_1 = require("./ClockOutline");
311
+ Object.defineProperty(exports, "ClockOutline", {
312
+ enumerable: true,
313
+ get: function get() {
314
+ return __importDefault(ClockOutline_1)["default"];
315
+ }
316
+ });
309
317
  var CloseCircleFilled_1 = require("./CloseCircleFilled");
310
318
  Object.defineProperty(exports, "CloseCircleFilled", {
311
319
  enumerable: true,
@@ -607,6 +615,20 @@ Object.defineProperty(exports, "FolderAddOutlined", {
607
615
  return __importDefault(FolderAddOutlined_1)["default"];
608
616
  }
609
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
+ });
610
632
  var FormOutlined_1 = require("./FormOutlined");
611
633
  Object.defineProperty(exports, "FormOutlined", {
612
634
  enumerable: true,
@@ -1244,6 +1266,20 @@ Object.defineProperty(exports, "ShopKeeperOutlined", {
1244
1266
  return __importDefault(ShopKeeperOutlined_1)["default"];
1245
1267
  }
1246
1268
  });
1269
+ var SpeakerFilled_1 = require("./SpeakerFilled");
1270
+ Object.defineProperty(exports, "SpeakerFilled", {
1271
+ enumerable: true,
1272
+ get: function get() {
1273
+ return __importDefault(SpeakerFilled_1)["default"];
1274
+ }
1275
+ });
1276
+ var SpeakerOutlined_1 = require("./SpeakerOutlined");
1277
+ Object.defineProperty(exports, "SpeakerOutlined", {
1278
+ enumerable: true,
1279
+ get: function get() {
1280
+ return __importDefault(SpeakerOutlined_1)["default"];
1281
+ }
1282
+ });
1247
1283
  var SquareFilled_1 = require("./SquareFilled");
1248
1284
  Object.defineProperty(exports, "SquareFilled", {
1249
1285
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.1.6",
3
+ "version": "1.1.8",
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": "ec673e45d6e92b52a4385d137627199bece49544"
25
+ "gitHead": "0356d455d5c4508fcbb20357b08b0baafce6dc67"
26
26
  }
@@ -0,0 +1,24 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function ClockOutline(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="M8.65 7.59a.75.75 0 00-1.06 1.06l3.78 3.78v4.69a.75.75 0 001.5 0v-5a.75.75 0 00-.22-.53l-4-4z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ fillRule="evenodd"
13
+ clipRule="evenodd"
14
+ d="M10 2h4.24a8 8 0 018 8v4.24a8 8 0 01-8 8H10a8 8 0 01-8-8V10a8 8 0 018-8zm4.24 18.74a6.51 6.51 0 006.5-6.5V10a6.51 6.51 0 00-6.5-6.5H10A6.51 6.51 0 003.5 10v4.24a6.51 6.51 0 006.5 6.5h4.24z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+
20
+ return <Icon {...componentProps} component={IconNode} />;
21
+ }
22
+
23
+ ClockOutline.displayName = 'ClockOutline';
24
+ export default ClockOutline;
@@ -0,0 +1,22 @@
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;
@@ -0,0 +1,28 @@
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;
@@ -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;
package/src/index.tsx CHANGED
@@ -40,6 +40,7 @@ export { default as ChevronUpFilled } from './ChevronUpFilled';
40
40
  export { default as CirclePlusFilled } from './CirclePlusFilled';
41
41
  export { default as ClockCircleFilled } from './ClockCircleFilled';
42
42
  export { default as ClockCircleOutline } from './ClockCircleOutline';
43
+ export { default as ClockOutline } from './ClockOutline';
43
44
  export { default as CloseCircleFilled } from './CloseCircleFilled';
44
45
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
45
46
  export { default as CloseFilled } from './CloseFilled';
@@ -83,6 +84,8 @@ export { default as FilterFilled } from './FilterFilled';
83
84
  export { default as FilterOutlined } from './FilterOutlined';
84
85
  export { default as FireFilled } from './FireFilled';
85
86
  export { default as FolderAddOutlined } from './FolderAddOutlined';
87
+ export { default as ForkFilled } from './ForkFilled';
88
+ export { default as ForkOutlined } from './ForkOutlined';
86
89
  export { default as FormOutlined } from './FormOutlined';
87
90
  export { default as FunnelFilled } from './FunnelFilled';
88
91
  export { default as FunnelOutlined } from './FunnelOutlined';
@@ -174,6 +177,8 @@ export { default as ShieldFilled } from './ShieldFilled';
174
177
  export { default as ShieldOutlined } from './ShieldOutlined';
175
178
  export { default as ShopKeeperFilled } from './ShopKeeperFilled';
176
179
  export { default as ShopKeeperOutlined } from './ShopKeeperOutlined';
180
+ export { default as SpeakerFilled } from './SpeakerFilled';
181
+ export { default as SpeakerOutlined } from './SpeakerOutlined';
177
182
  export { default as SquareFilled } from './SquareFilled';
178
183
  export { default as StampFilled } from './StampFilled';
179
184
  export { default as StarFilled } from './StarFilled';
@@ -0,0 +1,17 @@
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>
@@ -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,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.64996 7.58999C8.35445 7.31464 7.89395 7.32276 7.60834 7.60837C7.32273 7.89399 7.31461 8.35448 7.58996 8.64999L11.37 12.43V17.12C11.37 17.5342 11.7058 17.87 12.12 17.87C12.5342 17.87 12.87 17.5342 12.87 17.12V12.12C12.8698 11.9211 12.7907 11.7305 12.65 11.59L8.64996 7.58999Z" fill="currentColor" />
3
+ <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 2ZM14.24 20.74C17.8276 20.7345 20.7345 17.8276 20.74 14.24V10C20.7345 6.41243 17.8276 3.50551 14.24 3.5H10C6.41243 3.50551 3.50551 6.41243 3.5 10V14.24C3.50551 17.8276 6.41243 20.7345 10 20.74H14.24Z" fill="currentColor" />
4
+ </svg>
@@ -0,0 +1,18 @@
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>
@@ -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,4 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.64996 7.58999C8.35445 7.31464 7.89395 7.32276 7.60834 7.60837C7.32273 7.89399 7.31461 8.35448 7.58996 8.64999L11.37 12.43V17.12C11.37 17.5342 11.7058 17.87 12.12 17.87C12.5342 17.87 12.87 17.5342 12.87 17.12V12.12C12.8698 11.9211 12.7907 11.7305 12.65 11.59L8.64996 7.58999Z" fill="currentColor" />
3
+ <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 2ZM14.24 20.74C17.8276 20.7345 20.7345 17.8276 20.74 14.24V10C20.7345 6.41243 17.8276 3.50551 14.24 3.5H10C6.41243 3.50551 3.50551 6.41243 3.5 10V14.24C3.50551 17.8276 6.41243 20.7345 10 20.74H14.24Z" fill="currentColor" />
4
+ </svg>
@@ -0,0 +1,17 @@
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>
@@ -0,0 +1,18 @@
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>
@@ -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>