a-icons 1.2.75 → 1.2.77

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.
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BranchLineOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BranchLineOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BranchLineOutlined;
@@ -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 BranchLineOutlined(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: "M21.707 17.293a1 1 0 010 1.414L18 22.414 16.586 21l2-2h-.017c-.877 0-1.524.01-2.126-.173a4.002 4.002 0 01-1.378-.737c-.485-.4-.835-.944-1.322-1.673l-.242-.362-.555-.832 1.664-1.11.555.832.242.363c.556.833.727 1.07.929 1.237.203.167.437.293.688.37.251.075.544.085 1.545.085h.017l-2-2L18 13.586l3.707 3.707zM21.707 5.293a1 1 0 010 1.414L18 10.414 16.586 9l2-2h-.017c-1.001 0-1.294.01-1.545.086a2.001 2.001 0 00-.688.37c-.202.165-.373.403-.929 1.236l-5.15 7.725c-.486.73-.837 1.273-1.322 1.673a4.002 4.002 0 01-1.378.737c-.602.183-1.25.173-2.126.173H2v-2h3.43c1.002 0 1.295-.01 1.546-.086.251-.076.485-.202.688-.37.202-.165.373-.403.929-1.236l5.15-7.725c.486-.73.837-1.273 1.322-1.673a4.003 4.003 0 011.378-.737C17.045 4.99 17.693 5 18.57 5h.017l-2-2L18 1.586l3.707 3.707z",
22
+ fill: "currentColor"
23
+ }), /*#__PURE__*/React.createElement("path", {
24
+ d: "M9.035 13H2v-2h7.035v2zM5.43 5c.878 0 1.525-.01 2.127.173.503.153.971.403 1.378.737.485.4.836.944 1.322 1.673l.242.362.555.832-1.664 1.11-.555-.832-.242-.363c-.556-.833-.727-1.07-.929-1.237a2 2 0 00-.688-.37C6.725 7.01 6.432 7 5.43 7H2V5h3.43z",
25
+ fill: "currentColor"
26
+ }));
27
+ };
28
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
29
+ component: IconNode
30
+ }));
31
+ }
32
+ BranchLineOutlined.displayName = 'BranchLineOutlined';
33
+ export default BranchLineOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function InfoCircleOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace InfoCircleOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default InfoCircleOutlined;
@@ -0,0 +1,31 @@
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 InfoCircleOutlined(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: "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z",
23
+ fill: "currentColor"
24
+ }));
25
+ };
26
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
27
+ component: IconNode
28
+ }));
29
+ }
30
+ InfoCircleOutlined.displayName = 'InfoCircleOutlined';
31
+ export default InfoCircleOutlined;
package/es/index.d.ts CHANGED
@@ -36,6 +36,7 @@ export { default as BookOutlined } from './BookOutlined';
36
36
  export { default as BoxAddFilled } from './BoxAddFilled';
37
37
  export { default as BoxFilled } from './BoxFilled';
38
38
  export { default as BoxOutlined } from './BoxOutlined';
39
+ export { default as BranchLineOutlined } from './BranchLineOutlined';
39
40
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
40
41
  export { default as BrowseEyes } from './BrowseEyes';
41
42
  export { default as BusinessCardOutlined } from './BusinessCardOutlined';
@@ -188,6 +189,7 @@ export { default as IdCardFilled } from './IdCardFilled';
188
189
  export { default as ImacFilled } from './ImacFilled';
189
190
  export { default as ImageFilled } from './ImageFilled';
190
191
  export { default as ImageOutlined } from './ImageOutlined';
192
+ export { default as InfoCircleOutlined } from './InfoCircleOutlined';
191
193
  export { default as InformationFilled } from './InformationFilled';
192
194
  export { default as InformationOutlined } from './InformationOutlined';
193
195
  export { default as InternalResourceOutlined } from './InternalResourceOutlined';
package/es/index.js CHANGED
@@ -36,6 +36,7 @@ export { default as BookOutlined } from './BookOutlined';
36
36
  export { default as BoxAddFilled } from './BoxAddFilled';
37
37
  export { default as BoxFilled } from './BoxFilled';
38
38
  export { default as BoxOutlined } from './BoxOutlined';
39
+ export { default as BranchLineOutlined } from './BranchLineOutlined';
39
40
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
40
41
  export { default as BrowseEyes } from './BrowseEyes';
41
42
  export { default as BusinessCardOutlined } from './BusinessCardOutlined';
@@ -188,6 +189,7 @@ export { default as IdCardFilled } from './IdCardFilled';
188
189
  export { default as ImacFilled } from './ImacFilled';
189
190
  export { default as ImageFilled } from './ImageFilled';
190
191
  export { default as ImageOutlined } from './ImageOutlined';
192
+ export { default as InfoCircleOutlined } from './InfoCircleOutlined';
191
193
  export { default as InformationFilled } from './InformationFilled';
192
194
  export { default as InformationOutlined } from './InformationOutlined';
193
195
  export { default as InternalResourceOutlined } from './InternalResourceOutlined';
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function BranchLineOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace BranchLineOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default BranchLineOutlined;
@@ -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 BranchLineOutlined(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: "M21.707 17.293a1 1 0 010 1.414L18 22.414 16.586 21l2-2h-.017c-.877 0-1.524.01-2.126-.173a4.002 4.002 0 01-1.378-.737c-.485-.4-.835-.944-1.322-1.673l-.242-.362-.555-.832 1.664-1.11.555.832.242.363c.556.833.727 1.07.929 1.237.203.167.437.293.688.37.251.075.544.085 1.545.085h.017l-2-2L18 13.586l3.707 3.707zM21.707 5.293a1 1 0 010 1.414L18 10.414 16.586 9l2-2h-.017c-1.001 0-1.294.01-1.545.086a2.001 2.001 0 00-.688.37c-.202.165-.373.403-.929 1.236l-5.15 7.725c-.486.73-.837 1.273-1.322 1.673a4.002 4.002 0 01-1.378.737c-.602.183-1.25.173-2.126.173H2v-2h3.43c1.002 0 1.295-.01 1.546-.086.251-.076.485-.202.688-.37.202-.165.373-.403.929-1.236l5.15-7.725c.486-.73.837-1.273 1.322-1.673a4.003 4.003 0 011.378-.737C17.045 4.99 17.693 5 18.57 5h.017l-2-2L18 1.586l3.707 3.707z",
65
+ fill: "currentColor"
66
+ }), React.createElement("path", {
67
+ d: "M9.035 13H2v-2h7.035v2zM5.43 5c.878 0 1.525-.01 2.127.173.503.153.971.403 1.378.737.485.4.836.944 1.322 1.673l.242.362.555.832-1.664 1.11-.555-.832-.242-.363c-.556-.833-.727-1.07-.929-1.237a2 2 0 00-.688-.37C6.725 7.01 6.432 7 5.43 7H2V5h3.43z",
68
+ fill: "currentColor"
69
+ }));
70
+ };
71
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
72
+ component: IconNode
73
+ }));
74
+ }
75
+ BranchLineOutlined.displayName = 'BranchLineOutlined';
76
+ exports["default"] = BranchLineOutlined;
@@ -0,0 +1,6 @@
1
+ import { IconProps } from 'a-base-icon/lib/icon';
2
+ declare function InfoCircleOutlined(componentProps: IconProps): JSX.Element;
3
+ declare namespace InfoCircleOutlined {
4
+ var displayName: string;
5
+ }
6
+ export default InfoCircleOutlined;
@@ -0,0 +1,74 @@
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 InfoCircleOutlined(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: "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z",
66
+ fill: "currentColor"
67
+ }));
68
+ };
69
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
70
+ component: IconNode
71
+ }));
72
+ }
73
+ InfoCircleOutlined.displayName = 'InfoCircleOutlined';
74
+ exports["default"] = InfoCircleOutlined;
package/lib/index.d.ts CHANGED
@@ -36,6 +36,7 @@ export { default as BookOutlined } from './BookOutlined';
36
36
  export { default as BoxAddFilled } from './BoxAddFilled';
37
37
  export { default as BoxFilled } from './BoxFilled';
38
38
  export { default as BoxOutlined } from './BoxOutlined';
39
+ export { default as BranchLineOutlined } from './BranchLineOutlined';
39
40
  export { default as BrokenLineOutlined } from './BrokenLineOutlined';
40
41
  export { default as BrowseEyes } from './BrowseEyes';
41
42
  export { default as BusinessCardOutlined } from './BusinessCardOutlined';
@@ -188,6 +189,7 @@ export { default as IdCardFilled } from './IdCardFilled';
188
189
  export { default as ImacFilled } from './ImacFilled';
189
190
  export { default as ImageFilled } from './ImageFilled';
190
191
  export { default as ImageOutlined } from './ImageOutlined';
192
+ export { default as InfoCircleOutlined } from './InfoCircleOutlined';
191
193
  export { default as InformationFilled } from './InformationFilled';
192
194
  export { default as InformationOutlined } from './InformationOutlined';
193
195
  export { default as InternalResourceOutlined } from './InternalResourceOutlined';
package/lib/index.js CHANGED
@@ -8,14 +8,14 @@ var __importDefault = this && this.__importDefault || function (mod) {
8
8
  Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
11
- exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrowseEyes = exports.BrokenLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BellOutlined = exports.BarsOutlined = exports.BarLineOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownOutlined = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AnnouncementOutlined = exports.AnalyzeOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
12
- exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.CheckCircleFilled = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = void 0;
13
- exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ExchangeArrowOutlined = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = void 0;
14
- exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalTransfer = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HttpsLock = exports.HouseOutlined = exports.Hours24 = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = void 0;
15
- exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MoneyReceiveOutlined = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = void 0;
16
- exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonThreeLineOutlined = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = void 0;
17
- exports.TrashCanFilled = exports.TransferMoneyFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = void 0;
18
- exports.WealthOutlined = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoWayFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = void 0;
11
+ exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrowseEyes = exports.BrokenLineOutlined = exports.BranchLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BellOutlined = exports.BarsOutlined = exports.BarLineOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownOutlined = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AnnouncementOutlined = exports.AnalyzeOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
12
+ exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.CheckCircleFilled = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = void 0;
13
+ exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ExchangeArrowOutlined = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = void 0;
14
+ exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalTransfer = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.InfoCircleOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HttpsLock = exports.HouseOutlined = exports.Hours24 = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = void 0;
15
+ exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NoteBoardOutlined = exports.NoteBoardFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MoneyReceiveOutlined = exports.MinusSquareOutlined = exports.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailSettingFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = void 0;
16
+ exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonThreeLineOutlined = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = void 0;
17
+ exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.SubtractFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShieldCheckedOutlined = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = void 0;
18
+ exports.WealthOutlined = exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VoidFilled = exports.UserAccount = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UploadOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnionOutlined = exports.UnbindChainOutlined = exports.TwoWayFilled = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferMoneyFilled = void 0;
19
19
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
20
20
  Object.defineProperty(exports, "ImpassabilityFilled", {
21
21
  enumerable: true,
@@ -282,6 +282,13 @@ Object.defineProperty(exports, "BoxOutlined", {
282
282
  return __importDefault(BoxOutlined_1)["default"];
283
283
  }
284
284
  });
285
+ var BranchLineOutlined_1 = require("./BranchLineOutlined");
286
+ Object.defineProperty(exports, "BranchLineOutlined", {
287
+ enumerable: true,
288
+ get: function get() {
289
+ return __importDefault(BranchLineOutlined_1)["default"];
290
+ }
291
+ });
285
292
  var BrokenLineOutlined_1 = require("./BrokenLineOutlined");
286
293
  Object.defineProperty(exports, "BrokenLineOutlined", {
287
294
  enumerable: true,
@@ -1346,6 +1353,13 @@ Object.defineProperty(exports, "ImageOutlined", {
1346
1353
  return __importDefault(ImageOutlined_1)["default"];
1347
1354
  }
1348
1355
  });
1356
+ var InfoCircleOutlined_1 = require("./InfoCircleOutlined");
1357
+ Object.defineProperty(exports, "InfoCircleOutlined", {
1358
+ enumerable: true,
1359
+ get: function get() {
1360
+ return __importDefault(InfoCircleOutlined_1)["default"];
1361
+ }
1362
+ });
1349
1363
  var InformationFilled_1 = require("./InformationFilled");
1350
1364
  Object.defineProperty(exports, "InformationFilled", {
1351
1365
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.2.75",
3
+ "version": "1.2.77",
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": "^3.2.49"
24
24
  },
25
- "gitHead": "da5fe250a07e6d270b7406bf087bb97337089120"
25
+ "gitHead": "bfa6aaa9edf75565a7651de01fc55cab01fc577e"
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 BranchLineOutlined(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="M21.707 17.293a1 1 0 010 1.414L18 22.414 16.586 21l2-2h-.017c-.877 0-1.524.01-2.126-.173a4.002 4.002 0 01-1.378-.737c-.485-.4-.835-.944-1.322-1.673l-.242-.362-.555-.832 1.664-1.11.555.832.242.363c.556.833.727 1.07.929 1.237.203.167.437.293.688.37.251.075.544.085 1.545.085h.017l-2-2L18 13.586l3.707 3.707zM21.707 5.293a1 1 0 010 1.414L18 10.414 16.586 9l2-2h-.017c-1.001 0-1.294.01-1.545.086a2.001 2.001 0 00-.688.37c-.202.165-.373.403-.929 1.236l-5.15 7.725c-.486.73-.837 1.273-1.322 1.673a4.002 4.002 0 01-1.378.737c-.602.183-1.25.173-2.126.173H2v-2h3.43c1.002 0 1.295-.01 1.546-.086.251-.076.485-.202.688-.37.202-.165.373-.403.929-1.236l5.15-7.725c.486-.73.837-1.273 1.322-1.673a4.003 4.003 0 011.378-.737C17.045 4.99 17.693 5 18.57 5h.017l-2-2L18 1.586l3.707 3.707z"
9
+ fill="currentColor"
10
+ />
11
+ <path
12
+ d="M9.035 13H2v-2h7.035v2zM5.43 5c.878 0 1.525-.01 2.127.173.503.153.971.403 1.378.737.485.4.836.944 1.322 1.673l.242.362.555.832-1.664 1.11-.555-.832-.242-.363c-.556-.833-.727-1.07-.929-1.237a2 2 0 00-.688-.37C6.725 7.01 6.432 7 5.43 7H2V5h3.43z"
13
+ fill="currentColor"
14
+ />
15
+ </svg>
16
+ );
17
+
18
+ return <Icon {...componentProps} component={IconNode} />;
19
+ }
20
+
21
+ BranchLineOutlined.displayName = 'BranchLineOutlined';
22
+ export default BranchLineOutlined;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function InfoCircleOutlined(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="M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1zm0 2a9 9 0 100 18 9 9 0 000-18zm1 14.5h-2v-8h2v8zm0-9h-2v-2h2v2z"
9
+ fill="currentColor"
10
+ />
11
+ </svg>
12
+ );
13
+
14
+ return <Icon {...componentProps} component={IconNode} />;
15
+ }
16
+
17
+ InfoCircleOutlined.displayName = 'InfoCircleOutlined';
18
+ export default InfoCircleOutlined;
package/src/index.tsx CHANGED
@@ -36,6 +36,7 @@ export { default as BookOutlined } from './BookOutlined'
36
36
  export { default as BoxAddFilled } from './BoxAddFilled'
37
37
  export { default as BoxFilled } from './BoxFilled'
38
38
  export { default as BoxOutlined } from './BoxOutlined'
39
+ export { default as BranchLineOutlined } from './BranchLineOutlined'
39
40
  export { default as BrokenLineOutlined } from './BrokenLineOutlined'
40
41
  export { default as BrowseEyes } from './BrowseEyes'
41
42
  export { default as BusinessCardOutlined } from './BusinessCardOutlined'
@@ -188,6 +189,7 @@ export { default as IdCardFilled } from './IdCardFilled'
188
189
  export { default as ImacFilled } from './ImacFilled'
189
190
  export { default as ImageFilled } from './ImageFilled'
190
191
  export { default as ImageOutlined } from './ImageOutlined'
192
+ export { default as InfoCircleOutlined } from './InfoCircleOutlined'
191
193
  export { default as InformationFilled } from './InformationFilled'
192
194
  export { default as InformationOutlined } from './InformationOutlined'
193
195
  export { default as InternalResourceOutlined } from './InternalResourceOutlined'
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.707 17.293C22.0976 17.6835 22.0976 18.3165 21.707 18.707L18 22.4141L16.5859 21L18.5859 19H18.5693C17.6924 19 17.0452 19.0099 16.4434 18.8271C15.9402 18.6743 15.4717 18.4237 15.0654 18.0898C14.5796 17.6905 14.2295 17.1465 13.7432 16.417L13.501 16.0547L12.9463 15.2227L14.6104 14.1133L15.165 14.9453L15.4072 15.3076C15.9627 16.1409 16.1336 16.3786 16.3359 16.5449C16.539 16.7118 16.7729 16.8377 17.0244 16.9141C17.275 16.9901 17.568 17 18.5693 17H18.5859L16.5859 15L18 13.5859L21.707 17.293Z" fill="currentColor"/>
3
+ <path d="M21.707 5.29297C22.0976 5.68349 22.0976 6.31651 21.707 6.70703L18 10.4141L16.5859 9L18.5859 7H18.5693C17.568 7 17.275 7.00986 17.0244 7.08594C16.7729 7.16233 16.539 7.28817 16.3359 7.45508C16.1336 7.6214 15.9627 7.85911 15.4072 8.69238L10.2568 16.417C9.77051 17.1465 9.42036 17.6905 8.93457 18.0898C8.52833 18.4237 8.0598 18.6743 7.55664 18.8271C6.95476 19.0099 6.30758 19 5.43066 19H2V17H5.43066C6.43197 17 6.72498 16.9901 6.97559 16.9141C7.22712 16.8377 7.46096 16.7118 7.66406 16.5449C7.86642 16.3786 8.03725 16.1409 8.59277 15.3076L13.7432 7.58301C14.2295 6.85352 14.5796 6.30955 15.0654 5.91016C15.4717 5.57626 15.9402 5.32566 16.4434 5.17285C17.0452 4.99008 17.6924 5 18.5693 5H18.5859L16.5859 3L18 1.58594L21.707 5.29297Z" fill="currentColor"/>
4
+ <path d="M9.03516 13H2V11H9.03516V13Z" fill="currentColor"/>
5
+ <path d="M5.43066 5C6.30758 5 6.95476 4.99008 7.55664 5.17285C8.0598 5.32566 8.52833 5.57626 8.93457 5.91016C9.42036 6.30955 9.77051 6.85351 10.2568 7.58301L10.499 7.94531L11.0537 8.77734L9.38965 9.88672L8.83496 9.05469L8.59277 8.69238C8.03725 7.8591 7.86642 7.6214 7.66406 7.45508C7.46096 7.28817 7.22713 7.16233 6.97559 7.08594C6.72498 7.00986 6.43197 7 5.43066 7H2V5H5.43066Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1ZM12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM13 17.5H11V9.5H13V17.5ZM13 8.5H11V6.5H13V8.5Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.707 17.293C22.0976 17.6835 22.0976 18.3165 21.707 18.707L18 22.4141L16.5859 21L18.5859 19H18.5693C17.6924 19 17.0452 19.0099 16.4434 18.8271C15.9402 18.6743 15.4717 18.4237 15.0654 18.0898C14.5796 17.6905 14.2295 17.1465 13.7432 16.417L13.501 16.0547L12.9463 15.2227L14.6104 14.1133L15.165 14.9453L15.4072 15.3076C15.9627 16.1409 16.1336 16.3786 16.3359 16.5449C16.539 16.7118 16.7729 16.8377 17.0244 16.9141C17.275 16.9901 17.568 17 18.5693 17H18.5859L16.5859 15L18 13.5859L21.707 17.293Z" fill="currentColor"/>
3
+ <path d="M21.707 5.29297C22.0976 5.68349 22.0976 6.31651 21.707 6.70703L18 10.4141L16.5859 9L18.5859 7H18.5693C17.568 7 17.275 7.00986 17.0244 7.08594C16.7729 7.16233 16.539 7.28817 16.3359 7.45508C16.1336 7.6214 15.9627 7.85911 15.4072 8.69238L10.2568 16.417C9.77051 17.1465 9.42036 17.6905 8.93457 18.0898C8.52833 18.4237 8.0598 18.6743 7.55664 18.8271C6.95476 19.0099 6.30758 19 5.43066 19H2V17H5.43066C6.43197 17 6.72498 16.9901 6.97559 16.9141C7.22712 16.8377 7.46096 16.7118 7.66406 16.5449C7.86642 16.3786 8.03725 16.1409 8.59277 15.3076L13.7432 7.58301C14.2295 6.85352 14.5796 6.30955 15.0654 5.91016C15.4717 5.57626 15.9402 5.32566 16.4434 5.17285C17.0452 4.99008 17.6924 5 18.5693 5H18.5859L16.5859 3L18 1.58594L21.707 5.29297Z" fill="currentColor"/>
4
+ <path d="M9.03516 13H2V11H9.03516V13Z" fill="currentColor"/>
5
+ <path d="M5.43066 5C6.30758 5 6.95476 4.99008 7.55664 5.17285C8.0598 5.32566 8.52833 5.57626 8.93457 5.91016C9.42036 6.30955 9.77051 6.85351 10.2568 7.58301L10.499 7.94531L11.0537 8.77734L9.38965 9.88672L8.83496 9.05469L8.59277 8.69238C8.03725 7.8591 7.86642 7.6214 7.66406 7.45508C7.46096 7.28817 7.22713 7.16233 6.97559 7.08594C6.72498 7.00986 6.43197 7 5.43066 7H2V5H5.43066Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1ZM12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3ZM13 17.5H11V9.5H13V17.5ZM13 8.5H11V6.5H13V8.5Z" fill="currentColor"/>
3
+ </svg>