a-icons 1.0.69 → 1.0.70
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/PlayFilled.d.ts +6 -0
- package/es/PlayFilled.js +40 -0
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/lib/PlayFilled.d.ts +6 -0
- package/lib/PlayFilled.js +93 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +11 -2
- package/package.json +2 -2
- package/src/PlayFilled.tsx +22 -0
- package/src/index.tsx +1 -0
- package/svgs/filled/play-filled.svg +8 -0
- package/tmpAllSvgs/play-filled.svg +8 -0
package/es/PlayFilled.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
|
|
6
|
+
for (var p in s) {
|
|
7
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
import * as React from 'react';
|
|
18
|
+
import Icon from 'a-base-icon/lib/icon';
|
|
19
|
+
|
|
20
|
+
function PlayFilled(componentProps) {
|
|
21
|
+
var IconNode = function IconNode(props) {
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", __assign({
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M17.36 9.7l-7.25-4.19a3 3 0 00-4.5 2.6v8.37a3 3 0 004.5 2.6l7.25-4.19a3 3 0 000-5.19z",
|
|
27
|
+
fill: "currentColor"
|
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
29
|
+
d: "M16.46 13.34l-7.25 4.18a1.19 1.19 0 01-.6.17 1.21 1.21 0 01-1.21-1.21V8.11c0-.668.542-1.21 1.21-1.21.212.003.419.061.6.17l7.25 4.18a1.2 1.2 0 01.6 1.05 1.19 1.19 0 01-.6 1.04z",
|
|
30
|
+
fill: "inherit"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
return /*#__PURE__*/React.createElement(Icon, __assign({}, componentProps, {
|
|
35
|
+
component: IconNode
|
|
36
|
+
}));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
PlayFilled.displayName = 'PlayFilled';
|
|
40
|
+
export default PlayFilled;
|
package/es/index.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
129
129
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
130
130
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
131
131
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
132
|
+
export { default as PlayFilled } from './PlayFilled';
|
|
132
133
|
export { default as PlusFilled } from './PlusFilled';
|
|
133
134
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
134
135
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
package/es/index.js
CHANGED
|
@@ -129,6 +129,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
129
129
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
130
130
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
131
131
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
132
|
+
export { default as PlayFilled } from './PlayFilled';
|
|
132
133
|
export { default as PlusFilled } from './PlusFilled';
|
|
133
134
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
134
135
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
@@ -0,0 +1,93 @@
|
|
|
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
|
+
|
|
8
|
+
for (var p in s) {
|
|
9
|
+
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
return t;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return __assign.apply(this, arguments);
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
20
|
+
if (k2 === undefined) k2 = k;
|
|
21
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
22
|
+
|
|
23
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
24
|
+
desc = {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function get() {
|
|
27
|
+
return m[k];
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
Object.defineProperty(o, k2, desc);
|
|
33
|
+
} : function (o, m, k, k2) {
|
|
34
|
+
if (k2 === undefined) k2 = k;
|
|
35
|
+
o[k2] = m[k];
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
39
|
+
Object.defineProperty(o, "default", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
value: v
|
|
42
|
+
});
|
|
43
|
+
} : function (o, v) {
|
|
44
|
+
o["default"] = v;
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
48
|
+
if (mod && mod.__esModule) return mod;
|
|
49
|
+
var result = {};
|
|
50
|
+
if (mod != null) for (var k in mod) {
|
|
51
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
__setModuleDefault(result, mod);
|
|
55
|
+
|
|
56
|
+
return result;
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
60
|
+
return mod && mod.__esModule ? mod : {
|
|
61
|
+
"default": mod
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
Object.defineProperty(exports, "__esModule", {
|
|
66
|
+
value: true
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
var React = __importStar(require("react"));
|
|
70
|
+
|
|
71
|
+
var icon_1 = __importDefault(require("a-base-icon/lib/icon"));
|
|
72
|
+
|
|
73
|
+
function PlayFilled(componentProps) {
|
|
74
|
+
var IconNode = function IconNode(props) {
|
|
75
|
+
return React.createElement("svg", __assign({
|
|
76
|
+
viewBox: "0 0 24 24",
|
|
77
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
78
|
+
}, props), React.createElement("path", {
|
|
79
|
+
d: "M17.36 9.7l-7.25-4.19a3 3 0 00-4.5 2.6v8.37a3 3 0 004.5 2.6l7.25-4.19a3 3 0 000-5.19z",
|
|
80
|
+
fill: "currentColor"
|
|
81
|
+
}), React.createElement("path", {
|
|
82
|
+
d: "M16.46 13.34l-7.25 4.18a1.19 1.19 0 01-.6.17 1.21 1.21 0 01-1.21-1.21V8.11c0-.668.542-1.21 1.21-1.21.212.003.419.061.6.17l7.25 4.18a1.2 1.2 0 01.6 1.05 1.19 1.19 0 01-.6 1.04z",
|
|
83
|
+
fill: "inherit"
|
|
84
|
+
}));
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
return React.createElement(icon_1["default"], __assign({}, componentProps, {
|
|
88
|
+
component: IconNode
|
|
89
|
+
}));
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
PlayFilled.displayName = 'PlayFilled';
|
|
93
|
+
exports["default"] = PlayFilled;
|
package/lib/index.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
129
129
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
130
130
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
131
131
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
132
|
+
export { default as PlayFilled } from './PlayFilled';
|
|
132
133
|
export { default as PlusFilled } from './PlusFilled';
|
|
133
134
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
134
135
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
package/lib/index.js
CHANGED
|
@@ -11,8 +11,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
11
11
|
});
|
|
12
12
|
exports.CreditCardFilled = exports.CopyFilled = exports.ConfirmCircleOutlined = exports.ConfirmCircleFilled = exports.CoinOverlapLockFilled = exports.CoinOverlapFilled = exports.CloseSquareOutlined = exports.CloseSquareFilled = exports.CloseOutlined = exports.CloseFilled = exports.CloseCircleOutlined = exports.CloseCircleFilled = exports.ClockCircleOutline = exports.ClockCircleFilled = exports.CirclePlusFilled = exports.ChevronUpFilled = exports.ChevronRightOutlined = exports.CheckboxMultipleOutlined = exports.ChainOutlined = exports.ChainFilled = exports.CategoryOutlined = exports.CategoryFilled = exports.CardOutlined = exports.CardFilled = exports.CameraOutlined = exports.CameraFilled = exports.CalendarOutlined = exports.BusinessCardOutlined = exports.BusinessCardFilled = exports.BrokenLineOutlined = exports.BrokenLineFilled = exports.BoxOutlined = exports.BoxFilled = exports.BoxAddFilled = exports.BiscuitOutlined = exports.BiscuitFilled = exports.BankCardFilled = exports.AtOutlined = exports.ArticleBoardFilled = exports.ArrowsRightLeftOutlined = exports.ArrowsRightLeftFilled = exports.ArrowsChevronOutlined = exports.ArrowsChevronFilled = exports.ArrowUpFilled = exports.ArrowDropDownFilled = exports.ArrowDownFilled = exports.AlertTriangleOutlined = exports.AlertTriangleFilled = exports.AddFilled = exports.ImpassabilityFilled = void 0;
|
|
13
13
|
exports.LockFilled = exports.LockEllipsisFilled = exports.ListOutlined = exports.ListFilled = exports.ListCaptionOutlined = exports.ListCaptionFilled = exports.LinksOutlined = exports.LineUpOutlined = exports.LineUpFilled = exports.LeftOutlined = exports.LayerOutlined = exports.LayerFilled = exports.KeyFilled = exports.ImageOutlined = exports.ImageFilled = exports.ImacOutlined = exports.ImacFilled = exports.IbFilled = exports.HomeOutlined = exports.HomeFilled = exports.HandCoinsFilled = exports.GarbageCanOutlined = exports.FunnelOutlined = exports.FunnelFilled = exports.FormOutlined = exports.FolderAddOutlined = exports.FireFilled = exports.FilterOutlined = exports.FilterFilled = exports.FileSearchFilled = exports.FileOutlined = exports.FileListFilled = exports.FileFilled = exports.FileDownloadLineOutlined = exports.EyeOutlined = exports.EyeFilled = exports.ExternalLinkFilled = exports.ErrorWarningOutlined = exports.ErrorWarningFilled = exports.EditSimpleOutlined = exports.EditFilled = exports.Edit2Filled = exports.DownloadOutlined = exports.DoubleTextOutlined = exports.DoubleTextFilled = exports.DocumentOutlined = exports.DocumentFilled = exports.DashboardOutlined = exports.DashboardFilled = exports.CreditCardOutlined = void 0;
|
|
14
|
-
exports.
|
|
15
|
-
exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = void 0;
|
|
14
|
+
exports.ShareFilled = exports.ShapeOutlined = exports.ShapeFilled = exports.SettingSquareOutlined = exports.SettingSquareFilled = exports.SettingOutlined = exports.SettingFilled = exports.SearchOutlined = exports.SearchFilled = exports.SearchDocumentOutlined = exports.SearchDocumentFilled = exports.RoundedRectangleClockFilled = exports.RetryRefreshFilled = exports.RefreshOutlined = exports.RefreshFilled = 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.PeopleEllipsisFilled = exports.PeopleConfirmFilled = exports.PeopleCloseFilled = exports.PeopleCardFilled = exports.PeopleAddOutlined = exports.PeopleAddFilled = exports.PencilOutlined = exports.OpenMailOutlined = exports.OpenMailFilled = exports.OngoingFilled = exports.MoveOutlined = exports.MoneySymbolOutlined = exports.MoneySymbolFilled = exports.MailOutlined = exports.MailFilled = exports.LoopOutlined = exports.LoopFolderOutlined = exports.LoopFolderFilled = exports.LoopFilled = exports.LockOutlined = void 0;
|
|
15
|
+
exports.WalletOutlined = exports.WalletFilled = exports.VectorOutlined = exports.UpgradeFilled = exports.UpOutlined = exports.UpFilled = exports.UnlockFilled = exports.TrashOutlined = exports.TrashCanFilled = exports.TmdLogo = exports.TagOutlined = exports.TagFilled = exports.StopOutlined = exports.StopFilled = exports.StarOutlined = exports.StarFilled = exports.StampFilled = exports.SquareFilled = exports.ShopKeeperOutlined = exports.ShopKeeperFilled = exports.ShareOutlined = void 0;
|
|
16
16
|
|
|
17
17
|
var ImpassabilityFilled_1 = require("./ImpassabilityFilled");
|
|
18
18
|
|
|
@@ -1193,6 +1193,15 @@ Object.defineProperty(exports, "PhoneOutlined", {
|
|
|
1193
1193
|
}
|
|
1194
1194
|
});
|
|
1195
1195
|
|
|
1196
|
+
var PlayFilled_1 = require("./PlayFilled");
|
|
1197
|
+
|
|
1198
|
+
Object.defineProperty(exports, "PlayFilled", {
|
|
1199
|
+
enumerable: true,
|
|
1200
|
+
get: function get() {
|
|
1201
|
+
return __importDefault(PlayFilled_1)["default"];
|
|
1202
|
+
}
|
|
1203
|
+
});
|
|
1204
|
+
|
|
1196
1205
|
var PlusFilled_1 = require("./PlusFilled");
|
|
1197
1206
|
|
|
1198
1207
|
Object.defineProperty(exports, "PlusFilled", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a-icons",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.70",
|
|
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": "3ca6e40b1f49607b3b236fd86c41b9c79b2ff385"
|
|
26
26
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Icon, { IconProps } from 'a-base-icon/lib/icon';
|
|
3
|
+
|
|
4
|
+
function PlayFilled(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
|
+
d="M17.36 9.7l-7.25-4.19a3 3 0 00-4.5 2.6v8.37a3 3 0 004.5 2.6l7.25-4.19a3 3 0 000-5.19z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M16.46 13.34l-7.25 4.18a1.19 1.19 0 01-.6.17 1.21 1.21 0 01-1.21-1.21V8.11c0-.668.542-1.21 1.21-1.21.212.003.419.061.6.17l7.25 4.18a1.2 1.2 0 01.6 1.05 1.19 1.19 0 01-.6 1.04z"
|
|
13
|
+
fill="inherit"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
return <Icon {...componentProps} component={IconNode} />;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
PlayFilled.displayName = 'PlayFilled';
|
|
22
|
+
export default PlayFilled;
|
package/src/index.tsx
CHANGED
|
@@ -129,6 +129,7 @@ export { default as PeopleSettingFilled } from './PeopleSettingFilled';
|
|
|
129
129
|
export { default as PeopleTeamFilled } from './PeopleTeamFilled';
|
|
130
130
|
export { default as PeopleTeamOutlined } from './PeopleTeamOutlined';
|
|
131
131
|
export { default as PhoneOutlined } from './PhoneOutlined';
|
|
132
|
+
export { default as PlayFilled } from './PlayFilled';
|
|
132
133
|
export { default as PlusFilled } from './PlusFilled';
|
|
133
134
|
export { default as PlusOutlined } from './PlusOutlined';
|
|
134
135
|
export { default as QrCodeFilled } from './QrCodeFilled';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M17.3601 9.70032L10.1101 5.51032C9.18161 4.97425 8.0376 4.97444 7.10927 5.5108C6.18095 6.04717 5.60942 7.03818 5.61011 8.11032V16.4803C5.60942 17.5525 6.18095 18.5435 7.10927 19.0798C8.0376 19.6162 9.18161 19.6164 10.1101 19.0803L17.3601 14.8903C18.2853 14.3536 18.8548 13.3649 18.8548 12.2953C18.8548 11.2257 18.2853 10.237 17.3601 9.70032Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M16.4601 13.3404L9.21015 17.5204C9.02881 17.6294 8.8217 17.6881 8.61015 17.6904C8.28923 17.6904 7.98147 17.5629 7.75455 17.336C7.52763 17.1091 7.40015 16.8013 7.40015 16.4804V8.11039C7.40015 7.44213 7.94188 6.90039 8.61015 6.90039C8.8217 6.90271 9.02881 6.96139 9.21015 7.07039L16.4601 11.2504C16.8348 11.4667 17.064 11.8678 17.0601 12.3004C17.0625 12.7299 16.8332 13.1274 16.4601 13.3404V13.3404Z"
|
|
7
|
+
fill="inherit" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path
|
|
3
|
+
d="M17.3601 9.70032L10.1101 5.51032C9.18161 4.97425 8.0376 4.97444 7.10927 5.5108C6.18095 6.04717 5.60942 7.03818 5.61011 8.11032V16.4803C5.60942 17.5525 6.18095 18.5435 7.10927 19.0798C8.0376 19.6162 9.18161 19.6164 10.1101 19.0803L17.3601 14.8903C18.2853 14.3536 18.8548 13.3649 18.8548 12.2953C18.8548 11.2257 18.2853 10.237 17.3601 9.70032Z"
|
|
4
|
+
fill="currentColor" />
|
|
5
|
+
<path
|
|
6
|
+
d="M16.4601 13.3404L9.21015 17.5204C9.02881 17.6294 8.8217 17.6881 8.61015 17.6904C8.28923 17.6904 7.98147 17.5629 7.75455 17.336C7.52763 17.1091 7.40015 16.8013 7.40015 16.4804V8.11039C7.40015 7.44213 7.94188 6.90039 8.61015 6.90039C8.8217 6.90271 9.02881 6.96139 9.21015 7.07039L16.4601 11.2504C16.8348 11.4667 17.064 11.8678 17.0601 12.3004C17.0625 12.7299 16.8332 13.1274 16.4601 13.3404V13.3404Z"
|
|
7
|
+
fill="inherit" />
|
|
8
|
+
</svg>
|