a-icons 1.1.45 → 1.1.46
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/DoubleChevronOutlined.d.ts +7 -0
- package/es/DoubleChevronOutlined.js +34 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/DoubleChevronOutlined.d.ts +7 -0
- package/lib/DoubleChevronOutlined.js +77 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +12 -5
- package/package.json +2 -2
- package/src/DoubleChevronOutlined.tsx +17 -0
- package/src/index.tsx +1 -0
- package/svgs/outlined/double-chevron-outlined.svg +10 -0
- package/tmpAllSvgs/double-chevron-outlined.svg +10 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function DoubleChevronOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace DoubleChevronOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default DoubleChevronOutlined;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 DoubleChevronOutlined(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("g", {
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
clipRule: "evenodd",
|
|
24
|
+
fill: "currentColor"
|
|
25
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M18.64 5.232a1 1 0 01.128 1.408L14.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128zM10.64 5.232a1 1 0 01.128 1.408L6.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128z"
|
|
27
|
+
})));
|
|
28
|
+
};
|
|
29
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
30
|
+
component: IconNode
|
|
31
|
+
}));
|
|
32
|
+
}
|
|
33
|
+
DoubleChevronOutlined.displayName = 'DoubleChevronOutlined';
|
|
34
|
+
export default DoubleChevronOutlined;
|
package/es/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export { default as DollarOutlined } from './DollarOutlined';
|
|
|
82
82
|
export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
83
83
|
export { default as DoubleChainFilled } from './DoubleChainFilled';
|
|
84
84
|
export { default as DoubleChainOutlined } from './DoubleChainOutlined';
|
|
85
|
+
export { default as DoubleChevronOutlined } from './DoubleChevronOutlined';
|
|
85
86
|
export { default as DoubleDocumentFilled } from './DoubleDocumentFilled';
|
|
86
87
|
export { default as DoubleDocumentOutlined } from './DoubleDocumentOutlined';
|
|
87
88
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
package/es/index.js
CHANGED
|
@@ -82,6 +82,7 @@ export { default as DollarOutlined } from './DollarOutlined';
|
|
|
82
82
|
export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
83
83
|
export { default as DoubleChainFilled } from './DoubleChainFilled';
|
|
84
84
|
export { default as DoubleChainOutlined } from './DoubleChainOutlined';
|
|
85
|
+
export { default as DoubleChevronOutlined } from './DoubleChevronOutlined';
|
|
85
86
|
export { default as DoubleDocumentFilled } from './DoubleDocumentFilled';
|
|
86
87
|
export { default as DoubleDocumentOutlined } from './DoubleDocumentOutlined';
|
|
87
88
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
declare function DoubleChevronOutlined(componentProps: IconProps): JSX.Element;
|
|
4
|
+
declare namespace DoubleChevronOutlined {
|
|
5
|
+
var displayName: string;
|
|
6
|
+
}
|
|
7
|
+
export default DoubleChevronOutlined;
|
|
@@ -0,0 +1,77 @@
|
|
|
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 DoubleChevronOutlined(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("g", {
|
|
65
|
+
fillRule: "evenodd",
|
|
66
|
+
clipRule: "evenodd",
|
|
67
|
+
fill: "currentColor"
|
|
68
|
+
}, React.createElement("path", {
|
|
69
|
+
d: "M18.64 5.232a1 1 0 01.128 1.408L14.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128zM10.64 5.232a1 1 0 01.128 1.408L6.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128z"
|
|
70
|
+
})));
|
|
71
|
+
};
|
|
72
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
73
|
+
component: IconNode
|
|
74
|
+
}));
|
|
75
|
+
}
|
|
76
|
+
DoubleChevronOutlined.displayName = 'DoubleChevronOutlined';
|
|
77
|
+
exports["default"] = DoubleChevronOutlined;
|
package/lib/index.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export { default as DollarOutlined } from './DollarOutlined';
|
|
|
82
82
|
export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
83
83
|
export { default as DoubleChainFilled } from './DoubleChainFilled';
|
|
84
84
|
export { default as DoubleChainOutlined } from './DoubleChainOutlined';
|
|
85
|
+
export { default as DoubleChevronOutlined } from './DoubleChevronOutlined';
|
|
85
86
|
export { default as DoubleDocumentFilled } from './DoubleDocumentFilled';
|
|
86
87
|
export { default as DoubleDocumentOutlined } from './DoubleDocumentOutlined';
|
|
87
88
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
package/lib/index.js
CHANGED
|
@@ -9,11 +9,11 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
11
|
exports.CirculationFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CellPhoneCallFilled = 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.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 = void 0;
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.
|
|
16
|
-
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;
|
|
12
|
+
exports.EditFilled = exports.Edit2Filled = exports.EcLogo = exports.EarthOutlined = exports.EarthFilled = 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 = exports.DollarInCircleOutlined = exports.DocumentOutlined = exports.DocumentFilled = exports.DisplayerOutlined = 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 = void 0;
|
|
13
|
+
exports.LimitlessFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InviteFriendFilled = exports.InsFilled = exports.ImportOutlined = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GiftWithClipFilled = exports.GiftFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = 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.FileBottomArrowOutlined = exports.FacebookFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.EyeCornerFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EmailWithTextFilled = exports.EditSimpleOutlined = void 0;
|
|
14
|
+
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.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.OfficeBagOutlined = exports.OffOutlined = exports.OctagonPromptOutlined = exports.OctagonPromptFilled = exports.NoteOutlined = exports.NoteFilled = exports.NewspaperOutlined = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MenuListOutlined = exports.MediumVolumeOutlined = 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.LinkedinFilled = exports.LineUpOutlined = exports.LineUpFilled = void 0;
|
|
15
|
+
exports.SquareAOutlined = exports.SpeakerOutlined = exports.SpeakerFilled = exports.SiteMapOutlined = exports.SimpleEarthOutlined = 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.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.QuestionMarkFilled = exports.QrCodeFilled = exports.PlusOutlined = exports.PlusFilled = exports.PlayFilled = exports.PhoneOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = exports.PeopleSettingFilled = void 0;
|
|
16
|
+
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;
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
19
19
|
enumerable: true,
|
|
@@ -602,6 +602,13 @@ Object.defineProperty(exports, "DoubleChainOutlined", {
|
|
|
602
602
|
return __importDefault(DoubleChainOutlined_1)["default"];
|
|
603
603
|
}
|
|
604
604
|
});
|
|
605
|
+
var DoubleChevronOutlined_1 = require("./DoubleChevronOutlined");
|
|
606
|
+
Object.defineProperty(exports, "DoubleChevronOutlined", {
|
|
607
|
+
enumerable: true,
|
|
608
|
+
get: function get() {
|
|
609
|
+
return __importDefault(DoubleChevronOutlined_1)["default"];
|
|
610
|
+
}
|
|
611
|
+
});
|
|
605
612
|
var DoubleDocumentFilled_1 = require("./DoubleDocumentFilled");
|
|
606
613
|
Object.defineProperty(exports, "DoubleDocumentFilled", {
|
|
607
614
|
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.46",
|
|
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": "d05872eaaf06cf0be5ef1e821ee64cf573289650"
|
|
26
26
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function DoubleChevronOutlined(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
|
+
<g fillRule="evenodd" clipRule="evenodd" fill="currentColor">
|
|
8
|
+
<path d="M18.64 5.232a1 1 0 01.128 1.408L14.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128zM10.64 5.232a1 1 0 01.128 1.408L6.302 12l4.466 5.36a1 1 0 01-1.536 1.28l-4.467-5.36a2 2 0 010-2.56l4.467-5.36a1 1 0 011.408-.128z" />
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
DoubleChevronOutlined.displayName = 'DoubleChevronOutlined';
|
|
17
|
+
export default DoubleChevronOutlined;
|
package/src/index.tsx
CHANGED
|
@@ -82,6 +82,7 @@ export { default as DollarOutlined } from './DollarOutlined';
|
|
|
82
82
|
export { default as DotCalenderOutlined } from './DotCalenderOutlined';
|
|
83
83
|
export { default as DoubleChainFilled } from './DoubleChainFilled';
|
|
84
84
|
export { default as DoubleChainOutlined } from './DoubleChainOutlined';
|
|
85
|
+
export { default as DoubleChevronOutlined } from './DoubleChevronOutlined';
|
|
85
86
|
export { default as DoubleDocumentFilled } from './DoubleDocumentFilled';
|
|
86
87
|
export { default as DoubleDocumentOutlined } from './DoubleDocumentOutlined';
|
|
87
88
|
export { default as DoubleDownOutlined } from './DoubleDownOutlined';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="double chevron / 24 / Outline">
|
|
3
|
+
<path id="Vector 1151 (Stroke)" fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M18.6402 5.2318C19.0645 5.58537 19.1218 6.21593 18.7683 6.64021L14.3018 12L18.7683 17.3598C19.1218 17.7841 19.0645 18.4147 18.6402 18.7682C18.216 19.1218 17.5854 19.0645 17.2318 18.6402L12.7653 13.2804C12.1472 12.5387 12.1472 11.4613 12.7653 10.7197L17.2318 5.35984C17.5854 4.93556 18.216 4.87824 18.6402 5.2318Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
<path id="Vector 1152 (Stroke)" fill-rule="evenodd" clip-rule="evenodd"
|
|
7
|
+
d="M10.6402 5.2318C11.0645 5.58537 11.1218 6.21593 10.7683 6.64021L6.30176 12L10.7683 17.3598C11.1218 17.7841 11.0645 18.4147 10.6402 18.7682C10.216 19.1218 9.58539 19.0645 9.23183 18.6402L4.76532 13.2804C4.14724 12.5387 4.14724 11.4613 4.76532 10.7197L9.23183 5.35984C9.58539 4.93556 10.216 4.87824 10.6402 5.2318Z"
|
|
8
|
+
fill="currentColor" />
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g id="double chevron / 24 / Outline">
|
|
3
|
+
<path id="Vector 1151 (Stroke)" fill-rule="evenodd" clip-rule="evenodd"
|
|
4
|
+
d="M18.6402 5.2318C19.0645 5.58537 19.1218 6.21593 18.7683 6.64021L14.3018 12L18.7683 17.3598C19.1218 17.7841 19.0645 18.4147 18.6402 18.7682C18.216 19.1218 17.5854 19.0645 17.2318 18.6402L12.7653 13.2804C12.1472 12.5387 12.1472 11.4613 12.7653 10.7197L17.2318 5.35984C17.5854 4.93556 18.216 4.87824 18.6402 5.2318Z"
|
|
5
|
+
fill="currentColor" />
|
|
6
|
+
<path id="Vector 1152 (Stroke)" fill-rule="evenodd" clip-rule="evenodd"
|
|
7
|
+
d="M10.6402 5.2318C11.0645 5.58537 11.1218 6.21593 10.7683 6.64021L6.30176 12L10.7683 17.3598C11.1218 17.7841 11.0645 18.4147 10.6402 18.7682C10.216 19.1218 9.58539 19.0645 9.23183 18.6402L4.76532 13.2804C4.14724 12.5387 4.14724 11.4613 4.76532 10.7197L9.23183 5.35984C9.58539 4.93556 10.216 4.87824 10.6402 5.2318Z"
|
|
8
|
+
fill="currentColor" />
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|