a-icons 1.1.26 → 1.1.27
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/OtcMerchantLine.d.ts +7 -0
- package/es/OtcMerchantLine.js +42 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/OtcMerchantLine.d.ts +7 -0
- package/lib/OtcMerchantLine.js +85 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +10 -3
- package/package.json +2 -2
- package/src/OtcMerchantLine.tsx +31 -0
- package/src/index.tsx +1 -0
- package/svgs/business/otc-merchant-line.svg +17 -0
- package/tmpAllSvgs/otc-merchant-line.svg +17 -0
|
@@ -0,0 +1,42 @@
|
|
|
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 OtcMerchantLine(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: "M7.605 17.395c-1.582 0-2.478-.61-2.478-2.946 0-2.335.897-2.946 2.478-2.946 1.605 0 2.478.611 2.478 2.946s-.873 2.946-2.478 2.946zm0-1.048c1.007 0 1.227-.487 1.227-1.898 0-1.394-.22-1.922-1.227-1.922-1 0-1.22.528-1.22 1.922 0 1.411.22 1.898 1.22 1.898zM13.909 11.586a.549.549 0 110 1.098h-.883v4.034a.594.594 0 11-1.188 0v-4.035h-.884a.549.549 0 010-1.098h2.955zM17.544 17.395c-1.597 0-2.644-.545-2.644-2.946 0-2.211 1.03-2.946 2.636-2.946.352 0 .664.032.934.092.208.046.34.24.34.453 0 .353-.354.602-.704.558a3.934 3.934 0 00-.491-.03c-.984 0-1.417.462-1.417 1.865 0 1.485.433 1.865 1.4 1.865.194 0 .38-.012.563-.039.353-.051.712.197.712.554 0 .203-.12.39-.316.444-.287.08-.638.13-1.013.13z",
|
|
23
|
+
fill: "currentColor"
|
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M3.87 3.15a1 1 0 01.855-.483h14.55a1 1 0 01.856.483l2.654 4.4a.03.03 0 01-.01.04v0a7.488 7.488 0 01-7.16-.006v0a.03.03 0 00-.029 0v0a7.49 7.49 0 01-7.172 0v0a.03.03 0 00-.028 0v0a7.488 7.488 0 01-7.16.007v0a.03.03 0 01-.011-.04L3.869 3.15z",
|
|
26
|
+
stroke: "currentColor",
|
|
27
|
+
strokeWidth: 1.1,
|
|
28
|
+
strokeLinejoin: "round"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M3.163 9.049v9.783a2 2 0 002 2h13.674a2 2 0 002-2V9.049",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: 1.1,
|
|
33
|
+
strokeLinecap: "round",
|
|
34
|
+
strokeLinejoin: "round"
|
|
35
|
+
}));
|
|
36
|
+
};
|
|
37
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
38
|
+
component: IconNode
|
|
39
|
+
}));
|
|
40
|
+
}
|
|
41
|
+
OtcMerchantLine.displayName = 'OtcMerchantLine';
|
|
42
|
+
export default OtcMerchantLine;
|
package/es/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
138
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
139
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
140
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
141
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
package/es/index.js
CHANGED
|
@@ -135,6 +135,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
138
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
139
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
140
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
141
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
@@ -0,0 +1,85 @@
|
|
|
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 OtcMerchantLine(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: "M7.605 17.395c-1.582 0-2.478-.61-2.478-2.946 0-2.335.897-2.946 2.478-2.946 1.605 0 2.478.611 2.478 2.946s-.873 2.946-2.478 2.946zm0-1.048c1.007 0 1.227-.487 1.227-1.898 0-1.394-.22-1.922-1.227-1.922-1 0-1.22.528-1.22 1.922 0 1.411.22 1.898 1.22 1.898zM13.909 11.586a.549.549 0 110 1.098h-.883v4.034a.594.594 0 11-1.188 0v-4.035h-.884a.549.549 0 010-1.098h2.955zM17.544 17.395c-1.597 0-2.644-.545-2.644-2.946 0-2.211 1.03-2.946 2.636-2.946.352 0 .664.032.934.092.208.046.34.24.34.453 0 .353-.354.602-.704.558a3.934 3.934 0 00-.491-.03c-.984 0-1.417.462-1.417 1.865 0 1.485.433 1.865 1.4 1.865.194 0 .38-.012.563-.039.353-.051.712.197.712.554 0 .203-.12.39-.316.444-.287.08-.638.13-1.013.13z",
|
|
66
|
+
fill: "currentColor"
|
|
67
|
+
}), React.createElement("path", {
|
|
68
|
+
d: "M3.87 3.15a1 1 0 01.855-.483h14.55a1 1 0 01.856.483l2.654 4.4a.03.03 0 01-.01.04v0a7.488 7.488 0 01-7.16-.006v0a.03.03 0 00-.029 0v0a7.49 7.49 0 01-7.172 0v0a.03.03 0 00-.028 0v0a7.488 7.488 0 01-7.16.007v0a.03.03 0 01-.011-.04L3.869 3.15z",
|
|
69
|
+
stroke: "currentColor",
|
|
70
|
+
strokeWidth: 1.1,
|
|
71
|
+
strokeLinejoin: "round"
|
|
72
|
+
}), React.createElement("path", {
|
|
73
|
+
d: "M3.163 9.049v9.783a2 2 0 002 2h13.674a2 2 0 002-2V9.049",
|
|
74
|
+
stroke: "currentColor",
|
|
75
|
+
strokeWidth: 1.1,
|
|
76
|
+
strokeLinecap: "round",
|
|
77
|
+
strokeLinejoin: "round"
|
|
78
|
+
}));
|
|
79
|
+
};
|
|
80
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
81
|
+
component: IconNode
|
|
82
|
+
}));
|
|
83
|
+
}
|
|
84
|
+
OtcMerchantLine.displayName = 'OtcMerchantLine';
|
|
85
|
+
exports["default"] = OtcMerchantLine;
|
package/lib/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
138
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
139
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
140
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
141
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
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 = exports.TagFilled = void 0;
|
|
13
|
+
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.OtcMerchantLine = 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.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 = exports.PeopleLockFilled = 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 = exports.StopOutlined = void 0;
|
|
16
16
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
17
17
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
18
18
|
enumerable: true,
|
|
@@ -972,6 +972,13 @@ Object.defineProperty(exports, "OpenMailOutlined", {
|
|
|
972
972
|
return __importDefault(OpenMailOutlined_1)["default"];
|
|
973
973
|
}
|
|
974
974
|
});
|
|
975
|
+
var OtcMerchantLine_1 = require("./OtcMerchantLine");
|
|
976
|
+
Object.defineProperty(exports, "OtcMerchantLine", {
|
|
977
|
+
enumerable: true,
|
|
978
|
+
get: function get() {
|
|
979
|
+
return __importDefault(OtcMerchantLine_1)["default"];
|
|
980
|
+
}
|
|
981
|
+
});
|
|
975
982
|
var OtcMerchant_1 = require("./OtcMerchant");
|
|
976
983
|
Object.defineProperty(exports, "OtcMerchant", {
|
|
977
984
|
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.27",
|
|
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": "bf97a418dc1abcbb02735329450477bfeafc4487"
|
|
26
26
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function OtcMerchantLine(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="M7.605 17.395c-1.582 0-2.478-.61-2.478-2.946 0-2.335.897-2.946 2.478-2.946 1.605 0 2.478.611 2.478 2.946s-.873 2.946-2.478 2.946zm0-1.048c1.007 0 1.227-.487 1.227-1.898 0-1.394-.22-1.922-1.227-1.922-1 0-1.22.528-1.22 1.922 0 1.411.22 1.898 1.22 1.898zM13.909 11.586a.549.549 0 110 1.098h-.883v4.034a.594.594 0 11-1.188 0v-4.035h-.884a.549.549 0 010-1.098h2.955zM17.544 17.395c-1.597 0-2.644-.545-2.644-2.946 0-2.211 1.03-2.946 2.636-2.946.352 0 .664.032.934.092.208.046.34.24.34.453 0 .353-.354.602-.704.558a3.934 3.934 0 00-.491-.03c-.984 0-1.417.462-1.417 1.865 0 1.485.433 1.865 1.4 1.865.194 0 .38-.012.563-.039.353-.051.712.197.712.554 0 .203-.12.39-.316.444-.287.08-.638.13-1.013.13z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M3.87 3.15a1 1 0 01.855-.483h14.55a1 1 0 01.856.483l2.654 4.4a.03.03 0 01-.01.04v0a7.488 7.488 0 01-7.16-.006v0a.03.03 0 00-.029 0v0a7.49 7.49 0 01-7.172 0v0a.03.03 0 00-.028 0v0a7.488 7.488 0 01-7.16.007v0a.03.03 0 01-.011-.04L3.869 3.15z"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth={1.1}
|
|
15
|
+
strokeLinejoin="round"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M3.163 9.049v9.783a2 2 0 002 2h13.674a2 2 0 002-2V9.049"
|
|
19
|
+
stroke="currentColor"
|
|
20
|
+
strokeWidth={1.1}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
OtcMerchantLine.displayName = 'OtcMerchantLine';
|
|
31
|
+
export default OtcMerchantLine;
|
package/src/index.tsx
CHANGED
|
@@ -135,6 +135,7 @@ export { default as OffOutlined } from './OffOutlined';
|
|
|
135
135
|
export { default as OngoingFilled } from './OngoingFilled';
|
|
136
136
|
export { default as OpenMailFilled } from './OpenMailFilled';
|
|
137
137
|
export { default as OpenMailOutlined } from './OpenMailOutlined';
|
|
138
|
+
export { default as OtcMerchantLine } from './OtcMerchantLine';
|
|
138
139
|
export { default as OtcMerchant } from './OtcMerchant';
|
|
139
140
|
export { default as PencilOutlined } from './PencilOutlined';
|
|
140
141
|
export { default as PeopleAddFilled } from './PeopleAddFilled';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M7.60498 17.395C6.0235 17.395 5.12654 16.7844 5.12654 14.4492C5.12654 12.114 6.0235 11.5034 7.60498 11.5034C9.21006 11.5034 10.0834 12.114 10.0834 14.4492C10.0834 16.7844 9.21006 17.395 7.60498 17.395ZM7.60498 16.347C8.61209 16.347 8.83239 15.8602 8.83239 14.4492C8.83239 13.0547 8.61209 12.5266 7.60498 12.5266C6.60573 12.5266 6.38543 13.0547 6.38543 14.4492C6.38543 15.8602 6.60573 16.347 7.60498 16.347Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M13.9088 11.5859C14.2119 11.5859 14.4576 11.8316 14.4576 12.1347V12.1347C14.4576 12.4377 14.2119 12.6834 13.9088 12.6834H13.0256V16.7184C13.0256 17.0465 12.7596 17.3125 12.4315 17.3125V17.3125C12.1035 17.3125 11.8375 17.0465 11.8375 16.7184V12.6834H10.9542C10.6512 12.6834 10.4055 12.4377 10.4055 12.1347V12.1347C10.4055 11.8316 10.6512 11.5859 10.9542 11.5859H13.9088Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M17.5438 17.395C15.9466 17.395 14.9001 16.8504 14.9001 14.4492C14.9001 12.2378 15.9308 11.5034 17.5359 11.5034C17.8884 11.5034 18.1997 11.5348 18.47 11.5948C18.678 11.641 18.8105 11.8349 18.8105 12.048V12.048C18.8105 12.4006 18.4556 12.6499 18.1057 12.6059C17.9514 12.5865 17.7879 12.5761 17.6146 12.5761C16.6311 12.5761 16.1984 13.0382 16.1984 14.4409C16.1984 15.9262 16.6311 16.3058 17.5989 16.3058C17.7921 16.3058 17.9781 16.2935 18.1605 16.267C18.5137 16.2157 18.8735 16.4639 18.8735 16.8208V16.8208C18.8735 17.0241 18.7535 17.2113 18.5574 17.2654C18.2699 17.3449 17.9188 17.395 17.5438 17.395Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
<path
|
|
12
|
+
d="M3.86925 3.14992C4.05026 2.8499 4.3751 2.6665 4.72549 2.6665H19.2745C19.6248 2.6665 19.9497 2.8499 20.1307 3.14991L22.7854 7.55006C22.794 7.56427 22.789 7.58276 22.7744 7.59071V7.59071C20.5469 8.80572 17.842 8.79881 15.6145 7.5838V7.5838C15.6057 7.57903 15.5951 7.57901 15.5864 7.58377V7.58377C13.3509 8.80311 10.6491 8.80311 8.41362 7.58377V7.58377C8.40489 7.57901 8.39428 7.57903 8.38555 7.5838V7.5838C6.15802 8.79881 3.45309 8.80572 1.22556 7.59071V7.59071C1.21099 7.58276 1.20598 7.56427 1.21456 7.55006L3.86925 3.14992Z"
|
|
13
|
+
stroke="currentColor" stroke-width="1.1" stroke-linejoin="round" />
|
|
14
|
+
<path
|
|
15
|
+
d="M3.16269 9.04883L3.16276 18.8319C3.16277 19.9365 4.0582 20.8319 5.16276 20.8319H18.8373C19.9419 20.8319 20.8373 19.9365 20.8373 18.8319V9.04883"
|
|
16
|
+
stroke="currentColor" stroke-width="1.1" stroke-linecap="round" stroke-linejoin="round" />
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M7.60498 17.395C6.0235 17.395 5.12654 16.7844 5.12654 14.4492C5.12654 12.114 6.0235 11.5034 7.60498 11.5034C9.21006 11.5034 10.0834 12.114 10.0834 14.4492C10.0834 16.7844 9.21006 17.395 7.60498 17.395ZM7.60498 16.347C8.61209 16.347 8.83239 15.8602 8.83239 14.4492C8.83239 13.0547 8.61209 12.5266 7.60498 12.5266C6.60573 12.5266 6.38543 13.0547 6.38543 14.4492C6.38543 15.8602 6.60573 16.347 7.60498 16.347Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M13.9088 11.5859C14.2119 11.5859 14.4576 11.8316 14.4576 12.1347V12.1347C14.4576 12.4377 14.2119 12.6834 13.9088 12.6834H13.0256V16.7184C13.0256 17.0465 12.7596 17.3125 12.4315 17.3125V17.3125C12.1035 17.3125 11.8375 17.0465 11.8375 16.7184V12.6834H10.9542C10.6512 12.6834 10.4055 12.4377 10.4055 12.1347V12.1347C10.4055 11.8316 10.6512 11.5859 10.9542 11.5859H13.9088Z"
|
|
7
|
+
fill="currentColor" />
|
|
8
|
+
<path
|
|
9
|
+
d="M17.5438 17.395C15.9466 17.395 14.9001 16.8504 14.9001 14.4492C14.9001 12.2378 15.9308 11.5034 17.5359 11.5034C17.8884 11.5034 18.1997 11.5348 18.47 11.5948C18.678 11.641 18.8105 11.8349 18.8105 12.048V12.048C18.8105 12.4006 18.4556 12.6499 18.1057 12.6059C17.9514 12.5865 17.7879 12.5761 17.6146 12.5761C16.6311 12.5761 16.1984 13.0382 16.1984 14.4409C16.1984 15.9262 16.6311 16.3058 17.5989 16.3058C17.7921 16.3058 17.9781 16.2935 18.1605 16.267C18.5137 16.2157 18.8735 16.4639 18.8735 16.8208V16.8208C18.8735 17.0241 18.7535 17.2113 18.5574 17.2654C18.2699 17.3449 17.9188 17.395 17.5438 17.395Z"
|
|
10
|
+
fill="currentColor" />
|
|
11
|
+
<path
|
|
12
|
+
d="M3.86925 3.14992C4.05026 2.8499 4.3751 2.6665 4.72549 2.6665H19.2745C19.6248 2.6665 19.9497 2.8499 20.1307 3.14991L22.7854 7.55006C22.794 7.56427 22.789 7.58276 22.7744 7.59071V7.59071C20.5469 8.80572 17.842 8.79881 15.6145 7.5838V7.5838C15.6057 7.57903 15.5951 7.57901 15.5864 7.58377V7.58377C13.3509 8.80311 10.6491 8.80311 8.41362 7.58377V7.58377C8.40489 7.57901 8.39428 7.57903 8.38555 7.5838V7.5838C6.15802 8.79881 3.45309 8.80572 1.22556 7.59071V7.59071C1.21099 7.58276 1.20598 7.56427 1.21456 7.55006L3.86925 3.14992Z"
|
|
13
|
+
stroke="currentColor" stroke-width="1.1" stroke-linejoin="round" />
|
|
14
|
+
<path
|
|
15
|
+
d="M3.16269 9.04883L3.16276 18.8319C3.16277 19.9365 4.0582 20.8319 5.16276 20.8319H18.8373C19.9419 20.8319 20.8373 19.9365 20.8373 18.8319V9.04883"
|
|
16
|
+
stroke="currentColor" stroke-width="1.1" stroke-linecap="round" stroke-linejoin="round" />
|
|
17
|
+
</svg>
|