@elementor/icons 1.59.0 → 1.60.0
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/PlayerPlayIcon/index.d.ts +4 -0
- package/PlayerPlayIcon/index.js +9 -0
- package/cjs/PlayerPlayIcon/index.d.ts +4 -0
- package/cjs/PlayerPlayIcon/index.js +34 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +6 -0
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const PlayerPlayIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement("path", { d: "M6.63379 3.34569C6.87098 3.21315 7.16215 3.21891 7.39355 3.36132L20.3936 11.3613C20.6151 11.4979 20.75 11.7397 20.75 12C20.75 12.2603 20.6151 12.5021 20.3936 12.6387L7.39355 20.6387C7.16215 20.7811 6.87098 20.7868 6.63379 20.6543C6.39686 20.5217 6.25 20.2715 6.25 20V3.99999L6.25684 3.8994C6.28816 3.66775 6.42646 3.46173 6.63379 3.34569ZM7.75 18.6572L18.5684 12L7.75 5.34179V18.6572Z" }));
|
|
6
|
+
});
|
|
7
|
+
var PlayerPlayIcon_default = PlayerPlayIcon;
|
|
8
|
+
|
|
9
|
+
export { PlayerPlayIcon_default as default };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
var SvgIcon = require('@elementor/ui/SvgIcon');
|
|
5
|
+
|
|
6
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
7
|
+
|
|
8
|
+
function _interopNamespace(e) {
|
|
9
|
+
if (e && e.__esModule) return e;
|
|
10
|
+
var n = Object.create(null);
|
|
11
|
+
if (e) {
|
|
12
|
+
Object.keys(e).forEach(function (k) {
|
|
13
|
+
if (k !== 'default') {
|
|
14
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
15
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return e[k]; }
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
n.default = e;
|
|
23
|
+
return Object.freeze(n);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
27
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefault(SvgIcon);
|
|
28
|
+
|
|
29
|
+
const PlayerPlayIcon = React__namespace.forwardRef((props, ref) => {
|
|
30
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M6.63379 3.34569C6.87098 3.21315 7.16215 3.21891 7.39355 3.36132L20.3936 11.3613C20.6151 11.4979 20.75 11.7397 20.75 12C20.75 12.2603 20.6151 12.5021 20.3936 12.6387L7.39355 20.6387C7.16215 20.7811 6.87098 20.7868 6.63379 20.6543C6.39686 20.5217 6.25 20.2715 6.25 20V3.99999L6.25684 3.8994C6.28816 3.66775 6.42646 3.46173 6.63379 3.34569ZM7.75 18.6572L18.5684 12L7.75 5.34179V18.6572Z" }));
|
|
31
|
+
});
|
|
32
|
+
var PlayerPlayIcon_default = PlayerPlayIcon;
|
|
33
|
+
|
|
34
|
+
module.exports = PlayerPlayIcon_default;
|
package/cjs/index.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ export { default as PencilSparklesIcon } from './PencilSparklesIcon';
|
|
|
172
172
|
export { default as PhotoIcon } from './PhotoIcon';
|
|
173
173
|
export { default as PinIcon } from './PinIcon';
|
|
174
174
|
export { default as PinnedOffIcon } from './PinnedOffIcon';
|
|
175
|
+
export { default as PlayerPlayIcon } from './PlayerPlayIcon';
|
|
175
176
|
export { default as PlugCheckIcon } from './PlugCheckIcon';
|
|
176
177
|
export { default as PlugIcon } from './PlugIcon';
|
|
177
178
|
export { default as PlugRefreshIcon } from './PlugRefreshIcon';
|
package/cjs/index.js
CHANGED
|
@@ -174,6 +174,7 @@ var PencilSparklesIcon = require('./PencilSparklesIcon');
|
|
|
174
174
|
var PhotoIcon = require('./PhotoIcon');
|
|
175
175
|
var PinIcon = require('./PinIcon');
|
|
176
176
|
var PinnedOffIcon = require('./PinnedOffIcon');
|
|
177
|
+
var PlayerPlayIcon = require('./PlayerPlayIcon');
|
|
177
178
|
var PlugCheckIcon = require('./PlugCheckIcon');
|
|
178
179
|
var PlugIcon = require('./PlugIcon');
|
|
179
180
|
var PlugRefreshIcon = require('./PlugRefreshIcon');
|
|
@@ -430,6 +431,7 @@ var PencilSparklesIcon__default = /*#__PURE__*/_interopDefault(PencilSparklesIco
|
|
|
430
431
|
var PhotoIcon__default = /*#__PURE__*/_interopDefault(PhotoIcon);
|
|
431
432
|
var PinIcon__default = /*#__PURE__*/_interopDefault(PinIcon);
|
|
432
433
|
var PinnedOffIcon__default = /*#__PURE__*/_interopDefault(PinnedOffIcon);
|
|
434
|
+
var PlayerPlayIcon__default = /*#__PURE__*/_interopDefault(PlayerPlayIcon);
|
|
433
435
|
var PlugCheckIcon__default = /*#__PURE__*/_interopDefault(PlugCheckIcon);
|
|
434
436
|
var PlugIcon__default = /*#__PURE__*/_interopDefault(PlugIcon);
|
|
435
437
|
var PlugRefreshIcon__default = /*#__PURE__*/_interopDefault(PlugRefreshIcon);
|
|
@@ -1208,6 +1210,10 @@ Object.defineProperty(exports, "PinnedOffIcon", {
|
|
|
1208
1210
|
enumerable: true,
|
|
1209
1211
|
get: function () { return PinnedOffIcon__default.default; }
|
|
1210
1212
|
});
|
|
1213
|
+
Object.defineProperty(exports, "PlayerPlayIcon", {
|
|
1214
|
+
enumerable: true,
|
|
1215
|
+
get: function () { return PlayerPlayIcon__default.default; }
|
|
1216
|
+
});
|
|
1211
1217
|
Object.defineProperty(exports, "PlugCheckIcon", {
|
|
1212
1218
|
enumerable: true,
|
|
1213
1219
|
get: function () { return PlugCheckIcon__default.default; }
|
package/index.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ export { default as PencilSparklesIcon } from './PencilSparklesIcon';
|
|
|
172
172
|
export { default as PhotoIcon } from './PhotoIcon';
|
|
173
173
|
export { default as PinIcon } from './PinIcon';
|
|
174
174
|
export { default as PinnedOffIcon } from './PinnedOffIcon';
|
|
175
|
+
export { default as PlayerPlayIcon } from './PlayerPlayIcon';
|
|
175
176
|
export { default as PlugCheckIcon } from './PlugCheckIcon';
|
|
176
177
|
export { default as PlugIcon } from './PlugIcon';
|
|
177
178
|
export { default as PlugRefreshIcon } from './PlugRefreshIcon';
|
package/index.js
CHANGED
|
@@ -172,6 +172,7 @@ export { default as PencilSparklesIcon } from './PencilSparklesIcon';
|
|
|
172
172
|
export { default as PhotoIcon } from './PhotoIcon';
|
|
173
173
|
export { default as PinIcon } from './PinIcon';
|
|
174
174
|
export { default as PinnedOffIcon } from './PinnedOffIcon';
|
|
175
|
+
export { default as PlayerPlayIcon } from './PlayerPlayIcon';
|
|
175
176
|
export { default as PlugCheckIcon } from './PlugCheckIcon';
|
|
176
177
|
export { default as PlugIcon } from './PlugIcon';
|
|
177
178
|
export { default as PlugRefreshIcon } from './PlugRefreshIcon';
|