a-icons 1.1.24 → 1.1.26

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,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function AddOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace AddOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default AddOutlined;
@@ -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 AddOutlined(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
+ fillRule: "evenodd",
23
+ clipRule: "evenodd",
24
+ d: "M6 2h12a4 4 0 014 4v12a4 4 0 01-4 4H6a4 4 0 01-4-4V6a4 4 0 014-4zm13.704 17.704A2.41 2.41 0 0020.41 18V6A2.41 2.41 0 0018 3.59H6A2.41 2.41 0 003.59 6v12A2.41 2.41 0 006 20.41h12a2.41 2.41 0 001.704-.706z",
25
+ fill: "currentColor"
26
+ }), /*#__PURE__*/React.createElement("path", {
27
+ d: "M16 11.25h-3.25V8a.75.75 0 00-1.5 0v3.25H8a.75.75 0 000 1.5h3.25V16a.75.75 0 001.5 0v-3.25H16a.75.75 0 000-1.5z",
28
+ fill: "currentColor"
29
+ }));
30
+ };
31
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
32
+ component: IconNode
33
+ }));
34
+ }
35
+ AddOutlined.displayName = 'AddOutlined';
36
+ export default AddOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function OffOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace OffOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default OffOutlined;
@@ -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 OffOutlined(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.197 4.8c.452.37.867.79 1.238 1.248a8.912 8.912 0 011.965 5.616c0 4.825-3.76 8.736-8.4 8.736-4.64 0-8.4-3.911-8.4-8.736 0-2.139.739-4.098 1.965-5.616.37-.459.786-.877 1.238-1.248M12 9.6v-6",
23
+ stroke: "currentColor",
24
+ strokeWidth: 1.6,
25
+ strokeLinecap: "round"
26
+ }));
27
+ };
28
+ return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
29
+ component: IconNode
30
+ }));
31
+ }
32
+ OffOutlined.displayName = 'OffOutlined';
33
+ export default OffOutlined;
package/es/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
+ export { default as AddOutlined } from './AddOutlined';
3
4
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
5
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
6
  export { default as ArrowDownFilled } from './ArrowDownFilled';
@@ -130,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
130
131
  export { default as MoveOutlined } from './MoveOutlined';
131
132
  export { default as OctagonPromptFilled } from './OctagonPromptFilled';
132
133
  export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
134
+ export { default as OffOutlined } from './OffOutlined';
133
135
  export { default as OngoingFilled } from './OngoingFilled';
134
136
  export { default as OpenMailFilled } from './OpenMailFilled';
135
137
  export { default as OpenMailOutlined } from './OpenMailOutlined';
package/es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
+ export { default as AddOutlined } from './AddOutlined';
3
4
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
5
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
6
  export { default as ArrowDownFilled } from './ArrowDownFilled';
@@ -130,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
130
131
  export { default as MoveOutlined } from './MoveOutlined';
131
132
  export { default as OctagonPromptFilled } from './OctagonPromptFilled';
132
133
  export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
134
+ export { default as OffOutlined } from './OffOutlined';
133
135
  export { default as OngoingFilled } from './OngoingFilled';
134
136
  export { default as OpenMailFilled } from './OpenMailFilled';
135
137
  export { default as OpenMailOutlined } from './OpenMailOutlined';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function AddOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace AddOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default AddOutlined;
@@ -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 AddOutlined(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
+ fillRule: "evenodd",
66
+ clipRule: "evenodd",
67
+ d: "M6 2h12a4 4 0 014 4v12a4 4 0 01-4 4H6a4 4 0 01-4-4V6a4 4 0 014-4zm13.704 17.704A2.41 2.41 0 0020.41 18V6A2.41 2.41 0 0018 3.59H6A2.41 2.41 0 003.59 6v12A2.41 2.41 0 006 20.41h12a2.41 2.41 0 001.704-.706z",
68
+ fill: "currentColor"
69
+ }), React.createElement("path", {
70
+ d: "M16 11.25h-3.25V8a.75.75 0 00-1.5 0v3.25H8a.75.75 0 000 1.5h3.25V16a.75.75 0 001.5 0v-3.25H16a.75.75 0 000-1.5z",
71
+ fill: "currentColor"
72
+ }));
73
+ };
74
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
75
+ component: IconNode
76
+ }));
77
+ }
78
+ AddOutlined.displayName = 'AddOutlined';
79
+ exports["default"] = AddOutlined;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from 'a-base-icon/lib/icon';
3
+ declare function OffOutlined(componentProps: IconProps): JSX.Element;
4
+ declare namespace OffOutlined {
5
+ var displayName: string;
6
+ }
7
+ export default OffOutlined;
@@ -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 OffOutlined(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.197 4.8c.452.37.867.79 1.238 1.248a8.912 8.912 0 011.965 5.616c0 4.825-3.76 8.736-8.4 8.736-4.64 0-8.4-3.911-8.4-8.736 0-2.139.739-4.098 1.965-5.616.37-.459.786-.877 1.238-1.248M12 9.6v-6",
66
+ stroke: "currentColor",
67
+ strokeWidth: 1.6,
68
+ strokeLinecap: "round"
69
+ }));
70
+ };
71
+ return React.createElement(icon_1["default"], __assign({}, componentProps, {
72
+ component: IconNode
73
+ }));
74
+ }
75
+ OffOutlined.displayName = 'OffOutlined';
76
+ exports["default"] = OffOutlined;
package/lib/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
+ export { default as AddOutlined } from './AddOutlined';
3
4
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
5
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
6
  export { default as ArrowDownFilled } from './ArrowDownFilled';
@@ -130,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
130
131
  export { default as MoveOutlined } from './MoveOutlined';
131
132
  export { default as OctagonPromptFilled } from './OctagonPromptFilled';
132
133
  export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
134
+ export { default as OffOutlined } from './OffOutlined';
133
135
  export { default as OngoingFilled } from './OngoingFilled';
134
136
  export { default as OpenMailFilled } from './OpenMailFilled';
135
137
  export { default as OpenMailOutlined } from './OpenMailOutlined';
package/lib/index.js CHANGED
@@ -8,11 +8,11 @@ var __importDefault = this && this.__importDefault || function (mod) {
8
8
  Object.defineProperty(exports, "__esModule", {
9
9
  value: true
10
10
  });
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.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.FilterCupOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = 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.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = 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.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.OtcMerchant = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = 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.LanguageOutlined = exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = void 0;
14
- exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SignalDiffusionOutlined = 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.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = void 0;
15
- exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = void 0;
11
+ 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.AddOutlined = exports.AddFilled = exports.ImpassabilityFilled = void 0;
12
+ 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.FilterCupOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = 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.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = void 0;
13
+ 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.OtcMerchant = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = 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.LanguageOutlined = exports.KeyFilled = exports.InviteFriendFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = void 0;
14
+ exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SignalDiffusionOutlined = 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.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = void 0;
15
+ exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UserOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = void 0;
16
16
  var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
17
17
  Object.defineProperty(exports, "ImpassabilityFilled", {
18
18
  enumerable: true,
@@ -27,6 +27,13 @@ Object.defineProperty(exports, "AddFilled", {
27
27
  return __importDefault(AddFilled_1)["default"];
28
28
  }
29
29
  });
30
+ var AddOutlined_1 = require("./AddOutlined");
31
+ Object.defineProperty(exports, "AddOutlined", {
32
+ enumerable: true,
33
+ get: function get() {
34
+ return __importDefault(AddOutlined_1)["default"];
35
+ }
36
+ });
30
37
  var AlertTriangleFilled_1 = require("./AlertTriangleFilled");
31
38
  Object.defineProperty(exports, "AlertTriangleFilled", {
32
39
  enumerable: true,
@@ -937,6 +944,13 @@ Object.defineProperty(exports, "OctagonPromptOutlined", {
937
944
  return __importDefault(OctagonPromptOutlined_1)["default"];
938
945
  }
939
946
  });
947
+ var OffOutlined_1 = require("./OffOutlined");
948
+ Object.defineProperty(exports, "OffOutlined", {
949
+ enumerable: true,
950
+ get: function get() {
951
+ return __importDefault(OffOutlined_1)["default"];
952
+ }
953
+ });
940
954
  var OngoingFilled_1 = require("./OngoingFilled");
941
955
  Object.defineProperty(exports, "OngoingFilled", {
942
956
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a-icons",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
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": "5baaa6834e78fbecd6093bf2b24e1d11fb6d916c"
25
+ "gitHead": "8e5cb592b7740806345a66d70a298454c4e0f704"
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 AddOutlined(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
+ fillRule="evenodd"
9
+ clipRule="evenodd"
10
+ d="M6 2h12a4 4 0 014 4v12a4 4 0 01-4 4H6a4 4 0 01-4-4V6a4 4 0 014-4zm13.704 17.704A2.41 2.41 0 0020.41 18V6A2.41 2.41 0 0018 3.59H6A2.41 2.41 0 003.59 6v12A2.41 2.41 0 006 20.41h12a2.41 2.41 0 001.704-.706z"
11
+ fill="currentColor"
12
+ />
13
+ <path
14
+ d="M16 11.25h-3.25V8a.75.75 0 00-1.5 0v3.25H8a.75.75 0 000 1.5h3.25V16a.75.75 0 001.5 0v-3.25H16a.75.75 0 000-1.5z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+
20
+ return <Icon {...componentProps} component={IconNode} />;
21
+ }
22
+
23
+ AddOutlined.displayName = 'AddOutlined';
24
+ export default AddOutlined;
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+ import Icon, { IconProps } from 'a-base-icon/lib/icon';
3
+
4
+ function OffOutlined(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.197 4.8c.452.37.867.79 1.238 1.248a8.912 8.912 0 011.965 5.616c0 4.825-3.76 8.736-8.4 8.736-4.64 0-8.4-3.911-8.4-8.736 0-2.139.739-4.098 1.965-5.616.37-.459.786-.877 1.238-1.248M12 9.6v-6"
9
+ stroke="currentColor"
10
+ strokeWidth={1.6}
11
+ strokeLinecap="round"
12
+ />
13
+ </svg>
14
+ );
15
+
16
+ return <Icon {...componentProps} component={IconNode} />;
17
+ }
18
+
19
+ OffOutlined.displayName = 'OffOutlined';
20
+ export default OffOutlined;
package/src/index.tsx CHANGED
@@ -1,5 +1,6 @@
1
1
  export { default as ImpassabilityFilled } from './ImpassabilityFilled';
2
2
  export { default as AddFilled } from './AddFilled';
3
+ export { default as AddOutlined } from './AddOutlined';
3
4
  export { default as AlertTriangleFilled } from './AlertTriangleFilled';
4
5
  export { default as AlertTriangleOutlined } from './AlertTriangleOutlined';
5
6
  export { default as ArrowDownFilled } from './ArrowDownFilled';
@@ -130,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
130
131
  export { default as MoveOutlined } from './MoveOutlined';
131
132
  export { default as OctagonPromptFilled } from './OctagonPromptFilled';
132
133
  export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
134
+ export { default as OffOutlined } from './OffOutlined';
133
135
  export { default as OngoingFilled } from './OngoingFilled';
134
136
  export { default as OpenMailFilled } from './OpenMailFilled';
135
137
  export { default as OpenMailOutlined } from './OpenMailOutlined';
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M6 2H18C20.2091 2 22 3.79086 22 6V18C22 20.2091 20.2091 22 18 22H6C3.79086 22 2 20.2091 2 18V6C2 3.79086 3.79086 2 6 2ZM19.7041 19.7041C20.1561 19.2522 20.41 18.6392 20.41 18V6C20.41 5.36083 20.1561 4.74784 19.7041 4.29587C19.2522 3.84391 18.6392 3.59 18 3.59H6C4.66899 3.59 3.59 4.66899 3.59 6V18C3.59 18.6392 3.84391 19.2522 4.29587 19.7041C4.74784 20.1561 5.36083 20.41 6 20.41H18C18.6392 20.41 19.2522 20.1561 19.7041 19.7041Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M16 11.25H12.75V8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8V11.25H8C7.58579 11.25 7.25 11.5858 7.25 12C7.25 12.4142 7.58579 12.75 8 12.75H11.25V16C11.25 16.4142 11.5858 16.75 12 16.75C12.4142 16.75 12.75 16.4142 12.75 16V12.75H16C16.4142 12.75 16.75 12.4142 16.75 12C16.75 11.5858 16.4142 11.25 16 11.25Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M17.1967 4.7999C17.6492 5.17094 18.0641 5.58934 18.4345 6.0479C19.6612 7.56643 20.4 9.52543 20.4 11.6639C20.4 16.4887 16.6392 20.3999 12 20.3999C7.36081 20.3999 3.6 16.4887 3.6 11.6639C3.6 9.52543 4.33881 7.56643 5.56546 6.0479C5.93588 5.58934 6.35079 5.17094 6.80328 4.7999"
4
+ stroke="currentColor" stroke-width="1.6" stroke-linecap="round" />
5
+ <path d="M12 9.6001V3.6001" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" />
6
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M6 2H18C20.2091 2 22 3.79086 22 6V18C22 20.2091 20.2091 22 18 22H6C3.79086 22 2 20.2091 2 18V6C2 3.79086 3.79086 2 6 2ZM19.7041 19.7041C20.1561 19.2522 20.41 18.6392 20.41 18V6C20.41 5.36083 20.1561 4.74784 19.7041 4.29587C19.2522 3.84391 18.6392 3.59 18 3.59H6C4.66899 3.59 3.59 4.66899 3.59 6V18C3.59 18.6392 3.84391 19.2522 4.29587 19.7041C4.74784 20.1561 5.36083 20.41 6 20.41H18C18.6392 20.41 19.2522 20.1561 19.7041 19.7041Z"
4
+ fill="currentColor" />
5
+ <path
6
+ d="M16 11.25H12.75V8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8V11.25H8C7.58579 11.25 7.25 11.5858 7.25 12C7.25 12.4142 7.58579 12.75 8 12.75H11.25V16C11.25 16.4142 11.5858 16.75 12 16.75C12.4142 16.75 12.75 16.4142 12.75 16V12.75H16C16.4142 12.75 16.75 12.4142 16.75 12C16.75 11.5858 16.4142 11.25 16 11.25Z"
7
+ fill="currentColor" />
8
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path
3
+ d="M17.1967 4.7999C17.6492 5.17094 18.0641 5.58934 18.4345 6.0479C19.6612 7.56643 20.4 9.52543 20.4 11.6639C20.4 16.4887 16.6392 20.3999 12 20.3999C7.36081 20.3999 3.6 16.4887 3.6 11.6639C3.6 9.52543 4.33881 7.56643 5.56546 6.0479C5.93588 5.58934 6.35079 5.17094 6.80328 4.7999"
4
+ stroke="currentColor" stroke-width="1.6" stroke-linecap="round" />
5
+ <path d="M12 9.6001V3.6001" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" />
6
+ </svg>