a-icons 1.2.52 → 1.2.53
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/CloseCircleFilled.js +4 -5
- package/es/PlayOutlined.d.ts +6 -0
- package/es/{PlaySharpFilled.js → PlayOutlined.js} +3 -3
- package/es/RelationCircle.js +9 -2
- package/es/index.d.ts +1 -2
- package/es/index.js +1 -2
- package/lib/CloseCircleFilled.js +4 -5
- package/lib/PlayOutlined.d.ts +6 -0
- package/lib/{PlaySharpFilled.js → PlayOutlined.js} +3 -3
- package/lib/RelationCircle.js +9 -2
- package/lib/index.d.ts +1 -2
- package/lib/index.js +11 -18
- package/package.json +1 -1
- package/src/CloseCircleFilled.tsx +3 -4
- package/src/{PlaySharpFilled.tsx → PlayOutlined.tsx} +3 -3
- package/src/RelationCircle.tsx +3 -2
- package/src/index.tsx +1 -2
- package/svgs/business/relation-circle.svg +3 -2
- package/svgs/filled/close-circle-filled.svg +3 -3
- package/tmpAllSvgs/close-circle-filled.svg +3 -3
- package/tmpAllSvgs/relation-circle.svg +3 -2
- package/es/BindChainFilled.d.ts +0 -6
- package/es/BindChainFilled.js +0 -32
- package/es/PlaySharpFilled.d.ts +0 -6
- package/lib/BindChainFilled.d.ts +0 -6
- package/lib/BindChainFilled.js +0 -75
- package/lib/PlaySharpFilled.d.ts +0 -6
- package/src/BindChainFilled.tsx +0 -20
- package/svgs/filled/bind-chain-filled.svg +0 -5
- package/tmpAllSvgs/bind-chain-filled.svg +0 -5
- /package/svgs/{filled/play-sharp-filled.svg → outlined/play-outlined.svg} +0 -0
- /package/tmpAllSvgs/{play-sharp-filled.svg → play-outlined.svg} +0 -0
package/es/CloseCircleFilled.js
CHANGED
|
@@ -19,11 +19,10 @@ function CloseCircleFilled(componentProps) {
|
|
|
19
19
|
fill: "none",
|
|
20
20
|
xmlns: "http://www.w3.org/2000/svg"
|
|
21
21
|
}, props), /*#__PURE__*/React.createElement("path", {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
strokeLinejoin: "round"
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
clipRule: "evenodd",
|
|
24
|
+
d: "M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11zm-6.757-2.828L13.414 12l2.829 2.828-1.415 1.415L12 13.414l-2.828 2.829-1.415-1.415L10.586 12 7.757 9.172l1.415-1.415L12 10.586l2.828-2.829 1.415 1.415z",
|
|
25
|
+
fill: "currentColor"
|
|
27
26
|
}));
|
|
28
27
|
};
|
|
29
28
|
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
@@ -12,7 +12,7 @@ var __assign = this && this.__assign || function () {
|
|
|
12
12
|
};
|
|
13
13
|
import * as React from 'react';
|
|
14
14
|
import Icon from 'a-base-icon/lib/icon';
|
|
15
|
-
function
|
|
15
|
+
function PlayOutlined(componentProps) {
|
|
16
16
|
var IconNode = function IconNode(props) {
|
|
17
17
|
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
18
|
viewBox: "0 0 24 24",
|
|
@@ -27,5 +27,5 @@ function PlaySharpFilled(componentProps) {
|
|
|
27
27
|
component: IconNode
|
|
28
28
|
}));
|
|
29
29
|
}
|
|
30
|
-
|
|
31
|
-
export default
|
|
30
|
+
PlayOutlined.displayName = 'PlayOutlined';
|
|
31
|
+
export default PlayOutlined;
|
package/es/RelationCircle.js
CHANGED
|
@@ -18,9 +18,16 @@ function RelationCircle(componentProps) {
|
|
|
18
18
|
viewBox: "0 0 24 24",
|
|
19
19
|
fill: "none",
|
|
20
20
|
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
-
}, props), /*#__PURE__*/React.createElement("
|
|
22
|
-
|
|
21
|
+
}, props), /*#__PURE__*/React.createElement("rect", {
|
|
22
|
+
x: 1,
|
|
23
|
+
y: 1,
|
|
24
|
+
width: 22,
|
|
25
|
+
height: 22,
|
|
26
|
+
rx: 11,
|
|
23
27
|
fill: "#47A92A"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M16.011 8.236a1.473 1.473 0 10-1.39-1.965h-2.539c-1.584 0-2.455.871-2.455 2.456v2.782H6.926a1.474 1.474 0 100 .982h2.7v2.783c0 1.585.872 2.456 2.456 2.456h2.54a1.474 1.474 0 100-.983h-2.54c-1.034 0-1.473-.438-1.473-1.473v-2.783h4.013a1.474 1.474 0 100-.982h-4.013V8.727c0-1.035.439-1.474 1.473-1.474h2.54c.202.573.748.983 1.39.983z",
|
|
30
|
+
fill: "#fff"
|
|
24
31
|
}));
|
|
25
32
|
};
|
|
26
33
|
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
package/es/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ export { default as BankAddFilled } from './BankAddFilled';
|
|
|
20
20
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
21
21
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
22
22
|
export { default as BellOutlined } from './BellOutlined';
|
|
23
|
-
export { default as BindChainFilled } from './BindChainFilled';
|
|
24
23
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
25
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
26
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
@@ -258,7 +257,7 @@ export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
|
258
257
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
259
258
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
260
259
|
export { default as PlayFilled } from './PlayFilled';
|
|
261
|
-
export { default as
|
|
260
|
+
export { default as PlayOutlined } from './PlayOutlined';
|
|
262
261
|
export { default as PlaySolidFilled } from './PlaySolidFilled';
|
|
263
262
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
264
263
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
package/es/index.js
CHANGED
|
@@ -20,7 +20,6 @@ export { default as BankAddFilled } from './BankAddFilled';
|
|
|
20
20
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
21
21
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
22
22
|
export { default as BellOutlined } from './BellOutlined';
|
|
23
|
-
export { default as BindChainFilled } from './BindChainFilled';
|
|
24
23
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
25
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
26
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
@@ -258,7 +257,7 @@ export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
|
258
257
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
259
258
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
260
259
|
export { default as PlayFilled } from './PlayFilled';
|
|
261
|
-
export { default as
|
|
260
|
+
export { default as PlayOutlined } from './PlayOutlined';
|
|
262
261
|
export { default as PlaySolidFilled } from './PlaySolidFilled';
|
|
263
262
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
264
263
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
package/lib/CloseCircleFilled.js
CHANGED
|
@@ -62,11 +62,10 @@ function CloseCircleFilled(componentProps) {
|
|
|
62
62
|
fill: "none",
|
|
63
63
|
xmlns: "http://www.w3.org/2000/svg"
|
|
64
64
|
}, props), React.createElement("path", {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
strokeLinejoin: "round"
|
|
65
|
+
fillRule: "evenodd",
|
|
66
|
+
clipRule: "evenodd",
|
|
67
|
+
d: "M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11zm-6.757-2.828L13.414 12l2.829 2.828-1.415 1.415L12 13.414l-2.828 2.829-1.415-1.415L10.586 12 7.757 9.172l1.415-1.415L12 10.586l2.828-2.829 1.415 1.415z",
|
|
68
|
+
fill: "currentColor"
|
|
70
69
|
}));
|
|
71
70
|
};
|
|
72
71
|
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
@@ -55,7 +55,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
55
55
|
});
|
|
56
56
|
var React = __importStar(require("react"));
|
|
57
57
|
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
58
|
-
function
|
|
58
|
+
function PlayOutlined(componentProps) {
|
|
59
59
|
var IconNode = function IconNode(props) {
|
|
60
60
|
return React.createElement("svg", __assign({
|
|
61
61
|
viewBox: "0 0 24 24",
|
|
@@ -70,5 +70,5 @@ function PlaySharpFilled(componentProps) {
|
|
|
70
70
|
component: IconNode
|
|
71
71
|
}));
|
|
72
72
|
}
|
|
73
|
-
|
|
74
|
-
exports["default"] =
|
|
73
|
+
PlayOutlined.displayName = 'PlayOutlined';
|
|
74
|
+
exports["default"] = PlayOutlined;
|
package/lib/RelationCircle.js
CHANGED
|
@@ -61,9 +61,16 @@ function RelationCircle(componentProps) {
|
|
|
61
61
|
viewBox: "0 0 24 24",
|
|
62
62
|
fill: "none",
|
|
63
63
|
xmlns: "http://www.w3.org/2000/svg"
|
|
64
|
-
}, props), React.createElement("
|
|
65
|
-
|
|
64
|
+
}, props), React.createElement("rect", {
|
|
65
|
+
x: 1,
|
|
66
|
+
y: 1,
|
|
67
|
+
width: 22,
|
|
68
|
+
height: 22,
|
|
69
|
+
rx: 11,
|
|
66
70
|
fill: "#47A92A"
|
|
71
|
+
}), React.createElement("path", {
|
|
72
|
+
d: "M16.011 8.236a1.473 1.473 0 10-1.39-1.965h-2.539c-1.584 0-2.455.871-2.455 2.456v2.782H6.926a1.474 1.474 0 100 .982h2.7v2.783c0 1.585.872 2.456 2.456 2.456h2.54a1.474 1.474 0 100-.983h-2.54c-1.034 0-1.473-.438-1.473-1.473v-2.783h4.013a1.474 1.474 0 100-.982h-4.013V8.727c0-1.035.439-1.474 1.473-1.474h2.54c.202.573.748.983 1.39.983z",
|
|
73
|
+
fill: "#fff"
|
|
67
74
|
}));
|
|
68
75
|
};
|
|
69
76
|
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
package/lib/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ export { default as BankAddFilled } from './BankAddFilled';
|
|
|
20
20
|
export { default as BarChartFilled } from './BarChartFilled';
|
|
21
21
|
export { default as BarsOutlined } from './BarsOutlined';
|
|
22
22
|
export { default as BellOutlined } from './BellOutlined';
|
|
23
|
-
export { default as BindChainFilled } from './BindChainFilled';
|
|
24
23
|
export { default as BindChainOutlined } from './BindChainOutlined';
|
|
25
24
|
export { default as BiscuitFilled } from './BiscuitFilled';
|
|
26
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined';
|
|
@@ -258,7 +257,7 @@ export { default as PersonWarningFilled } from './PersonWarningFilled';
|
|
|
258
257
|
export { default as PhoneCallFilled } from './PhoneCallFilled';
|
|
259
258
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
260
259
|
export { default as PlayFilled } from './PlayFilled';
|
|
261
|
-
export { default as
|
|
260
|
+
export { default as PlayOutlined } from './PlayOutlined';
|
|
262
261
|
export { default as PlaySolidFilled } from './PlaySolidFilled';
|
|
263
262
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
264
263
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
package/lib/index.js
CHANGED
|
@@ -8,14 +8,14 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", {
|
|
9
9
|
value: true
|
|
10
10
|
});
|
|
11
|
-
exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrokenLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.
|
|
12
|
-
exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled =
|
|
13
|
-
exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined =
|
|
14
|
-
exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HouseOutlined = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled =
|
|
15
|
-
exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = 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.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled =
|
|
16
|
-
exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.
|
|
17
|
-
exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined =
|
|
18
|
-
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword =
|
|
11
|
+
exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardLoopOutlined = exports.CardLoopFilled = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.Call = exports.CallRecordOutlined = exports.CallOutlined = exports.CallFailOutlined = exports.CalendarOutlined = exports.CalendarFilled = exports.BusinessCardOutlined = exports.BrokenLineOutlined = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BookOutlined = exports.BookFilled = exports.BoardOutlined = exports.BoardFilled = exports.BlockChainOutlined = exports.BlockChainFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BindChainOutlined = exports.BellOutlined = exports.BarsOutlined = exports.BarChartFilled = exports.BankAddFilled = exports.AtOutlined = exports.AscOutlined = exports.ArrowsRightLeftOutlined = exports.ArrowsChevronOutlined = exports.ArrowTopRightOutlined = exports.ArrowRightOutlined = exports.ArrowLeftOutlined = exports.ArrowDropDownFilled = exports.ArrowCircleOutlined = exports.AppstoreOutlined = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddOutlined = exports.AddMoneyFilled = exports.AddFilled = exports.AddChildOutlined = exports.AdFilled = exports.ImpassabilityFilled = void 0;
|
|
12
|
+
exports.DiamondMoneyOutlined = exports.DiamondMoneyFilled = exports.DiamondFileOutlined = exports.DiamondFileFilled = exports.DescOutlined = exports.DataPanelOutlined = exports.DataLogOutlined = exports.DashboardOutlined = exports.DashboardFilled = exports.DailyFinanceOutlined = exports.CustomerServiceOutlined = exports.CreditCardOutlined = exports.CreditCardFilled = exports.CornerRightArrowsOutlined = exports.CopyLineOutlined = exports.CopyFilled = exports.ContinueInvestFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.ComputerOutlined = exports.ComputerFilled = exports.ComputerCheckOutlined = exports.ColumnarAnalyzeOutlined = exports.CloudUploadOutlined = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockFastForwardOutlined = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.ClipboardOutlined = exports.ClientOutlined = exports.CircleThreeRectFilled = exports.CircleThreeLinesOutlined = exports.CircleStopFilled = exports.CircleRLetterOutlined = exports.CirclePointsTriangleOutlined = exports.CirclePointsTriangleFilled = exports.CirclePlusFilled = exports.CircleDollarOutlined = exports.CircleDollarFilled = exports.CircleCLetterOutlined = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.CheckOutlined = exports.ChainOutlined = exports.ChainFilled = void 0;
|
|
13
|
+
exports.FilterOutlined = exports.FilterFilled = exports.FilterCupOutlined = exports.FilletFileListOutlined = exports.FileTextOutlined = exports.FileShieldOutlined = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFinishFilled = exports.FileFilled = exports.EyeSlashOutlined = exports.EyeSlashFilled = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditOutlined = exports.EditFilled = exports.Edit2Filled = exports.EarthOutlined = exports.EarthFilled = exports.DragUpAndDownOutlined = exports.DraftLineOutlined = exports.DownloadOutlined = exports.DownloadOutlinedFile = exports.DownloadLineOutlined = exports.DownloadFilled = exports.DoubleUsersOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DoubleDownOutlined = exports.DoubleDocumentOutlined = exports.DoubleDocumentFilled = exports.DoubleChevronOutlined = exports.DoubleChainOutlined = exports.DoubleChainFilled = exports.DotsOutlined = exports.DollarOutlined = exports.DollarInCircleOutlined = exports.DocumentVoteFilled = exports.DocumentTextFilled = exports.DocumentPassFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DocumentErrorFilled = exports.DocumentEditOutlined = exports.DisplayerOutlined = void 0;
|
|
14
|
+
exports.LocationOutlined = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.LinkOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LineChartUpOutlined = exports.LimitlessFilled = exports.LightbulbOutlined = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.LanguageOutlined = exports.KeyFilled = exports.InvoiceOutlined = exports.InternalResourceOutlined = exports.InformationOutlined = exports.InformationFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacFilled = exports.IdCardFilled = exports.HouseOutlined = exports.HourGlassOutlined = exports.HomeOutlined = exports.HomeFilled = exports.HandleOutlined = exports.HandCoinsOutlined = exports.HandCoinsFilled = exports.GrowthGraphOutlined = exports.GroupOutlined = exports.GroupFilled = exports.GiftFilled = exports.GiftBoxOutlined = exports.GarbageCanOutlined = exports.FunnelFilled = exports.FundProjectionScreenOutlined = exports.FundProjectionScreenFilled = exports.FourDotOutlined = exports.FourDotFilled = exports.FormOutlined = exports.ForbidFireOutlined = exports.ForbidFireFilled = exports.FolderBracketOutlined = exports.FolderAddOutlined = exports.FoldSearchFileOutlined = exports.FlagOutlined = exports.FireOutlined = exports.FireFilled = void 0;
|
|
15
|
+
exports.PeopleSettingFilled = exports.PeopleQuestionFilled = exports.PeopleOutlined = exports.PeopleGroupOutlined = exports.PeopleGroupFilled = exports.PeopleGetOutlined = exports.PeopleFilled = exports.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCircleOutlined = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.Pdf = exports.PauseInvestFilled = exports.PauseCircleFilled = exports.OtcMerchantLine = exports.OppositeArrowsOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = 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.MessageTipOutlined = exports.MessageSquareOutlined = exports.MessageSmileOutlined = exports.MenuListOutlined = exports.MediumVolumeOutlined = exports.MappingAddOutlined = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LogoTmd = exports.LogoEc = exports.LockOutlined = exports.LockFilled = exports.LockEllipsisFilled = void 0;
|
|
16
|
+
exports.ShapeFilled = exports.ShapArrowRightFilled = exports.ShapArrowLeftFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SeoOutlined = exports.SeoFilled = exports.SearchOutlined = exports.SearchFilled = exports.RoleSubAccount = exports.RoleSignalResource = exports.RoleSale = exports.RoleOtcMerchant = exports.RoleManage = exports.RoleIb = exports.RoleFollower = exports.RoleDirect = exports.RiskControlOutlined = exports.RiskControlFilled = exports.RetryFilled = exports.ResourceOutlined = exports.RelationInternal = exports.RelationCircle = exports.RefreshRightOutlined = exports.RefreshOutlined = exports.RefreshFilled = exports.RectsPlusFilled = exports.RectTwoBarOutlined = exports.RectTwoBarFilled = exports.RectBoardOutlined = exports.ReceiptOutlined = exports.ReceiptFilled = exports.QuestionMarkOutlined = exports.QuestionMarkFilled = exports.QrCodeOutlined = exports.QrCodeFilled = exports.PlusOutlined = exports.PlaySolidFilled = exports.PlayOutlined = exports.PlayFilled = exports.PhoneOutlined = exports.PhoneCallFilled = exports.PersonWarningFilled = exports.PersonTransferFilled = exports.PersonLeftArrowFilled = exports.PeopleTieOutlined = exports.PeopleTeamOutlined = exports.PeopleTeamFilled = void 0;
|
|
17
|
+
exports.UserInfoGift = exports.UserInfoEmail = exports.UserInfoData = exports.UserInfoCellPhone = exports.UserInfoAuth = exports.UserCheckOutlined = exports.UploadSendOutlined = exports.UpgradeFilled = exports.UnlockFilled = exports.UnbindChainOutlined = exports.TwoSwitchOutlined = exports.TwoPersonConfirm = exports.TwoPeopleRectOutlined = exports.TreeOutlined = exports.TreeFilled = exports.TreeAreaOutlined = exports.TrashCanFilled = exports.TransferFileFilled = exports.TagRecharged = exports.TagOutlined = exports.TagFilled = exports.TagBrokenHeart = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareRightUpOutlined = exports.SquareLeftTurnFilled = exports.SquareAOutlined = exports.SphereOutlined = exports.SphereFilled = exports.SpeakerFilled = exports.SocialMediaYoutube = exports.SocialMediaTwitter = exports.SocialMediaIns = exports.SocialMediaIn = exports.SocialMediaFacebook = exports.SimpleEarthOutlined = exports.SignalStopReviewOutlined = exports.SignalOutlined = exports.SignalLineOutlined = exports.SignalDiffusionOutlined = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShieldOutlined = exports.ShieldFilled = exports.ShareOutlined = exports.ShareFilled = exports.ShapeOutlined = void 0;
|
|
18
|
+
exports.WarningRuleOutlined = exports.WarningRuleFilled = exports.WarningOutlined = exports.WarningFilled = exports.WalletOutlined = exports.WalletFilled = exports.UserOutlined = exports.UserInfoTime = exports.UserInfoTimeZone = exports.UserInfoRealname = exports.UserInfoPassword = void 0;
|
|
19
19
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
20
20
|
Object.defineProperty(exports, "ImpassabilityFilled", {
|
|
21
21
|
enumerable: true,
|
|
@@ -170,13 +170,6 @@ Object.defineProperty(exports, "BellOutlined", {
|
|
|
170
170
|
return __importDefault(BellOutlined_1)["default"];
|
|
171
171
|
}
|
|
172
172
|
});
|
|
173
|
-
var BindChainFilled_1 = require("./BindChainFilled");
|
|
174
|
-
Object.defineProperty(exports, "BindChainFilled", {
|
|
175
|
-
enumerable: true,
|
|
176
|
-
get: function get() {
|
|
177
|
-
return __importDefault(BindChainFilled_1)["default"];
|
|
178
|
-
}
|
|
179
|
-
});
|
|
180
173
|
var BindChainOutlined_1 = require("./BindChainOutlined");
|
|
181
174
|
Object.defineProperty(exports, "BindChainOutlined", {
|
|
182
175
|
enumerable: true,
|
|
@@ -1836,11 +1829,11 @@ Object.defineProperty(exports, "PlayFilled", {
|
|
|
1836
1829
|
return __importDefault(PlayFilled_1)["default"];
|
|
1837
1830
|
}
|
|
1838
1831
|
});
|
|
1839
|
-
var
|
|
1840
|
-
Object.defineProperty(exports, "
|
|
1832
|
+
var PlayOutlined_1 = require("./PlayOutlined");
|
|
1833
|
+
Object.defineProperty(exports, "PlayOutlined", {
|
|
1841
1834
|
enumerable: true,
|
|
1842
1835
|
get: function get() {
|
|
1843
|
-
return __importDefault(
|
|
1836
|
+
return __importDefault(PlayOutlined_1)["default"];
|
|
1844
1837
|
}
|
|
1845
1838
|
});
|
|
1846
1839
|
var PlaySolidFilled_1 = require("./PlaySolidFilled");
|
package/package.json
CHANGED
|
@@ -5,11 +5,10 @@ function CloseCircleFilled(componentProps: IconProps) {
|
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
8
|
-
|
|
8
|
+
fillRule="evenodd"
|
|
9
|
+
clipRule="evenodd"
|
|
10
|
+
d="M23 12c0 6.075-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1s11 4.925 11 11zm-6.757-2.828L13.414 12l2.829 2.828-1.415 1.415L12 13.414l-2.828 2.829-1.415-1.415L10.586 12 7.757 9.172l1.415-1.415L12 10.586l2.828-2.829 1.415 1.415z"
|
|
9
11
|
fill="currentColor"
|
|
10
|
-
stroke="currentColor"
|
|
11
|
-
strokeWidth={2}
|
|
12
|
-
strokeLinejoin="round"
|
|
13
12
|
/>
|
|
14
13
|
</svg>
|
|
15
14
|
);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
3
|
|
|
4
|
-
function
|
|
4
|
+
function PlayOutlined(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
7
|
<path
|
|
@@ -14,5 +14,5 @@ function PlaySharpFilled(componentProps: IconProps) {
|
|
|
14
14
|
return <Icon {...componentProps} component={IconNode} />;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
export default
|
|
17
|
+
PlayOutlined.displayName = 'PlayOutlined';
|
|
18
|
+
export default PlayOutlined;
|
package/src/RelationCircle.tsx
CHANGED
|
@@ -4,9 +4,10 @@ import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
|
4
4
|
function RelationCircle(componentProps: IconProps) {
|
|
5
5
|
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
6
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
+
<rect x={1} y={1} width={22} height={22} rx={11} fill="#47A92A" />
|
|
7
8
|
<path
|
|
8
|
-
d="
|
|
9
|
-
fill="#
|
|
9
|
+
d="M16.011 8.236a1.473 1.473 0 10-1.39-1.965h-2.539c-1.584 0-2.455.871-2.455 2.456v2.782H6.926a1.474 1.474 0 100 .982h2.7v2.783c0 1.585.872 2.456 2.456 2.456h2.54a1.474 1.474 0 100-.983h-2.54c-1.034 0-1.473-.438-1.473-1.473v-2.783h4.013a1.474 1.474 0 100-.982h-4.013V8.727c0-1.035.439-1.474 1.473-1.474h2.54c.202.573.748.983 1.39.983z"
|
|
10
|
+
fill="#fff"
|
|
10
11
|
/>
|
|
11
12
|
</svg>
|
|
12
13
|
);
|
package/src/index.tsx
CHANGED
|
@@ -20,7 +20,6 @@ export { default as BankAddFilled } from './BankAddFilled'
|
|
|
20
20
|
export { default as BarChartFilled } from './BarChartFilled'
|
|
21
21
|
export { default as BarsOutlined } from './BarsOutlined'
|
|
22
22
|
export { default as BellOutlined } from './BellOutlined'
|
|
23
|
-
export { default as BindChainFilled } from './BindChainFilled'
|
|
24
23
|
export { default as BindChainOutlined } from './BindChainOutlined'
|
|
25
24
|
export { default as BiscuitFilled } from './BiscuitFilled'
|
|
26
25
|
export { default as BiscuitOutlined } from './BiscuitOutlined'
|
|
@@ -258,7 +257,7 @@ export { default as PersonWarningFilled } from './PersonWarningFilled'
|
|
|
258
257
|
export { default as PhoneCallFilled } from './PhoneCallFilled'
|
|
259
258
|
export { default as PhoneOutlined } from './PhoneOutlined'
|
|
260
259
|
export { default as PlayFilled } from './PlayFilled'
|
|
261
|
-
export { default as
|
|
260
|
+
export { default as PlayOutlined } from './PlayOutlined'
|
|
262
261
|
export { default as PlaySolidFilled } from './PlaySolidFilled'
|
|
263
262
|
export { default as PlusOutlined } from './PlusOutlined'
|
|
264
263
|
export { default as QrCodeFilled } from './QrCodeFilled'
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="1" y="1" width="22" height="22" rx="11" fill="#47A92A" />
|
|
2
3
|
<path
|
|
3
|
-
d="
|
|
4
|
-
fill="
|
|
4
|
+
d="M16.0111 8.23586C16.8247 8.23586 17.4843 7.57628 17.4843 6.76264C17.4843 5.94901 16.8247 5.28943 16.0111 5.28943C15.3698 5.28943 14.8242 5.69918 14.6218 6.27116H12.0823C10.4978 6.27116 9.62694 7.142 9.62694 8.72652V11.5093H6.92577C6.72378 10.9366 6.17785 10.5262 5.53608 10.5262C4.72245 10.5262 4.06287 11.1858 4.06287 11.9995C4.06287 12.8131 4.72245 13.4727 5.53608 13.4727C6.1772 13.4727 6.72267 13.0631 6.92516 12.4914H9.62694V15.2741C9.62694 16.8587 10.4978 17.7295 12.0823 17.7295H14.622C14.8245 18.3012 15.37 18.7107 16.0111 18.7107C16.8247 18.7107 17.4843 18.0511 17.4843 17.2375C17.4843 16.4238 16.8247 15.7642 16.0111 15.7642C15.3692 15.7642 14.8233 16.1747 14.6213 16.7474H12.0823C11.0478 16.7474 10.6091 16.3087 10.6091 15.2741V12.4914H14.622C14.8245 13.0631 15.3699 13.4727 16.0111 13.4727C16.8247 13.4727 17.4843 12.8131 17.4843 11.9995C17.4843 11.1858 16.8247 10.5262 16.0111 10.5262C15.3693 10.5262 14.8234 10.9366 14.6214 11.5093H10.6091V8.72652C10.6091 7.692 11.0478 7.25331 12.0823 7.25331H14.6215C14.8237 7.82571 15.3695 8.23586 16.0111 8.23586Z"
|
|
5
|
+
fill="white" />
|
|
5
6
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="
|
|
4
|
-
fill="currentColor"
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM16.2426 9.17154L13.4142 12L16.2426 14.8284L14.8284 16.2426L12 13.4142L9.17154 16.2426L7.75732 14.8284L10.5857 12L7.75732 9.17154L9.17154 7.75732L12 10.5857L14.8284 7.75732L16.2426 9.17154Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
5
|
</svg>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path
|
|
3
|
-
d="
|
|
4
|
-
fill="currentColor"
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
+
d="M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM16.2426 9.17154L13.4142 12L16.2426 14.8284L14.8284 16.2426L12 13.4142L9.17154 16.2426L7.75732 14.8284L10.5857 12L7.75732 9.17154L9.17154 7.75732L12 10.5857L14.8284 7.75732L16.2426 9.17154Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
5
|
</svg>
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="1" y="1" width="22" height="22" rx="11" fill="#47A92A" />
|
|
2
3
|
<path
|
|
3
|
-
d="
|
|
4
|
-
fill="
|
|
4
|
+
d="M16.0111 8.23586C16.8247 8.23586 17.4843 7.57628 17.4843 6.76264C17.4843 5.94901 16.8247 5.28943 16.0111 5.28943C15.3698 5.28943 14.8242 5.69918 14.6218 6.27116H12.0823C10.4978 6.27116 9.62694 7.142 9.62694 8.72652V11.5093H6.92577C6.72378 10.9366 6.17785 10.5262 5.53608 10.5262C4.72245 10.5262 4.06287 11.1858 4.06287 11.9995C4.06287 12.8131 4.72245 13.4727 5.53608 13.4727C6.1772 13.4727 6.72267 13.0631 6.92516 12.4914H9.62694V15.2741C9.62694 16.8587 10.4978 17.7295 12.0823 17.7295H14.622C14.8245 18.3012 15.37 18.7107 16.0111 18.7107C16.8247 18.7107 17.4843 18.0511 17.4843 17.2375C17.4843 16.4238 16.8247 15.7642 16.0111 15.7642C15.3692 15.7642 14.8233 16.1747 14.6213 16.7474H12.0823C11.0478 16.7474 10.6091 16.3087 10.6091 15.2741V12.4914H14.622C14.8245 13.0631 15.3699 13.4727 16.0111 13.4727C16.8247 13.4727 17.4843 12.8131 17.4843 11.9995C17.4843 11.1858 16.8247 10.5262 16.0111 10.5262C15.3693 10.5262 14.8234 10.9366 14.6214 11.5093H10.6091V8.72652C10.6091 7.692 11.0478 7.25331 12.0823 7.25331H14.6215C14.8237 7.82571 15.3695 8.23586 16.0111 8.23586Z"
|
|
5
|
+
fill="white" />
|
|
5
6
|
</svg>
|
package/es/BindChainFilled.d.ts
DELETED
package/es/BindChainFilled.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
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 BindChainFilled(componentProps) {
|
|
16
|
-
var IconNode = function IconNode(props) {
|
|
17
|
-
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
18
|
-
viewBox: "0 0 24 24",
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
20
|
-
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
-
fillRule: "evenodd",
|
|
22
|
-
clipRule: "evenodd",
|
|
23
|
-
d: "M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm6.37 4a3.38 3.38 0 00-2.378.95l-.919.914a.736.736 0 001.037 1.044l.907-.903A1.912 1.912 0 0116.53 9.37c.004.5-.187.981-.533 1.342l-1.584 1.585a1.91 1.91 0 01-2.883-.207.735.735 0 10-1.178.882 3.383 3.383 0 005.101.365l1.589-1.59.008-.009A3.387 3.387 0 0014.647 6zm-3.465 3.68a3.38 3.38 0 00-2.634.984l-1.589 1.59-.009.009A3.387 3.387 0 009.354 18a3.38 3.38 0 002.38-.95l.914-.916a.736.736 0 00-1.04-1.04l-.9.901a1.911 1.911 0 01-3.237-1.364c-.004-.5.187-.981.533-1.342l1.584-1.585a1.911 1.911 0 012.883.207.735.735 0 101.178-.882A3.383 3.383 0 0011.18 9.68z",
|
|
24
|
-
fill: "currentColor"
|
|
25
|
-
}));
|
|
26
|
-
};
|
|
27
|
-
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
28
|
-
component: IconNode
|
|
29
|
-
}));
|
|
30
|
-
}
|
|
31
|
-
BindChainFilled.displayName = 'BindChainFilled';
|
|
32
|
-
export default BindChainFilled;
|
package/es/PlaySharpFilled.d.ts
DELETED
package/lib/BindChainFilled.d.ts
DELETED
package/lib/BindChainFilled.js
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
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 BindChainFilled(componentProps) {
|
|
59
|
-
var IconNode = function IconNode(props) {
|
|
60
|
-
return React.createElement("svg", __assign({
|
|
61
|
-
viewBox: "0 0 24 24",
|
|
62
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
63
|
-
}, props), React.createElement("path", {
|
|
64
|
-
fillRule: "evenodd",
|
|
65
|
-
clipRule: "evenodd",
|
|
66
|
-
d: "M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm6.37 4a3.38 3.38 0 00-2.378.95l-.919.914a.736.736 0 001.037 1.044l.907-.903A1.912 1.912 0 0116.53 9.37c.004.5-.187.981-.533 1.342l-1.584 1.585a1.91 1.91 0 01-2.883-.207.735.735 0 10-1.178.882 3.383 3.383 0 005.101.365l1.589-1.59.008-.009A3.387 3.387 0 0014.647 6zm-3.465 3.68a3.38 3.38 0 00-2.634.984l-1.589 1.59-.009.009A3.387 3.387 0 009.354 18a3.38 3.38 0 002.38-.95l.914-.916a.736.736 0 00-1.04-1.04l-.9.901a1.911 1.911 0 01-3.237-1.364c-.004-.5.187-.981.533-1.342l1.584-1.585a1.911 1.911 0 012.883.207.735.735 0 101.178-.882A3.383 3.383 0 0011.18 9.68z",
|
|
67
|
-
fill: "currentColor"
|
|
68
|
-
}));
|
|
69
|
-
};
|
|
70
|
-
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
71
|
-
component: IconNode
|
|
72
|
-
}));
|
|
73
|
-
}
|
|
74
|
-
BindChainFilled.displayName = 'BindChainFilled';
|
|
75
|
-
exports["default"] = BindChainFilled;
|
package/lib/PlaySharpFilled.d.ts
DELETED
package/src/BindChainFilled.tsx
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
-
|
|
4
|
-
function BindChainFilled(componentProps: IconProps) {
|
|
5
|
-
const IconNode = (props: React.SVGProps<SVGSVGElement>) => (
|
|
6
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
|
|
7
|
-
<path
|
|
8
|
-
fillRule="evenodd"
|
|
9
|
-
clipRule="evenodd"
|
|
10
|
-
d="M8.276 2h7.448A6.276 6.276 0 0122 8.276v7.448A6.276 6.276 0 0115.724 22H8.276A6.276 6.276 0 012 15.724V8.276A6.276 6.276 0 018.276 2zm6.37 4a3.38 3.38 0 00-2.378.95l-.919.914a.736.736 0 001.037 1.044l.907-.903A1.912 1.912 0 0116.53 9.37c.004.5-.187.981-.533 1.342l-1.584 1.585a1.91 1.91 0 01-2.883-.207.735.735 0 10-1.178.882 3.383 3.383 0 005.101.365l1.589-1.59.008-.009A3.387 3.387 0 0014.647 6zm-3.465 3.68a3.38 3.38 0 00-2.634.984l-1.589 1.59-.009.009A3.387 3.387 0 009.354 18a3.38 3.38 0 002.38-.95l.914-.916a.736.736 0 00-1.04-1.04l-.9.901a1.911 1.911 0 01-3.237-1.364c-.004-.5.187-.981.533-1.342l1.584-1.585a1.911 1.911 0 012.883.207.735.735 0 101.178-.882A3.383 3.383 0 0011.18 9.68z"
|
|
11
|
-
fill="currentColor"
|
|
12
|
-
/>
|
|
13
|
-
</svg>
|
|
14
|
-
);
|
|
15
|
-
|
|
16
|
-
return <Icon {...componentProps} component={IconNode} />;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
BindChainFilled.displayName = 'BindChainFilled';
|
|
20
|
-
export default BindChainFilled;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
-
d="M8.27615 2H15.7238C19.1901 2 22 4.80993 22 8.27615V15.7238C22 19.1901 19.1901 22 15.7238 22H8.27615C4.80993 22 2 19.1901 2 15.7238V8.27615C2 4.80993 4.80993 2 8.27615 2ZM14.6469 6.00013C13.76 5.99241 12.9056 6.33365 12.2677 6.95034L11.3494 7.864C11.0614 8.15049 11.0601 8.61633 11.3463 8.9045C11.6326 9.19266 12.098 9.19402 12.3859 8.90753L13.2925 8.00537C13.6528 7.65887 14.1344 7.46722 14.6341 7.47156C15.1355 7.47592 15.6152 7.67722 15.9697 8.03208C16.3243 8.38695 16.5254 8.867 16.5297 9.36885C16.5341 9.86873 16.3428 10.3504 15.9971 10.7109L14.4134 12.296C14.2196 12.4901 13.9863 12.6402 13.7293 12.7361C13.4724 12.832 13.1979 12.8715 12.9244 12.8519C12.6509 12.8323 12.3848 12.7541 12.1441 12.6225C11.9035 12.4909 11.6939 12.309 11.5297 12.0893C11.2865 11.7639 10.8258 11.6974 10.5007 11.9408C10.1756 12.1842 10.1092 12.6453 10.3524 12.9706C10.6429 13.3594 11.0136 13.681 11.4392 13.9138C11.8649 14.1466 12.3356 14.285 12.8194 14.3196C13.3031 14.3543 13.7887 14.2845 14.2432 14.1148C14.6976 13.9451 15.1103 13.6796 15.4532 13.3363L17.0416 11.7466L17.0505 11.7374C17.6666 11.0989 18.0076 10.2437 17.9999 9.35606C17.9922 8.4684 17.6364 7.61928 17.0093 6.99158C16.3822 6.36389 15.5338 6.00784 14.6469 6.00013ZM11.1806 9.68036C10.6969 9.64568 10.2113 9.71554 9.75682 9.88521C9.30242 10.0549 8.88969 10.3204 8.5468 10.6637L6.95838 12.2534L6.9495 12.2626C6.33336 12.9011 5.99242 13.7563 6.00013 14.6439C6.00783 15.5316 6.36357 16.3807 6.99071 17.0084C7.61785 17.6361 8.46622 17.9922 9.3531 17.9999C10.24 18.0076 11.0945 17.6664 11.7324 17.0497L12.6469 16.1345C12.9339 15.8472 12.9339 15.3813 12.6469 15.094C12.3598 14.8067 11.8944 14.8067 11.6073 15.094L10.7068 15.9953C10.3465 16.3414 9.86531 16.5328 9.36587 16.5284C8.86447 16.5241 8.38485 16.3228 8.03029 15.9679C7.67573 15.613 7.47462 15.133 7.47026 14.6312C7.46592 14.1313 7.65715 13.6496 8.00292 13.2891L9.58657 11.704C9.78044 11.5099 10.0137 11.3598 10.2707 11.2639C10.5276 11.168 10.8021 11.1285 11.0756 11.1481C11.3491 11.1677 11.6152 11.2459 11.8559 11.3775C12.0965 11.5091 12.3061 11.691 12.4703 11.9107C12.7135 12.2361 13.1742 12.3026 13.4993 12.0592C13.8244 11.8158 13.8908 11.3547 13.6476 11.0294C13.3571 10.6406 12.9864 10.319 12.5608 10.0862C12.1351 9.85345 11.6644 9.71504 11.1806 9.68036Z"
|
|
4
|
-
fill="currentColor" />
|
|
5
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd"
|
|
3
|
-
d="M8.27615 2H15.7238C19.1901 2 22 4.80993 22 8.27615V15.7238C22 19.1901 19.1901 22 15.7238 22H8.27615C4.80993 22 2 19.1901 2 15.7238V8.27615C2 4.80993 4.80993 2 8.27615 2ZM14.6469 6.00013C13.76 5.99241 12.9056 6.33365 12.2677 6.95034L11.3494 7.864C11.0614 8.15049 11.0601 8.61633 11.3463 8.9045C11.6326 9.19266 12.098 9.19402 12.3859 8.90753L13.2925 8.00537C13.6528 7.65887 14.1344 7.46722 14.6341 7.47156C15.1355 7.47592 15.6152 7.67722 15.9697 8.03208C16.3243 8.38695 16.5254 8.867 16.5297 9.36885C16.5341 9.86873 16.3428 10.3504 15.9971 10.7109L14.4134 12.296C14.2196 12.4901 13.9863 12.6402 13.7293 12.7361C13.4724 12.832 13.1979 12.8715 12.9244 12.8519C12.6509 12.8323 12.3848 12.7541 12.1441 12.6225C11.9035 12.4909 11.6939 12.309 11.5297 12.0893C11.2865 11.7639 10.8258 11.6974 10.5007 11.9408C10.1756 12.1842 10.1092 12.6453 10.3524 12.9706C10.6429 13.3594 11.0136 13.681 11.4392 13.9138C11.8649 14.1466 12.3356 14.285 12.8194 14.3196C13.3031 14.3543 13.7887 14.2845 14.2432 14.1148C14.6976 13.9451 15.1103 13.6796 15.4532 13.3363L17.0416 11.7466L17.0505 11.7374C17.6666 11.0989 18.0076 10.2437 17.9999 9.35606C17.9922 8.4684 17.6364 7.61928 17.0093 6.99158C16.3822 6.36389 15.5338 6.00784 14.6469 6.00013ZM11.1806 9.68036C10.6969 9.64568 10.2113 9.71554 9.75682 9.88521C9.30242 10.0549 8.88969 10.3204 8.5468 10.6637L6.95838 12.2534L6.9495 12.2626C6.33336 12.9011 5.99242 13.7563 6.00013 14.6439C6.00783 15.5316 6.36357 16.3807 6.99071 17.0084C7.61785 17.6361 8.46622 17.9922 9.3531 17.9999C10.24 18.0076 11.0945 17.6664 11.7324 17.0497L12.6469 16.1345C12.9339 15.8472 12.9339 15.3813 12.6469 15.094C12.3598 14.8067 11.8944 14.8067 11.6073 15.094L10.7068 15.9953C10.3465 16.3414 9.86531 16.5328 9.36587 16.5284C8.86447 16.5241 8.38485 16.3228 8.03029 15.9679C7.67573 15.613 7.47462 15.133 7.47026 14.6312C7.46592 14.1313 7.65715 13.6496 8.00292 13.2891L9.58657 11.704C9.78044 11.5099 10.0137 11.3598 10.2707 11.2639C10.5276 11.168 10.8021 11.1285 11.0756 11.1481C11.3491 11.1677 11.6152 11.2459 11.8559 11.3775C12.0965 11.5091 12.3061 11.691 12.4703 11.9107C12.7135 12.2361 13.1742 12.3026 13.4993 12.0592C13.8244 11.8158 13.8908 11.3547 13.6476 11.0294C13.3571 10.6406 12.9864 10.319 12.5608 10.0862C12.1351 9.85345 11.6644 9.71504 11.1806 9.68036Z"
|
|
4
|
-
fill="currentColor" />
|
|
5
|
-
</svg>
|
|
File without changes
|
|
File without changes
|