@elementor/icons 1.28.0 → 1.30.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/CircleMinusIcon/index.d.ts +4 -0
- package/CircleMinusIcon/index.esm.js +16 -0
- package/CircleMinusIcon/index.esm.js.map +1 -0
- package/CircleMinusIcon/index.js +43 -0
- package/CircleMinusIcon/index.js.map +1 -0
- package/CircleMinusIcon/package.json +7 -0
- package/GiftIcon/index.d.ts +4 -0
- package/GiftIcon/index.esm.js +16 -0
- package/GiftIcon/index.esm.js.map +1 -0
- package/GiftIcon/index.js +43 -0
- package/GiftIcon/index.js.map +1 -0
- package/GiftIcon/package.json +7 -0
- package/index.d.ts +2 -0
- package/index.esm.js +23 -1
- package/index.esm.js.map +1 -1
- package/index.js +24 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const CircleMinusIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
fillRule: "evenodd",
|
|
9
|
+
clipRule: "evenodd",
|
|
10
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { CircleMinusIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/CircleMinusIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst CircleMinusIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default CircleMinusIcon;\n"],"names":[],"mappings":";;;AAGA,MAAM,eAAkB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC1F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var SvgIcon = require('@elementor/ui/SvgIcon');
|
|
7
|
+
|
|
8
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespaceCompat(e) {
|
|
11
|
+
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
12
|
+
var n = Object.create(null);
|
|
13
|
+
if (e) {
|
|
14
|
+
Object.keys(e).forEach(function (k) {
|
|
15
|
+
if (k !== 'default') {
|
|
16
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return e[k]; }
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
n.default = e;
|
|
25
|
+
return Object.freeze(n);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceCompat(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const CircleMinusIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
33
|
+
"path",
|
|
34
|
+
{
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = CircleMinusIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/CircleMinusIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst CircleMinusIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default CircleMinusIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAM,eAAkB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC1F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const GiftIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
fillRule: "evenodd",
|
|
9
|
+
clipRule: "evenodd",
|
|
10
|
+
d: "M9.65527 4.84484C8.95951 4.07178 8.20923 3.73771 7.51306 3.74984L7.5 3.75007C7.03587 3.75007 6.59075 3.93433 6.26256 4.26252C5.93437 4.59071 5.75 5.03583 5.75 5.49995C5.75 5.96408 5.93437 6.4092 6.26256 6.73739C6.59075 7.06558 7.03587 7.24995 7.5 7.24995C7.50295 7.24995 7.5059 7.24997 7.50884 7.25001H11.0002C10.6592 6.26394 10.1939 5.44328 9.65527 4.84484ZM11.25 8.75001V11.25H4C3.86193 11.25 3.75 11.1381 3.75 11V9.00001C3.75 8.86193 3.86193 8.75001 4 8.75001H11.25ZM4.25 12.75H4C3.0335 12.75 2.25 11.9665 2.25 11V9.00001C2.25 8.03351 3.0335 7.25001 4 7.25001H4.76141C4.43004 6.73144 4.25 6.12498 4.25 5.49995C4.25 4.638 4.59241 3.81135 5.2019 3.20186C5.80984 2.59392 6.63384 2.2517 7.49342 2.24996C8.72414 2.23069 9.86213 2.83242 10.7702 3.84139C11.2484 4.37275 11.6608 5.01284 12 5.73103C12.3392 5.01284 12.7516 4.37275 13.2298 3.84139C14.1379 2.83242 15.2759 2.23069 16.5066 2.24996C17.3662 2.2517 18.1902 2.59392 18.7981 3.20186C19.4076 3.81135 19.75 4.638 19.75 5.49995C19.75 6.12498 19.57 6.73144 19.2386 7.25001H20C20.9665 7.25001 21.75 8.03351 21.75 9.00001V11C21.75 11.9665 20.9665 12.75 20 12.75H19.75V19C19.75 19.7294 19.4603 20.4288 18.9445 20.9445C18.4288 21.4603 17.7293 21.75 17 21.75H7C6.27065 21.75 5.57118 21.4603 5.05546 20.9445C4.53973 20.4288 4.25 19.7294 4.25 19V12.75ZM11.25 20.25H7C6.66848 20.25 6.35054 20.1183 6.11612 19.8839C5.8817 19.6495 5.75 19.3315 5.75 19V12.75H11.25V20.25ZM12.75 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V12.75H12.75V20.25ZM12.75 11.25V8.75001H20C20.1381 8.75001 20.25 8.86193 20.25 9.00001V11C20.25 11.1381 20.1381 11.25 20 11.25H12.75ZM16.4912 7.25001C16.4941 7.24997 16.497 7.24995 16.5 7.24995C16.9641 7.24995 17.4092 7.06558 17.7374 6.73739C18.0656 6.4092 18.25 5.96408 18.25 5.49995C18.25 5.03583 18.0656 4.59071 17.7374 4.26252C17.4092 3.93433 16.9641 3.74995 16.5 3.74995H16.4869C15.7908 3.73783 15.0405 4.07178 14.3447 4.84484C13.8061 5.44328 13.3408 6.26394 12.9998 7.25001H16.4912Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { GiftIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/GiftIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst GiftIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.65527 4.84484C8.95951 4.07178 8.20923 3.73771 7.51306 3.74984L7.5 3.75007C7.03587 3.75007 6.59075 3.93433 6.26256 4.26252C5.93437 4.59071 5.75 5.03583 5.75 5.49995C5.75 5.96408 5.93437 6.4092 6.26256 6.73739C6.59075 7.06558 7.03587 7.24995 7.5 7.24995C7.50295 7.24995 7.5059 7.24997 7.50884 7.25001H11.0002C10.6592 6.26394 10.1939 5.44328 9.65527 4.84484ZM11.25 8.75001V11.25H4C3.86193 11.25 3.75 11.1381 3.75 11V9.00001C3.75 8.86193 3.86193 8.75001 4 8.75001H11.25ZM4.25 12.75H4C3.0335 12.75 2.25 11.9665 2.25 11V9.00001C2.25 8.03351 3.0335 7.25001 4 7.25001H4.76141C4.43004 6.73144 4.25 6.12498 4.25 5.49995C4.25 4.638 4.59241 3.81135 5.2019 3.20186C5.80984 2.59392 6.63384 2.2517 7.49342 2.24996C8.72414 2.23069 9.86213 2.83242 10.7702 3.84139C11.2484 4.37275 11.6608 5.01284 12 5.73103C12.3392 5.01284 12.7516 4.37275 13.2298 3.84139C14.1379 2.83242 15.2759 2.23069 16.5066 2.24996C17.3662 2.2517 18.1902 2.59392 18.7981 3.20186C19.4076 3.81135 19.75 4.638 19.75 5.49995C19.75 6.12498 19.57 6.73144 19.2386 7.25001H20C20.9665 7.25001 21.75 8.03351 21.75 9.00001V11C21.75 11.9665 20.9665 12.75 20 12.75H19.75V19C19.75 19.7294 19.4603 20.4288 18.9445 20.9445C18.4288 21.4603 17.7293 21.75 17 21.75H7C6.27065 21.75 5.57118 21.4603 5.05546 20.9445C4.53973 20.4288 4.25 19.7294 4.25 19V12.75ZM11.25 20.25H7C6.66848 20.25 6.35054 20.1183 6.11612 19.8839C5.8817 19.6495 5.75 19.3315 5.75 19V12.75H11.25V20.25ZM12.75 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V12.75H12.75V20.25ZM12.75 11.25V8.75001H20C20.1381 8.75001 20.25 8.86193 20.25 9.00001V11C20.25 11.1381 20.1381 11.25 20 11.25H12.75ZM16.4912 7.25001C16.4941 7.24997 16.497 7.24995 16.5 7.24995C16.9641 7.24995 17.4092 7.06558 17.7374 6.73739C18.0656 6.4092 18.25 5.96408 18.25 5.49995C18.25 5.03583 18.0656 4.59071 17.7374 4.26252C17.4092 3.93433 16.9641 3.74995 16.5 3.74995H16.4869C15.7908 3.73783 15.0405 4.07178 14.3447 4.84484C13.8061 5.44328 13.3408 6.26394 12.9998 7.25001H16.4912Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default GiftIcon;\n"],"names":[],"mappings":";;;AAGA,MAAM,QAAW,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACnF,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var SvgIcon = require('@elementor/ui/SvgIcon');
|
|
7
|
+
|
|
8
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespaceCompat(e) {
|
|
11
|
+
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
12
|
+
var n = Object.create(null);
|
|
13
|
+
if (e) {
|
|
14
|
+
Object.keys(e).forEach(function (k) {
|
|
15
|
+
if (k !== 'default') {
|
|
16
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return e[k]; }
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
n.default = e;
|
|
25
|
+
return Object.freeze(n);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceCompat(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const GiftIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
33
|
+
"path",
|
|
34
|
+
{
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M9.65527 4.84484C8.95951 4.07178 8.20923 3.73771 7.51306 3.74984L7.5 3.75007C7.03587 3.75007 6.59075 3.93433 6.26256 4.26252C5.93437 4.59071 5.75 5.03583 5.75 5.49995C5.75 5.96408 5.93437 6.4092 6.26256 6.73739C6.59075 7.06558 7.03587 7.24995 7.5 7.24995C7.50295 7.24995 7.5059 7.24997 7.50884 7.25001H11.0002C10.6592 6.26394 10.1939 5.44328 9.65527 4.84484ZM11.25 8.75001V11.25H4C3.86193 11.25 3.75 11.1381 3.75 11V9.00001C3.75 8.86193 3.86193 8.75001 4 8.75001H11.25ZM4.25 12.75H4C3.0335 12.75 2.25 11.9665 2.25 11V9.00001C2.25 8.03351 3.0335 7.25001 4 7.25001H4.76141C4.43004 6.73144 4.25 6.12498 4.25 5.49995C4.25 4.638 4.59241 3.81135 5.2019 3.20186C5.80984 2.59392 6.63384 2.2517 7.49342 2.24996C8.72414 2.23069 9.86213 2.83242 10.7702 3.84139C11.2484 4.37275 11.6608 5.01284 12 5.73103C12.3392 5.01284 12.7516 4.37275 13.2298 3.84139C14.1379 2.83242 15.2759 2.23069 16.5066 2.24996C17.3662 2.2517 18.1902 2.59392 18.7981 3.20186C19.4076 3.81135 19.75 4.638 19.75 5.49995C19.75 6.12498 19.57 6.73144 19.2386 7.25001H20C20.9665 7.25001 21.75 8.03351 21.75 9.00001V11C21.75 11.9665 20.9665 12.75 20 12.75H19.75V19C19.75 19.7294 19.4603 20.4288 18.9445 20.9445C18.4288 21.4603 17.7293 21.75 17 21.75H7C6.27065 21.75 5.57118 21.4603 5.05546 20.9445C4.53973 20.4288 4.25 19.7294 4.25 19V12.75ZM11.25 20.25H7C6.66848 20.25 6.35054 20.1183 6.11612 19.8839C5.8817 19.6495 5.75 19.3315 5.75 19V12.75H11.25V20.25ZM12.75 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V12.75H12.75V20.25ZM12.75 11.25V8.75001H20C20.1381 8.75001 20.25 8.86193 20.25 9.00001V11C20.25 11.1381 20.1381 11.25 20 11.25H12.75ZM16.4912 7.25001C16.4941 7.24997 16.497 7.24995 16.5 7.24995C16.9641 7.24995 17.4092 7.06558 17.7374 6.73739C18.0656 6.4092 18.25 5.96408 18.25 5.49995C18.25 5.03583 18.0656 4.59071 17.7374 4.26252C17.4092 3.93433 16.9641 3.74995 16.5 3.74995H16.4869C15.7908 3.73783 15.0405 4.07178 14.3447 4.84484C13.8061 5.44328 13.3408 6.26394 12.9998 7.25001H16.4912Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = GiftIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/GiftIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst GiftIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.65527 4.84484C8.95951 4.07178 8.20923 3.73771 7.51306 3.74984L7.5 3.75007C7.03587 3.75007 6.59075 3.93433 6.26256 4.26252C5.93437 4.59071 5.75 5.03583 5.75 5.49995C5.75 5.96408 5.93437 6.4092 6.26256 6.73739C6.59075 7.06558 7.03587 7.24995 7.5 7.24995C7.50295 7.24995 7.5059 7.24997 7.50884 7.25001H11.0002C10.6592 6.26394 10.1939 5.44328 9.65527 4.84484ZM11.25 8.75001V11.25H4C3.86193 11.25 3.75 11.1381 3.75 11V9.00001C3.75 8.86193 3.86193 8.75001 4 8.75001H11.25ZM4.25 12.75H4C3.0335 12.75 2.25 11.9665 2.25 11V9.00001C2.25 8.03351 3.0335 7.25001 4 7.25001H4.76141C4.43004 6.73144 4.25 6.12498 4.25 5.49995C4.25 4.638 4.59241 3.81135 5.2019 3.20186C5.80984 2.59392 6.63384 2.2517 7.49342 2.24996C8.72414 2.23069 9.86213 2.83242 10.7702 3.84139C11.2484 4.37275 11.6608 5.01284 12 5.73103C12.3392 5.01284 12.7516 4.37275 13.2298 3.84139C14.1379 2.83242 15.2759 2.23069 16.5066 2.24996C17.3662 2.2517 18.1902 2.59392 18.7981 3.20186C19.4076 3.81135 19.75 4.638 19.75 5.49995C19.75 6.12498 19.57 6.73144 19.2386 7.25001H20C20.9665 7.25001 21.75 8.03351 21.75 9.00001V11C21.75 11.9665 20.9665 12.75 20 12.75H19.75V19C19.75 19.7294 19.4603 20.4288 18.9445 20.9445C18.4288 21.4603 17.7293 21.75 17 21.75H7C6.27065 21.75 5.57118 21.4603 5.05546 20.9445C4.53973 20.4288 4.25 19.7294 4.25 19V12.75ZM11.25 20.25H7C6.66848 20.25 6.35054 20.1183 6.11612 19.8839C5.8817 19.6495 5.75 19.3315 5.75 19V12.75H11.25V20.25ZM12.75 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V12.75H12.75V20.25ZM12.75 11.25V8.75001H20C20.1381 8.75001 20.25 8.86193 20.25 9.00001V11C20.25 11.1381 20.1381 11.25 20 11.25H12.75ZM16.4912 7.25001C16.4941 7.24997 16.497 7.24995 16.5 7.24995C16.9641 7.24995 17.4092 7.06558 17.7374 6.73739C18.0656 6.4092 18.25 5.96408 18.25 5.49995C18.25 5.03583 18.0656 4.59071 17.7374 4.26252C17.4092 3.93433 16.9641 3.74995 16.5 3.74995H16.4869C15.7908 3.73783 15.0405 4.07178 14.3447 4.84484C13.8061 5.44328 13.3408 6.26394 12.9998 7.25001H16.4912Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default GiftIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAM,QAAW,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACnF,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
package/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
|
44
44
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
45
45
|
export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
46
46
|
export { default as CircleCheckFilledIcon } from './CircleCheckFilledIcon';
|
|
47
|
+
export { default as CircleMinusIcon } from './CircleMinusIcon';
|
|
47
48
|
export { default as CirclePlusIcon } from './CirclePlusIcon';
|
|
48
49
|
export { default as CircleXIcon } from './CircleXIcon';
|
|
49
50
|
export { default as ClearIcon } from './ClearIcon';
|
|
@@ -81,6 +82,7 @@ export { default as FileReportIcon } from './FileReportIcon';
|
|
|
81
82
|
export { default as FilesIcon } from './FilesIcon';
|
|
82
83
|
export { default as FolderIcon } from './FolderIcon';
|
|
83
84
|
export { default as FooterTemplateIcon } from './FooterTemplateIcon';
|
|
85
|
+
export { default as GiftIcon } from './GiftIcon';
|
|
84
86
|
export { default as GridDotsIcon } from './GridDotsIcon';
|
|
85
87
|
export { default as GripVerticalIcon } from './GripVerticalIcon';
|
|
86
88
|
export { default as HeaderTemplateIcon } from './HeaderTemplateIcon';
|
package/index.esm.js
CHANGED
|
@@ -507,6 +507,17 @@ const CircleCheckFilledIcon = React.forwardRef((props, ref) => {
|
|
|
507
507
|
));
|
|
508
508
|
});
|
|
509
509
|
|
|
510
|
+
const CircleMinusIcon = React.forwardRef((props, ref) => {
|
|
511
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
512
|
+
"path",
|
|
513
|
+
{
|
|
514
|
+
fillRule: "evenodd",
|
|
515
|
+
clipRule: "evenodd",
|
|
516
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
517
|
+
}
|
|
518
|
+
));
|
|
519
|
+
});
|
|
520
|
+
|
|
510
521
|
const CirclePlusIcon = React.forwardRef((props, ref) => {
|
|
511
522
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
512
523
|
"path",
|
|
@@ -914,6 +925,17 @@ const FooterTemplateIcon = React.forwardRef((props, ref) => {
|
|
|
914
925
|
));
|
|
915
926
|
});
|
|
916
927
|
|
|
928
|
+
const GiftIcon = React.forwardRef((props, ref) => {
|
|
929
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
930
|
+
"path",
|
|
931
|
+
{
|
|
932
|
+
fillRule: "evenodd",
|
|
933
|
+
clipRule: "evenodd",
|
|
934
|
+
d: "M9.65527 4.84484C8.95951 4.07178 8.20923 3.73771 7.51306 3.74984L7.5 3.75007C7.03587 3.75007 6.59075 3.93433 6.26256 4.26252C5.93437 4.59071 5.75 5.03583 5.75 5.49995C5.75 5.96408 5.93437 6.4092 6.26256 6.73739C6.59075 7.06558 7.03587 7.24995 7.5 7.24995C7.50295 7.24995 7.5059 7.24997 7.50884 7.25001H11.0002C10.6592 6.26394 10.1939 5.44328 9.65527 4.84484ZM11.25 8.75001V11.25H4C3.86193 11.25 3.75 11.1381 3.75 11V9.00001C3.75 8.86193 3.86193 8.75001 4 8.75001H11.25ZM4.25 12.75H4C3.0335 12.75 2.25 11.9665 2.25 11V9.00001C2.25 8.03351 3.0335 7.25001 4 7.25001H4.76141C4.43004 6.73144 4.25 6.12498 4.25 5.49995C4.25 4.638 4.59241 3.81135 5.2019 3.20186C5.80984 2.59392 6.63384 2.2517 7.49342 2.24996C8.72414 2.23069 9.86213 2.83242 10.7702 3.84139C11.2484 4.37275 11.6608 5.01284 12 5.73103C12.3392 5.01284 12.7516 4.37275 13.2298 3.84139C14.1379 2.83242 15.2759 2.23069 16.5066 2.24996C17.3662 2.2517 18.1902 2.59392 18.7981 3.20186C19.4076 3.81135 19.75 4.638 19.75 5.49995C19.75 6.12498 19.57 6.73144 19.2386 7.25001H20C20.9665 7.25001 21.75 8.03351 21.75 9.00001V11C21.75 11.9665 20.9665 12.75 20 12.75H19.75V19C19.75 19.7294 19.4603 20.4288 18.9445 20.9445C18.4288 21.4603 17.7293 21.75 17 21.75H7C6.27065 21.75 5.57118 21.4603 5.05546 20.9445C4.53973 20.4288 4.25 19.7294 4.25 19V12.75ZM11.25 20.25H7C6.66848 20.25 6.35054 20.1183 6.11612 19.8839C5.8817 19.6495 5.75 19.3315 5.75 19V12.75H11.25V20.25ZM12.75 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V12.75H12.75V20.25ZM12.75 11.25V8.75001H20C20.1381 8.75001 20.25 8.86193 20.25 9.00001V11C20.25 11.1381 20.1381 11.25 20 11.25H12.75ZM16.4912 7.25001C16.4941 7.24997 16.497 7.24995 16.5 7.24995C16.9641 7.24995 17.4092 7.06558 17.7374 6.73739C18.0656 6.4092 18.25 5.96408 18.25 5.49995C18.25 5.03583 18.0656 4.59071 17.7374 4.26252C17.4092 3.93433 16.9641 3.74995 16.5 3.74995H16.4869C15.7908 3.73783 15.0405 4.07178 14.3447 4.84484C13.8061 5.44328 13.3408 6.26394 12.9998 7.25001H16.4912Z"
|
|
935
|
+
}
|
|
936
|
+
));
|
|
937
|
+
});
|
|
938
|
+
|
|
917
939
|
const GridDotsIcon = React.forwardRef((props, ref) => {
|
|
918
940
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
919
941
|
"path",
|
|
@@ -2193,5 +2215,5 @@ const XIcon = React.forwardRef((props, ref) => {
|
|
|
2193
2215
|
));
|
|
2194
2216
|
});
|
|
2195
2217
|
|
|
2196
|
-
export { AIIcon, AcademyIcon, AdjustmentsHorizontalIcon, AdjustmentsIcon, AffiliatesIcon, AlertCircleIcon, AlertOctagonFilledIcon, AlertTriangleFilledIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifiedIcon, AlignLeftIcon, AlignRightIcon, AppsIcon, ArchiveTemplateIcon, ArrowBackIcon, ArrowBarBothIcon, ArrowDownSmallIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpRightIcon, ArrowUpSmallIcon, ArrowsLeftRightIcon, ArrowsMaximizeIcon, ArrowsMoveHorizontalIcon, ArrowsMoveVerticalIcon, ArrowsRightLeftIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CirclePlusIcon, CircleXIcon, ClearIcon, ClockIcon, CloudBackupIcon, CloudIcon, CodeIcon, ColorFilterIcon, ColorSwatchIcon, ContainerTemplateIcon, CopyIcon, CopyPageIcon, CornerUpRightIcon, CreditCardIcon, CrownIcon, DatabaseIcon, DesktopIcon, DetachIcon, DiamondIcon, DiscountCheckFilledIcon, DomainIcon, DotsHorizontalIcon, DotsVerticalIcon, DownloadIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandBottomIcon, ExpandDiagonalIcon, ExpandIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileReportIcon, FilesIcon, FolderIcon, FooterTemplateIcon, GridDotsIcon, GripVerticalIcon, HeaderTemplateIcon, HeadsetIcon, HeartHandShakeIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleFilledIcon, InfoCircleIcon, ItalicIcon, JustifyBottomIcon, JustifyCenterIcon, JustifyDistributeVerticalIcon, JustifySpaceAroundVerticalIcon, JustifySpaceBetweenVerticalIcon, JustifyTopIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LayoutAlignCenterIcon, LayoutAlignLeftIcon, LayoutAlignRightIcon, LayoutDistributeVerticalIcon, LetterAIcon, LetterCaseIcon, LetterCaseLowerIcon, LetterCaseUpperIcon, LetterXIcon, LetterYIcon, LibraryIcon, LikeIcon, LinkIcon, ListIcon, Loader2Icon, LockFilledIcon, LockIcon, LogoutIcon, LoopItemTemplateIcon, MailIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RouterIcon, SFTPIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SelectorIcon, SendIcon, ServerCogIcon, SettingsIcon, ShieldCheckIcon, ShieldIcon, ShrinkIcon, SideAllIcon, SideBottomIcon, SideLeftIcon, SideRightIcon, SideTopIcon, SiteLockIcon, SiteLockOpenIcon, SocialIcon, SpeakerphoneIcon, StarIcon, StarOffIcon, StrikethroughIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, TextDirectionLtrIcon, TextDirectionRtlIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2218
|
+
export { AIIcon, AcademyIcon, AdjustmentsHorizontalIcon, AdjustmentsIcon, AffiliatesIcon, AlertCircleIcon, AlertOctagonFilledIcon, AlertTriangleFilledIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifiedIcon, AlignLeftIcon, AlignRightIcon, AppsIcon, ArchiveTemplateIcon, ArrowBackIcon, ArrowBarBothIcon, ArrowDownSmallIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpRightIcon, ArrowUpSmallIcon, ArrowsLeftRightIcon, ArrowsMaximizeIcon, ArrowsMoveHorizontalIcon, ArrowsMoveVerticalIcon, ArrowsRightLeftIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CircleMinusIcon, CirclePlusIcon, CircleXIcon, ClearIcon, ClockIcon, CloudBackupIcon, CloudIcon, CodeIcon, ColorFilterIcon, ColorSwatchIcon, ContainerTemplateIcon, CopyIcon, CopyPageIcon, CornerUpRightIcon, CreditCardIcon, CrownIcon, DatabaseIcon, DesktopIcon, DetachIcon, DiamondIcon, DiscountCheckFilledIcon, DomainIcon, DotsHorizontalIcon, DotsVerticalIcon, DownloadIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandBottomIcon, ExpandDiagonalIcon, ExpandIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileReportIcon, FilesIcon, FolderIcon, FooterTemplateIcon, GiftIcon, GridDotsIcon, GripVerticalIcon, HeaderTemplateIcon, HeadsetIcon, HeartHandShakeIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleFilledIcon, InfoCircleIcon, ItalicIcon, JustifyBottomIcon, JustifyCenterIcon, JustifyDistributeVerticalIcon, JustifySpaceAroundVerticalIcon, JustifySpaceBetweenVerticalIcon, JustifyTopIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LayoutAlignCenterIcon, LayoutAlignLeftIcon, LayoutAlignRightIcon, LayoutDistributeVerticalIcon, LetterAIcon, LetterCaseIcon, LetterCaseLowerIcon, LetterCaseUpperIcon, LetterXIcon, LetterYIcon, LibraryIcon, LikeIcon, LinkIcon, ListIcon, Loader2Icon, LockFilledIcon, LockIcon, LogoutIcon, LoopItemTemplateIcon, MailIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RouterIcon, SFTPIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SelectorIcon, SendIcon, ServerCogIcon, SettingsIcon, ShieldCheckIcon, ShieldIcon, ShrinkIcon, SideAllIcon, SideBottomIcon, SideLeftIcon, SideRightIcon, SideTopIcon, SiteLockIcon, SiteLockOpenIcon, SocialIcon, SpeakerphoneIcon, StarIcon, StarOffIcon, StrikethroughIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, TextDirectionLtrIcon, TextDirectionRtlIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2197
2219
|
//# sourceMappingURL=index.esm.js.map
|