a-icons 1.1.73 → 1.1.74
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/SignalLineOutlined.d.ts +6 -0
- package/es/SignalLineOutlined.js +33 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/SignalLineOutlined.d.ts +6 -0
- package/lib/SignalLineOutlined.js +76 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +14 -7
- package/package.json +2 -2
- package/src/SignalLineOutlined.tsx +20 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/SignalLineOutlined.svg +5 -0
- package/tmpAllSvgs/SignalLineOutlined.svg +5 -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 SignalLineOutlined(componentProps) {
|
|
16
|
+
var IconNode = function IconNode(props) {
|
|
17
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
+
viewBox: "0 0 13 13",
|
|
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: "M3.405 1.587l-.368.368a4.897 4.897 0 000 6.925l.368.367-.735.736-.368-.368a5.937 5.937 0 010-8.396L2.67.852l.735.735zM10.33.852l.368.367a5.937 5.937 0 010 8.396l-.368.368-.735-.736.368-.367a4.897 4.897 0 000-6.925l-.368-.368.735-.735zM4.937 3.119l-.367.368a2.73 2.73 0 000 3.86l.367.368-.735.736-.368-.368a3.77 3.77 0 010-5.332l.368-.367.735.735zm3.861-.735l.368.367a3.77 3.77 0 010 5.332l-.368.368-.735-.736.367-.368a2.73 2.73 0 000-3.86l-.367-.368.735-.735zM6.5 4.854a.563.563 0 100 1.126.563.563 0 000-1.126zm-1.603.563A1.603 1.603 0 117.02 6.934v4.961H5.98v-4.96a1.604 1.604 0 01-1.083-1.518z",
|
|
25
|
+
fill: "currentColor"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
29
|
+
component: IconNode
|
|
30
|
+
}));
|
|
31
|
+
}
|
|
32
|
+
SignalLineOutlined.displayName = 'SignalLineOutlined';
|
|
33
|
+
export default SignalLineOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
2
2
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
3
3
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
4
|
+
export { default as SignalLineOutlined } from './SignalLineOutlined';
|
|
4
5
|
export { default as AddFilled } from './AddFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
package/es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
2
2
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
3
3
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
4
|
+
export { default as SignalLineOutlined } from './SignalLineOutlined';
|
|
4
5
|
export { default as AddFilled } from './AddFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
@@ -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 SignalLineOutlined(componentProps) {
|
|
59
|
+
var IconNode = function IconNode(props) {
|
|
60
|
+
return React.createElement("svg", __assign({
|
|
61
|
+
viewBox: "0 0 13 13",
|
|
62
|
+
fill: "none",
|
|
63
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
+
}, props), React.createElement("path", {
|
|
65
|
+
fillRule: "evenodd",
|
|
66
|
+
clipRule: "evenodd",
|
|
67
|
+
d: "M3.405 1.587l-.368.368a4.897 4.897 0 000 6.925l.368.367-.735.736-.368-.368a5.937 5.937 0 010-8.396L2.67.852l.735.735zM10.33.852l.368.367a5.937 5.937 0 010 8.396l-.368.368-.735-.736.368-.367a4.897 4.897 0 000-6.925l-.368-.368.735-.735zM4.937 3.119l-.367.368a2.73 2.73 0 000 3.86l.367.368-.735.736-.368-.368a3.77 3.77 0 010-5.332l.368-.367.735.735zm3.861-.735l.368.367a3.77 3.77 0 010 5.332l-.368.368-.735-.736.367-.368a2.73 2.73 0 000-3.86l-.367-.368.735-.735zM6.5 4.854a.563.563 0 100 1.126.563.563 0 000-1.126zm-1.603.563A1.603 1.603 0 117.02 6.934v4.961H5.98v-4.96a1.604 1.604 0 01-1.083-1.518z",
|
|
68
|
+
fill: "currentColor"
|
|
69
|
+
}));
|
|
70
|
+
};
|
|
71
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
72
|
+
component: IconNode
|
|
73
|
+
}));
|
|
74
|
+
}
|
|
75
|
+
SignalLineOutlined.displayName = 'SignalLineOutlined';
|
|
76
|
+
exports["default"] = SignalLineOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
2
2
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
3
3
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
4
|
+
export { default as SignalLineOutlined } from './SignalLineOutlined';
|
|
4
5
|
export { default as AddFilled } from './AddFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
package/lib/index.js
CHANGED
|
@@ -8,13 +8,13 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.YoutubeFilled = 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.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = void 0;
|
|
11
|
+
exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowTopRightOutlined = exports.ArrowSwapHorizontal = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddFilled = exports.SignalLineOutlined = exports.ImpassabilityFilled = exports.DailyFinanceOutlined = exports.DailyFinanceFilled = void 0;
|
|
12
|
+
exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CyclePlusFilled = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockOutline = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CirculationFilled = exports.CircleStopFilled = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckedOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = void 0;
|
|
13
|
+
exports.FourDotFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FoldSearchFileFilled = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FilletFileListFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DownloadReportOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownlaodAppOutlined = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotCalenderOutlined = exports.DollarOutlined = void 0;
|
|
14
|
+
exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = exports.LoadingFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.InformationOutlined = exports.InformationFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeWifiOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftWithClipFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = void 0;
|
|
15
|
+
exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PersonWarningFilled = exports.PersonGroupFilled = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleLockFilled = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleErrorFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OtcMerchant = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OppositeArrowsFilled = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = 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.MinusSquareOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MailOutlined = exports.MailFilled = void 0;
|
|
16
|
+
exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = exports.SignalDiffusionFilled = exports.SignBankCardFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldTickAsteriskFilled = 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.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RingDotsFilled = exports.RetryRefreshFilled = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectForkFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = void 0;
|
|
17
|
+
exports.YoutubeFilled = 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.TwitterFilled = exports.TriangleArrowDownFilled = exports.TreeOutlined = exports.TreeFilled = exports.TreeCircleFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TimeZoneSiteFilled = exports.TimeCardFilled = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -36,6 +36,13 @@ Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
|
36
36
|
return __importDefault(ImpassabilityFilled_1)["default"];
|
|
37
37
|
}
|
|
38
38
|
});
|
|
39
|
+
var SignalLineOutlined_1 = require("./SignalLineOutlined");
|
|
40
|
+
Object.defineProperty(exports, "SignalLineOutlined", {
|
|
41
|
+
enumerable: true,
|
|
42
|
+
get: function get() {
|
|
43
|
+
return __importDefault(SignalLineOutlined_1)["default"];
|
|
44
|
+
}
|
|
45
|
+
});
|
|
39
46
|
var AddFilled_1 = require("./AddFilled");
|
|
40
47
|
Object.defineProperty(exports, "AddFilled", {
|
|
41
48
|
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.74",
|
|
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": "3f4bcb4af2696657c1475965bae88951bb9c9ab9"
|
|
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 SignalLineOutlined(componentProps: IconProps) {
|
|
5
|
+
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
+
<svg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<path
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M3.405 1.587l-.368.368a4.897 4.897 0 000 6.925l.368.367-.735.736-.368-.368a5.937 5.937 0 010-8.396L2.67.852l.735.735zM10.33.852l.368.367a5.937 5.937 0 010 8.396l-.368.368-.735-.736.368-.367a4.897 4.897 0 000-6.925l-.368-.368.735-.735zM4.937 3.119l-.367.368a2.73 2.73 0 000 3.86l.367.368-.735.736-.368-.368a3.77 3.77 0 010-5.332l.368-.367.735.735zm3.861-.735l.368.367a3.77 3.77 0 010 5.332l-.368.368-.735-.736.367-.368a2.73 2.73 0 000-3.86l-.367-.368.735-.735zM6.5 4.854a.563.563 0 100 1.126.563.563 0 000-1.126zm-1.603.563A1.603 1.603 0 117.02 6.934v4.961H5.98v-4.96a1.604 1.604 0 01-1.083-1.518z"
|
|
11
|
+
fill="currentColor"
|
|
12
|
+
/>
|
|
13
|
+
</svg>
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
SignalLineOutlined.displayName = 'SignalLineOutlined';
|
|
20
|
+
export default SignalLineOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { default as DailyFinanceFilled } from './DailyFinanceFilled';
|
|
2
2
|
export { default as DailyFinanceOutlined } from './DailyFinanceOutlined';
|
|
3
3
|
export { default as ImpassabilityFilled } from './ImpassabilityFilled';
|
|
4
|
+
export { default as SignalLineOutlined } from './SignalLineOutlined';
|
|
4
5
|
export { default as AddFilled } from './AddFilled';
|
|
5
6
|
export { default as AddOutlined } from './AddOutlined';
|
|
6
7
|
export { default as AlertTriangleFilled } from './AlertTriangleFilled';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M3.40513 1.58695L3.03743 1.95465C1.12517 3.86692 1.12517 6.96731 3.03743 8.87958L3.40513 9.24728L2.66974 9.98267L2.30204 9.61497C-0.0163706 7.29656 -0.0163706 3.53767 2.30204 1.21926L2.66974 0.851562L3.40513 1.58695ZM10.3303 0.851562L10.698 1.21926C13.0164 3.53767 13.0164 7.29656 10.698 9.61497L10.3303 9.98267L9.59491 9.24728L9.96261 8.87958C11.8749 6.96731 11.8749 3.86692 9.96261 1.95465L9.59491 1.58695L10.3303 0.851562ZM4.93731 3.11899L4.56962 3.48668C3.50349 4.55281 3.50349 6.28135 4.56962 7.34749L4.93731 7.71518L4.20192 8.45057L3.83423 8.08288C2.36195 6.6106 2.36195 4.22357 3.83423 2.75129L4.20192 2.3836L4.93731 3.11899ZM8.79813 2.3836L9.16583 2.75129C10.6381 4.22357 10.6381 6.6106 9.16583 8.08288L8.79813 8.45057L8.06274 7.71518L8.43044 7.34749C9.49657 6.28135 9.49657 4.55281 8.43044 3.48668L8.06274 3.11899L8.79813 2.3836ZM6.50002 4.85377C6.1889 4.85377 5.93669 5.10598 5.93669 5.4171C5.93669 5.72822 6.1889 5.98044 6.50002 5.98044C6.81114 5.98044 7.06335 5.72822 7.06335 5.4171C7.06335 5.10598 6.81114 4.85377 6.50002 4.85377ZM4.89669 5.4171C4.89669 4.53161 5.61452 3.81377 6.50002 3.81377C7.38552 3.81377 8.10335 4.53161 8.10335 5.4171C8.10335 6.12059 7.65028 6.71826 7.02002 6.93423V11.8954H5.98002V6.93423C5.34975 6.71826 4.89669 6.12059 4.89669 5.4171Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M3.40513 1.58695L3.03743 1.95465C1.12517 3.86692 1.12517 6.96731 3.03743 8.87958L3.40513 9.24728L2.66974 9.98267L2.30204 9.61497C-0.0163706 7.29656 -0.0163706 3.53767 2.30204 1.21926L2.66974 0.851562L3.40513 1.58695ZM10.3303 0.851562L10.698 1.21926C13.0164 3.53767 13.0164 7.29656 10.698 9.61497L10.3303 9.98267L9.59491 9.24728L9.96261 8.87958C11.8749 6.96731 11.8749 3.86692 9.96261 1.95465L9.59491 1.58695L10.3303 0.851562ZM4.93731 3.11899L4.56962 3.48668C3.50349 4.55281 3.50349 6.28135 4.56962 7.34749L4.93731 7.71518L4.20192 8.45057L3.83423 8.08288C2.36195 6.6106 2.36195 4.22357 3.83423 2.75129L4.20192 2.3836L4.93731 3.11899ZM8.79813 2.3836L9.16583 2.75129C10.6381 4.22357 10.6381 6.6106 9.16583 8.08288L8.79813 8.45057L8.06274 7.71518L8.43044 7.34749C9.49657 6.28135 9.49657 4.55281 8.43044 3.48668L8.06274 3.11899L8.79813 2.3836ZM6.50002 4.85377C6.1889 4.85377 5.93669 5.10598 5.93669 5.4171C5.93669 5.72822 6.1889 5.98044 6.50002 5.98044C6.81114 5.98044 7.06335 5.72822 7.06335 5.4171C7.06335 5.10598 6.81114 4.85377 6.50002 4.85377ZM4.89669 5.4171C4.89669 4.53161 5.61452 3.81377 6.50002 3.81377C7.38552 3.81377 8.10335 4.53161 8.10335 5.4171C8.10335 6.12059 7.65028 6.71826 7.02002 6.93423V11.8954H5.98002V6.93423C5.34975 6.71826 4.89669 6.12059 4.89669 5.4171Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
</svg>
|