@elementor/icons 1.54.0 → 1.55.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/ArrowAutofitHeightIcon/index.d.ts +4 -0
- package/ArrowAutofitHeightIcon/index.js +9 -0
- package/cjs/ArrowAutofitHeightIcon/index.d.ts +4 -0
- package/cjs/ArrowAutofitHeightIcon/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 ArrowAutofitHeightIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement("path", { d: "M18.2871 2.30691C18.1987 2.27024 18.1017 2.25 18 2.25C17.8983 2.25 17.8013 2.27024 17.7129 2.30691C17.6245 2.34351 17.5416 2.39776 17.4697 2.46967L14.4697 5.46967C14.1768 5.76256 14.1768 6.23744 14.4697 6.53033C14.7626 6.82322 15.2374 6.82322 15.5303 6.53033L17.25 4.81066V10C17.25 10.4142 17.5858 10.75 18 10.75C18.4142 10.75 18.75 10.4142 18.75 10V4.81066L20.4697 6.53033C20.7626 6.82322 21.2374 6.82322 21.5303 6.53033C21.8232 6.23744 21.8232 5.76256 21.5303 5.46967L18.5303 2.46967C18.4584 2.39776 18.3755 2.34351 18.2871 2.30691Z" }), /* @__PURE__ */ React.createElement("path", { d: "M6 4.75C5.66848 4.75 5.35054 4.8817 5.11612 5.11612C4.8817 5.35054 4.75 5.66848 4.75 6V18C4.75 18.3315 4.8817 18.6495 5.11612 18.8839C5.35054 19.1183 5.66848 19.25 6 19.25H12C12.4142 19.25 12.75 19.5858 12.75 20C12.75 20.4142 12.4142 20.75 12 20.75H6C5.27065 20.75 4.57118 20.4603 4.05546 19.9445C3.53973 19.4288 3.25 18.7293 3.25 18V6C3.25 5.27065 3.53973 4.57118 4.05546 4.05546C4.57118 3.53973 5.27065 3.25 6 3.25H12C12.4142 3.25 12.75 3.58579 12.75 4C12.75 4.41421 12.4142 4.75 12 4.75H6Z" }), /* @__PURE__ */ React.createElement("path", { d: "M17.25 19.1893V14C17.25 13.5858 17.5858 13.25 18 13.25C18.4142 13.25 18.75 13.5858 18.75 14V19.1893L20.4697 17.4697C20.7626 17.1768 21.2374 17.1768 21.5303 17.4697C21.8232 17.7626 21.8232 18.2374 21.5303 18.5303L18.5303 21.5303C18.4584 21.6022 18.3755 21.6565 18.2871 21.6931C18.1987 21.7298 18.1017 21.75 18 21.75C17.9871 21.75 17.9742 21.7497 17.9614 21.749C17.8738 21.7446 17.7901 21.7251 17.7129 21.6931C17.6245 21.6565 17.5416 21.6022 17.4697 21.5303L14.4697 18.5303C14.1768 18.2374 14.1768 17.7626 14.4697 17.4697C14.7626 17.1768 15.2374 17.1768 15.5303 17.4697L17.25 19.1893Z" }));
|
|
6
|
+
});
|
|
7
|
+
var ArrowAutofitHeightIcon_default = ArrowAutofitHeightIcon;
|
|
8
|
+
|
|
9
|
+
export { ArrowAutofitHeightIcon_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 ArrowAutofitHeightIcon = 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: "M18.2871 2.30691C18.1987 2.27024 18.1017 2.25 18 2.25C17.8983 2.25 17.8013 2.27024 17.7129 2.30691C17.6245 2.34351 17.5416 2.39776 17.4697 2.46967L14.4697 5.46967C14.1768 5.76256 14.1768 6.23744 14.4697 6.53033C14.7626 6.82322 15.2374 6.82322 15.5303 6.53033L17.25 4.81066V10C17.25 10.4142 17.5858 10.75 18 10.75C18.4142 10.75 18.75 10.4142 18.75 10V4.81066L20.4697 6.53033C20.7626 6.82322 21.2374 6.82322 21.5303 6.53033C21.8232 6.23744 21.8232 5.76256 21.5303 5.46967L18.5303 2.46967C18.4584 2.39776 18.3755 2.34351 18.2871 2.30691Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M6 4.75C5.66848 4.75 5.35054 4.8817 5.11612 5.11612C4.8817 5.35054 4.75 5.66848 4.75 6V18C4.75 18.3315 4.8817 18.6495 5.11612 18.8839C5.35054 19.1183 5.66848 19.25 6 19.25H12C12.4142 19.25 12.75 19.5858 12.75 20C12.75 20.4142 12.4142 20.75 12 20.75H6C5.27065 20.75 4.57118 20.4603 4.05546 19.9445C3.53973 19.4288 3.25 18.7293 3.25 18V6C3.25 5.27065 3.53973 4.57118 4.05546 4.05546C4.57118 3.53973 5.27065 3.25 6 3.25H12C12.4142 3.25 12.75 3.58579 12.75 4C12.75 4.41421 12.4142 4.75 12 4.75H6Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M17.25 19.1893V14C17.25 13.5858 17.5858 13.25 18 13.25C18.4142 13.25 18.75 13.5858 18.75 14V19.1893L20.4697 17.4697C20.7626 17.1768 21.2374 17.1768 21.5303 17.4697C21.8232 17.7626 21.8232 18.2374 21.5303 18.5303L18.5303 21.5303C18.4584 21.6022 18.3755 21.6565 18.2871 21.6931C18.1987 21.7298 18.1017 21.75 18 21.75C17.9871 21.75 17.9742 21.7497 17.9614 21.749C17.8738 21.7446 17.7901 21.7251 17.7129 21.6931C17.6245 21.6565 17.5416 21.6022 17.4697 21.5303L14.4697 18.5303C14.1768 18.2374 14.1768 17.7626 14.4697 17.4697C14.7626 17.1768 15.2374 17.1768 15.5303 17.4697L17.25 19.1893Z" }));
|
|
31
|
+
});
|
|
32
|
+
var ArrowAutofitHeightIcon_default = ArrowAutofitHeightIcon;
|
|
33
|
+
|
|
34
|
+
module.exports = ArrowAutofitHeightIcon_default;
|
package/cjs/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { default as AlignRightIcon } from './AlignRightIcon';
|
|
|
15
15
|
export { default as AppsIcon } from './AppsIcon';
|
|
16
16
|
export { default as ArchiveTemplateIcon } from './ArchiveTemplateIcon';
|
|
17
17
|
export { default as Arrow360Icon } from './Arrow360Icon';
|
|
18
|
+
export { default as ArrowAutofitHeightIcon } from './ArrowAutofitHeightIcon';
|
|
18
19
|
export { default as ArrowBackIcon } from './ArrowBackIcon';
|
|
19
20
|
export { default as ArrowBarBothIcon } from './ArrowBarBothIcon';
|
|
20
21
|
export { default as ArrowDownLeftIcon } from './ArrowDownLeftIcon';
|
package/cjs/index.js
CHANGED
|
@@ -17,6 +17,7 @@ var AlignRightIcon = require('./AlignRightIcon');
|
|
|
17
17
|
var AppsIcon = require('./AppsIcon');
|
|
18
18
|
var ArchiveTemplateIcon = require('./ArchiveTemplateIcon');
|
|
19
19
|
var Arrow360Icon = require('./Arrow360Icon');
|
|
20
|
+
var ArrowAutofitHeightIcon = require('./ArrowAutofitHeightIcon');
|
|
20
21
|
var ArrowBackIcon = require('./ArrowBackIcon');
|
|
21
22
|
var ArrowBarBothIcon = require('./ArrowBarBothIcon');
|
|
22
23
|
var ArrowDownLeftIcon = require('./ArrowDownLeftIcon');
|
|
@@ -266,6 +267,7 @@ var AlignRightIcon__default = /*#__PURE__*/_interopDefault(AlignRightIcon);
|
|
|
266
267
|
var AppsIcon__default = /*#__PURE__*/_interopDefault(AppsIcon);
|
|
267
268
|
var ArchiveTemplateIcon__default = /*#__PURE__*/_interopDefault(ArchiveTemplateIcon);
|
|
268
269
|
var Arrow360Icon__default = /*#__PURE__*/_interopDefault(Arrow360Icon);
|
|
270
|
+
var ArrowAutofitHeightIcon__default = /*#__PURE__*/_interopDefault(ArrowAutofitHeightIcon);
|
|
269
271
|
var ArrowBackIcon__default = /*#__PURE__*/_interopDefault(ArrowBackIcon);
|
|
270
272
|
var ArrowBarBothIcon__default = /*#__PURE__*/_interopDefault(ArrowBarBothIcon);
|
|
271
273
|
var ArrowDownLeftIcon__default = /*#__PURE__*/_interopDefault(ArrowDownLeftIcon);
|
|
@@ -566,6 +568,10 @@ Object.defineProperty(exports, "Arrow360Icon", {
|
|
|
566
568
|
enumerable: true,
|
|
567
569
|
get: function () { return Arrow360Icon__default.default; }
|
|
568
570
|
});
|
|
571
|
+
Object.defineProperty(exports, "ArrowAutofitHeightIcon", {
|
|
572
|
+
enumerable: true,
|
|
573
|
+
get: function () { return ArrowAutofitHeightIcon__default.default; }
|
|
574
|
+
});
|
|
569
575
|
Object.defineProperty(exports, "ArrowBackIcon", {
|
|
570
576
|
enumerable: true,
|
|
571
577
|
get: function () { return ArrowBackIcon__default.default; }
|
package/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export { default as AlignRightIcon } from './AlignRightIcon';
|
|
|
15
15
|
export { default as AppsIcon } from './AppsIcon';
|
|
16
16
|
export { default as ArchiveTemplateIcon } from './ArchiveTemplateIcon';
|
|
17
17
|
export { default as Arrow360Icon } from './Arrow360Icon';
|
|
18
|
+
export { default as ArrowAutofitHeightIcon } from './ArrowAutofitHeightIcon';
|
|
18
19
|
export { default as ArrowBackIcon } from './ArrowBackIcon';
|
|
19
20
|
export { default as ArrowBarBothIcon } from './ArrowBarBothIcon';
|
|
20
21
|
export { default as ArrowDownLeftIcon } from './ArrowDownLeftIcon';
|
package/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as AlignRightIcon } from './AlignRightIcon';
|
|
|
15
15
|
export { default as AppsIcon } from './AppsIcon';
|
|
16
16
|
export { default as ArchiveTemplateIcon } from './ArchiveTemplateIcon';
|
|
17
17
|
export { default as Arrow360Icon } from './Arrow360Icon';
|
|
18
|
+
export { default as ArrowAutofitHeightIcon } from './ArrowAutofitHeightIcon';
|
|
18
19
|
export { default as ArrowBackIcon } from './ArrowBackIcon';
|
|
19
20
|
export { default as ArrowBarBothIcon } from './ArrowBarBothIcon';
|
|
20
21
|
export { default as ArrowDownLeftIcon } from './ArrowDownLeftIcon';
|