a-icons 1.1.68 → 1.1.69
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/LineChartUpOutlined.d.ts +6 -0
- package/es/LineChartUpOutlined.js +44 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/LineChartUpOutlined.d.ts +6 -0
- package/lib/LineChartUpOutlined.js +87 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +11 -4
- package/package.json +2 -2
- package/src/LineChartUpOutlined.tsx +29 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/line-chart-up-outlined.svg +6 -0
- package/tmpAllSvgs/line-chart-up-outlined.svg +6 -0
|
@@ -0,0 +1,44 @@
|
|
|
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 LineChartUpOutlined(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("rect", {
|
|
22
|
+
x: 4,
|
|
23
|
+
y: 6,
|
|
24
|
+
width: 13,
|
|
25
|
+
height: 16,
|
|
26
|
+
rx: 2,
|
|
27
|
+
stroke: "currentColor",
|
|
28
|
+
strokeWidth: 2
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M9 5.75V4a2 2 0 012-2h8a2 2 0 012 2v11a2 2 0 01-2 2h-2",
|
|
31
|
+
stroke: "currentColor",
|
|
32
|
+
strokeWidth: 2
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
d: "M4 16l4.952-3 3.096 3L17 13",
|
|
35
|
+
stroke: "currentColor",
|
|
36
|
+
strokeWidth: 2
|
|
37
|
+
}));
|
|
38
|
+
};
|
|
39
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
40
|
+
component: IconNode
|
|
41
|
+
}));
|
|
42
|
+
}
|
|
43
|
+
LineChartUpOutlined.displayName = 'LineChartUpOutlined';
|
|
44
|
+
export default LineChartUpOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export { default as LayerFilled } from './LayerFilled';
|
|
|
179
179
|
export { default as LayerOutlined } from './LayerOutlined';
|
|
180
180
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
181
181
|
export { default as LimitlessFilled } from './LimitlessFilled';
|
|
182
|
+
export { default as LineChartUpOutlined } from './LineChartUpOutlined';
|
|
182
183
|
export { default as LineUpFilled } from './LineUpFilled';
|
|
183
184
|
export { default as LineUpOutlined } from './LineUpOutlined';
|
|
184
185
|
export { default as LinkedinFilled } from './LinkedinFilled';
|
package/es/index.js
CHANGED
|
@@ -179,6 +179,7 @@ export { default as LayerFilled } from './LayerFilled';
|
|
|
179
179
|
export { default as LayerOutlined } from './LayerOutlined';
|
|
180
180
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
181
181
|
export { default as LimitlessFilled } from './LimitlessFilled';
|
|
182
|
+
export { default as LineChartUpOutlined } from './LineChartUpOutlined';
|
|
182
183
|
export { default as LineUpFilled } from './LineUpFilled';
|
|
183
184
|
export { default as LineUpOutlined } from './LineUpOutlined';
|
|
184
185
|
export { default as LinkedinFilled } from './LinkedinFilled';
|
|
@@ -0,0 +1,87 @@
|
|
|
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 LineChartUpOutlined(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("rect", {
|
|
65
|
+
x: 4,
|
|
66
|
+
y: 6,
|
|
67
|
+
width: 13,
|
|
68
|
+
height: 16,
|
|
69
|
+
rx: 2,
|
|
70
|
+
stroke: "currentColor",
|
|
71
|
+
strokeWidth: 2
|
|
72
|
+
}), React.createElement("path", {
|
|
73
|
+
d: "M9 5.75V4a2 2 0 012-2h8a2 2 0 012 2v11a2 2 0 01-2 2h-2",
|
|
74
|
+
stroke: "currentColor",
|
|
75
|
+
strokeWidth: 2
|
|
76
|
+
}), React.createElement("path", {
|
|
77
|
+
d: "M4 16l4.952-3 3.096 3L17 13",
|
|
78
|
+
stroke: "currentColor",
|
|
79
|
+
strokeWidth: 2
|
|
80
|
+
}));
|
|
81
|
+
};
|
|
82
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
83
|
+
component: IconNode
|
|
84
|
+
}));
|
|
85
|
+
}
|
|
86
|
+
LineChartUpOutlined.displayName = 'LineChartUpOutlined';
|
|
87
|
+
exports["default"] = LineChartUpOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export { default as LayerFilled } from './LayerFilled';
|
|
|
179
179
|
export { default as LayerOutlined } from './LayerOutlined';
|
|
180
180
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
181
181
|
export { default as LimitlessFilled } from './LimitlessFilled';
|
|
182
|
+
export { default as LineChartUpOutlined } from './LineChartUpOutlined';
|
|
182
183
|
export { default as LineUpFilled } from './LineUpFilled';
|
|
183
184
|
export { default as LineUpOutlined } from './LineUpOutlined';
|
|
184
185
|
export { default as LinkedinFilled } from './LinkedinFilled';
|
package/lib/index.js
CHANGED
|
@@ -11,10 +11,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
11
11
|
exports.CellPhoneCallFilled = 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.ImpassabilityFilled = exports.DailyFinanceOutlined = exports.DailyFinanceFilled = void 0;
|
|
12
12
|
exports.DotCalenderOutlined = exports.DollarOutlined = 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.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = void 0;
|
|
13
13
|
exports.FundProjectionScreenFilled = exports.FourDotOutlined = 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 = void 0;
|
|
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 = void 0;
|
|
14
|
+
exports.MailOutlined = exports.MailFilled = 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 = void 0;
|
|
15
|
+
exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = 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 = void 0;
|
|
16
|
+
exports.SquareUpRightOutlined = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareFilled = exports.SquareBoxOutlined = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = exports.SignalOutlined = exports.SignalFilled = exports.SignalDiffusionOutlined = 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 = 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 = void 0;
|
|
18
18
|
var DailyFinanceFilled_1 = require("./DailyFinanceFilled");
|
|
19
19
|
Object.defineProperty(exports, "DailyFinanceFilled", {
|
|
20
20
|
enumerable: true,
|
|
@@ -1282,6 +1282,13 @@ Object.defineProperty(exports, "LimitlessFilled", {
|
|
|
1282
1282
|
return __importDefault(LimitlessFilled_1)["default"];
|
|
1283
1283
|
}
|
|
1284
1284
|
});
|
|
1285
|
+
var LineChartUpOutlined_1 = require("./LineChartUpOutlined");
|
|
1286
|
+
Object.defineProperty(exports, "LineChartUpOutlined", {
|
|
1287
|
+
enumerable: true,
|
|
1288
|
+
get: function get() {
|
|
1289
|
+
return __importDefault(LineChartUpOutlined_1)["default"];
|
|
1290
|
+
}
|
|
1291
|
+
});
|
|
1285
1292
|
var LineUpFilled_1 = require("./LineUpFilled");
|
|
1286
1293
|
Object.defineProperty(exports, "LineUpFilled", {
|
|
1287
1294
|
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.69",
|
|
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": "d2f6d2764f0bc0d7c821a48a79c577a837b9c26e"
|
|
26
26
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function LineChartUpOutlined(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
|
+
<rect
|
|
8
|
+
x={4}
|
|
9
|
+
y={6}
|
|
10
|
+
width={13}
|
|
11
|
+
height={16}
|
|
12
|
+
rx={2}
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeWidth={2}
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M9 5.75V4a2 2 0 012-2h8a2 2 0 012 2v11a2 2 0 01-2 2h-2"
|
|
18
|
+
stroke="currentColor"
|
|
19
|
+
strokeWidth={2}
|
|
20
|
+
/>
|
|
21
|
+
<path d="M4 16l4.952-3 3.096 3L17 13" stroke="currentColor" strokeWidth={2} />
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
LineChartUpOutlined.displayName = 'LineChartUpOutlined';
|
|
29
|
+
export default LineChartUpOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -179,6 +179,7 @@ export { default as LayerFilled } from './LayerFilled';
|
|
|
179
179
|
export { default as LayerOutlined } from './LayerOutlined';
|
|
180
180
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
181
181
|
export { default as LimitlessFilled } from './LimitlessFilled';
|
|
182
|
+
export { default as LineChartUpOutlined } from './LineChartUpOutlined';
|
|
182
183
|
export { default as LineUpFilled } from './LineUpFilled';
|
|
183
184
|
export { default as LineUpOutlined } from './LineUpOutlined';
|
|
184
185
|
export { default as LinkedinFilled } from './LinkedinFilled';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="6" width="13" height="16" rx="2" stroke="currentColor" stroke-width="2" />
|
|
3
|
+
<path d="M9 5.75L9 4C9 2.89543 9.89543 2 11 2H19C20.1046 2 21 2.89543 21 4V15C21 16.1046 20.1046 17 19 17H17"
|
|
4
|
+
stroke="currentColor" stroke-width="2" />
|
|
5
|
+
<path d="M4 16L8.95238 13L12.0476 16L17 13" stroke="currentColor" stroke-width="2" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="4" y="6" width="13" height="16" rx="2" stroke="currentColor" stroke-width="2" />
|
|
3
|
+
<path d="M9 5.75L9 4C9 2.89543 9.89543 2 11 2H19C20.1046 2 21 2.89543 21 4V15C21 16.1046 20.1046 17 19 17H17"
|
|
4
|
+
stroke="currentColor" stroke-width="2" />
|
|
5
|
+
<path d="M4 16L8.95238 13L12.0476 16L17 13" stroke="currentColor" stroke-width="2" />
|
|
6
|
+
</svg>
|