a-icons 1.1.25 → 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.
- package/es/OffOutlined.d.ts +7 -0
- package/es/OffOutlined.js +33 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/OffOutlined.d.ts +7 -0
- package/lib/OffOutlined.js +76 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +10 -3
- package/package.json +2 -2
- package/src/OffOutlined.tsx +20 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/off-outlined.svg +6 -0
- package/tmpAllSvgs/off-outlined.svg +6 -0
|
@@ -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
|
@@ -131,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
|
131
131
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
132
132
|
export { default as OctagonPromptFilled } from './OctagonPromptFilled';
|
|
133
133
|
export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
|
|
134
|
+
export { default as OffOutlined } from './OffOutlined';
|
|
134
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
135
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
136
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
package/es/index.js
CHANGED
|
@@ -131,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
|
131
131
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
132
132
|
export { default as OctagonPromptFilled } from './OctagonPromptFilled';
|
|
133
133
|
export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
|
|
134
|
+
export { default as OffOutlined } from './OffOutlined';
|
|
134
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
135
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
136
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
@@ -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
|
@@ -131,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
|
131
131
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
132
132
|
export { default as OctagonPromptFilled } from './OctagonPromptFilled';
|
|
133
133
|
export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
|
|
134
|
+
export { default as OffOutlined } from './OffOutlined';
|
|
134
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
135
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
136
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
package/lib/index.js
CHANGED
|
@@ -10,9 +10,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
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
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.
|
|
14
|
-
exports.
|
|
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 = 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,
|
|
@@ -944,6 +944,13 @@ Object.defineProperty(exports, "OctagonPromptOutlined", {
|
|
|
944
944
|
return __importDefault(OctagonPromptOutlined_1)["default"];
|
|
945
945
|
}
|
|
946
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
|
+
});
|
|
947
954
|
var OngoingFilled_1 = require("./OngoingFilled");
|
|
948
955
|
Object.defineProperty(exports, "OngoingFilled", {
|
|
949
956
|
enumerable: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.1.
|
|
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": "
|
|
25
|
+
"gitHead": "8e5cb592b7740806345a66d70a298454c4e0f704"
|
|
26
26
|
}
|
|
@@ -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
|
@@ -131,6 +131,7 @@ export { default as MoneySymbolOutlined } from './MoneySymbolOutlined';
|
|
|
131
131
|
export { default as MoveOutlined } from './MoveOutlined';
|
|
132
132
|
export { default as OctagonPromptFilled } from './OctagonPromptFilled';
|
|
133
133
|
export { default as OctagonPromptOutlined } from './OctagonPromptOutlined';
|
|
134
|
+
export { default as OffOutlined } from './OffOutlined';
|
|
134
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
135
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
136
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
@@ -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,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>
|