@elementor/icons 1.36.0 → 1.37.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/ChecklistIcon/index.d.ts +4 -0
- package/ChecklistIcon/index.esm.js +16 -0
- package/ChecklistIcon/index.esm.js.map +1 -0
- package/ChecklistIcon/index.js +43 -0
- package/ChecklistIcon/index.js.map +1 -0
- package/ChecklistIcon/package.json +7 -0
- package/ThumbUpIcon/index.d.ts +4 -0
- package/ThumbUpIcon/index.esm.js +16 -0
- package/ThumbUpIcon/index.esm.js.map +1 -0
- package/ThumbUpIcon/index.js +43 -0
- package/ThumbUpIcon/index.js.map +1 -0
- package/ThumbUpIcon/package.json +7 -0
- package/ThumbsDownIcon/index.d.ts +4 -0
- package/ThumbsDownIcon/index.esm.js +16 -0
- package/ThumbsDownIcon/index.esm.js.map +1 -0
- package/ThumbsDownIcon/index.js +43 -0
- package/ThumbsDownIcon/index.js.map +1 -0
- package/ThumbsDownIcon/package.json +7 -0
- package/index.d.ts +3 -0
- package/index.esm.js +34 -1
- package/index.esm.js.map +1 -1
- package/index.js +36 -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 ChecklistIcon = 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: "M7 4.75C6.66848 4.75 6.35054 4.8817 6.11612 5.11612C5.8817 5.35054 5.75 5.66848 5.75 6V18C5.75 18.3315 5.8817 18.6495 6.11612 18.8839C6.35054 19.1183 6.66848 19.25 7 19.25H9.615C10.0292 19.25 10.365 19.5858 10.365 20C10.365 20.4142 10.0292 20.75 9.615 20.75H7C6.27065 20.75 5.57118 20.4603 5.05546 19.9445C4.53973 19.4288 4.25 18.7293 4.25 18V6C4.25 5.27065 4.53973 4.57118 5.05546 4.05546C5.57118 3.53973 6.27065 3.25 7 3.25H15C15.7293 3.25 16.4288 3.53973 16.9445 4.05546C17.4603 4.57118 17.75 5.27065 17.75 6V14C17.75 14.4142 17.4142 14.75 17 14.75C16.5858 14.75 16.25 14.4142 16.25 14V6C16.25 5.66848 16.1183 5.35054 15.8839 5.11612C15.6495 4.8817 15.3315 4.75 15 4.75H7ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25H13C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H9C8.58579 8.75 8.25 8.41421 8.25 8ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H11C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12ZM20.5303 16.4697C20.8232 16.7626 20.8232 17.2374 20.5303 17.5303L16.5303 21.5303C16.2374 21.8232 15.7626 21.8232 15.4697 21.5303L13.4697 19.5303C13.1768 19.2374 13.1768 18.7626 13.4697 18.4697C13.7626 18.1768 14.2374 18.1768 14.5303 18.4697L16 19.9393L19.4697 16.4697C19.7626 16.1768 20.2374 16.1768 20.5303 16.4697Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { ChecklistIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/ChecklistIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChecklistIcon = 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=\"M7 4.75C6.66848 4.75 6.35054 4.8817 6.11612 5.11612C5.8817 5.35054 5.75 5.66848 5.75 6V18C5.75 18.3315 5.8817 18.6495 6.11612 18.8839C6.35054 19.1183 6.66848 19.25 7 19.25H9.615C10.0292 19.25 10.365 19.5858 10.365 20C10.365 20.4142 10.0292 20.75 9.615 20.75H7C6.27065 20.75 5.57118 20.4603 5.05546 19.9445C4.53973 19.4288 4.25 18.7293 4.25 18V6C4.25 5.27065 4.53973 4.57118 5.05546 4.05546C5.57118 3.53973 6.27065 3.25 7 3.25H15C15.7293 3.25 16.4288 3.53973 16.9445 4.05546C17.4603 4.57118 17.75 5.27065 17.75 6V14C17.75 14.4142 17.4142 14.75 17 14.75C16.5858 14.75 16.25 14.4142 16.25 14V6C16.25 5.66848 16.1183 5.35054 15.8839 5.11612C15.6495 4.8817 15.3315 4.75 15 4.75H7ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25H13C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H9C8.58579 8.75 8.25 8.41421 8.25 8ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H11C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12ZM20.5303 16.4697C20.8232 16.7626 20.8232 17.2374 20.5303 17.5303L16.5303 21.5303C16.2374 21.8232 15.7626 21.8232 15.4697 21.5303L13.4697 19.5303C13.1768 19.2374 13.1768 18.7626 13.4697 18.4697C13.7626 18.1768 14.2374 18.1768 14.5303 18.4697L16 19.9393L19.4697 16.4697C19.7626 16.1768 20.2374 16.1768 20.5303 16.4697Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChecklistIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,aAAgB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACxF,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 ChecklistIcon = 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: "M7 4.75C6.66848 4.75 6.35054 4.8817 6.11612 5.11612C5.8817 5.35054 5.75 5.66848 5.75 6V18C5.75 18.3315 5.8817 18.6495 6.11612 18.8839C6.35054 19.1183 6.66848 19.25 7 19.25H9.615C10.0292 19.25 10.365 19.5858 10.365 20C10.365 20.4142 10.0292 20.75 9.615 20.75H7C6.27065 20.75 5.57118 20.4603 5.05546 19.9445C4.53973 19.4288 4.25 18.7293 4.25 18V6C4.25 5.27065 4.53973 4.57118 5.05546 4.05546C5.57118 3.53973 6.27065 3.25 7 3.25H15C15.7293 3.25 16.4288 3.53973 16.9445 4.05546C17.4603 4.57118 17.75 5.27065 17.75 6V14C17.75 14.4142 17.4142 14.75 17 14.75C16.5858 14.75 16.25 14.4142 16.25 14V6C16.25 5.66848 16.1183 5.35054 15.8839 5.11612C15.6495 4.8817 15.3315 4.75 15 4.75H7ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25H13C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H9C8.58579 8.75 8.25 8.41421 8.25 8ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H11C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12ZM20.5303 16.4697C20.8232 16.7626 20.8232 17.2374 20.5303 17.5303L16.5303 21.5303C16.2374 21.8232 15.7626 21.8232 15.4697 21.5303L13.4697 19.5303C13.1768 19.2374 13.1768 18.7626 13.4697 18.4697C13.7626 18.1768 14.2374 18.1768 14.5303 18.4697L16 19.9393L19.4697 16.4697C19.7626 16.1768 20.2374 16.1768 20.5303 16.4697Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = ChecklistIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/ChecklistIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChecklistIcon = 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=\"M7 4.75C6.66848 4.75 6.35054 4.8817 6.11612 5.11612C5.8817 5.35054 5.75 5.66848 5.75 6V18C5.75 18.3315 5.8817 18.6495 6.11612 18.8839C6.35054 19.1183 6.66848 19.25 7 19.25H9.615C10.0292 19.25 10.365 19.5858 10.365 20C10.365 20.4142 10.0292 20.75 9.615 20.75H7C6.27065 20.75 5.57118 20.4603 5.05546 19.9445C4.53973 19.4288 4.25 18.7293 4.25 18V6C4.25 5.27065 4.53973 4.57118 5.05546 4.05546C5.57118 3.53973 6.27065 3.25 7 3.25H15C15.7293 3.25 16.4288 3.53973 16.9445 4.05546C17.4603 4.57118 17.75 5.27065 17.75 6V14C17.75 14.4142 17.4142 14.75 17 14.75C16.5858 14.75 16.25 14.4142 16.25 14V6C16.25 5.66848 16.1183 5.35054 15.8839 5.11612C15.6495 4.8817 15.3315 4.75 15 4.75H7ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25H13C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H9C8.58579 8.75 8.25 8.41421 8.25 8ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H11C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12ZM20.5303 16.4697C20.8232 16.7626 20.8232 17.2374 20.5303 17.5303L16.5303 21.5303C16.2374 21.8232 15.7626 21.8232 15.4697 21.5303L13.4697 19.5303C13.1768 19.2374 13.1768 18.7626 13.4697 18.4697C13.7626 18.1768 14.2374 18.1768 14.5303 18.4697L16 19.9393L19.4697 16.4697C19.7626 16.1768 20.2374 16.1768 20.5303 16.4697Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChecklistIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,aAAgB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACxF,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 ThumbUpIcon = 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: "M7.54031 19.7806C7.46035 19.9289 7.35872 20.0661 7.23744 20.1874C6.90925 20.5156 6.46413 20.7 6 20.7H4C3.53587 20.7 3.09075 20.5156 2.76256 20.1874C2.43437 19.8592 2.25 19.4141 2.25 18.95V11.95C2.25 11.4858 2.43437 11.0407 2.76256 10.7125C3.09075 10.3843 3.53587 10.2 4 10.2H7C7.86195 10.2 8.6886 9.85754 9.2981 9.24805C9.90759 8.63856 10.25 7.8119 10.25 6.94995V5.94995C10.25 5.22061 10.5397 4.52113 11.0555 4.00541C11.5712 3.48968 12.2707 3.19995 13 3.19995C13.7293 3.19995 14.4288 3.48968 14.9445 4.00541C15.4603 4.52113 15.75 5.22061 15.75 5.94995V10.2H18C18.7293 10.2 19.4288 10.4897 19.9445 11.0054C20.4603 11.5211 20.75 12.2206 20.75 12.95C20.75 12.9993 20.7451 13.0486 20.7354 13.097L19.7354 18.097C19.7338 18.1051 19.7321 18.1131 19.7302 18.1211C19.562 18.8387 19.2333 19.5009 18.753 19.9812C18.2744 20.4598 17.6504 20.7463 16.9716 20.7H10C9.09323 20.7 8.22033 20.3715 7.54031 19.7806ZM13 4.69995C12.6685 4.69995 12.3505 4.83165 12.1161 5.06607C11.8817 5.30049 11.75 5.61843 11.75 5.94995V6.94995C11.75 8.20973 11.2496 9.41791 10.3588 10.3087C9.64671 11.0208 8.73188 11.4834 7.75 11.6404V16.95C7.75 17.5467 7.98705 18.119 8.40901 18.5409C8.83097 18.9629 9.40326 19.2 10 19.2H17C17.0212 19.2 17.0424 19.2009 17.0636 19.2027C17.2369 19.2174 17.4577 19.1552 17.6923 18.9206C17.9316 18.6813 18.1471 18.294 18.2671 17.7902L19.2483 12.8843C19.2321 12.5767 19.1028 12.285 18.8839 12.0661C18.6495 11.8316 18.3315 11.7 18 11.7H15C14.5858 11.7 14.25 11.3642 14.25 10.95V5.94995C14.25 5.61843 14.1183 5.30049 13.8839 5.06607C13.6495 4.83165 13.3315 4.69995 13 4.69995ZM6.25 11.7H4C3.9337 11.7 3.87011 11.7263 3.82322 11.7732C3.77634 11.8201 3.75 11.8836 3.75 11.95V18.95C3.75 19.0163 3.77634 19.0798 3.82322 19.1267C3.87011 19.1736 3.93369 19.2 4 19.2H6C6.06631 19.2 6.12989 19.1736 6.17678 19.1267C6.22366 19.0798 6.25 19.0163 6.25 18.95V11.7Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { ThumbUpIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/ThumbUpIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ThumbUpIcon = 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=\"M7.54031 19.7806C7.46035 19.9289 7.35872 20.0661 7.23744 20.1874C6.90925 20.5156 6.46413 20.7 6 20.7H4C3.53587 20.7 3.09075 20.5156 2.76256 20.1874C2.43437 19.8592 2.25 19.4141 2.25 18.95V11.95C2.25 11.4858 2.43437 11.0407 2.76256 10.7125C3.09075 10.3843 3.53587 10.2 4 10.2H7C7.86195 10.2 8.6886 9.85754 9.2981 9.24805C9.90759 8.63856 10.25 7.8119 10.25 6.94995V5.94995C10.25 5.22061 10.5397 4.52113 11.0555 4.00541C11.5712 3.48968 12.2707 3.19995 13 3.19995C13.7293 3.19995 14.4288 3.48968 14.9445 4.00541C15.4603 4.52113 15.75 5.22061 15.75 5.94995V10.2H18C18.7293 10.2 19.4288 10.4897 19.9445 11.0054C20.4603 11.5211 20.75 12.2206 20.75 12.95C20.75 12.9993 20.7451 13.0486 20.7354 13.097L19.7354 18.097C19.7338 18.1051 19.7321 18.1131 19.7302 18.1211C19.562 18.8387 19.2333 19.5009 18.753 19.9812C18.2744 20.4598 17.6504 20.7463 16.9716 20.7H10C9.09323 20.7 8.22033 20.3715 7.54031 19.7806ZM13 4.69995C12.6685 4.69995 12.3505 4.83165 12.1161 5.06607C11.8817 5.30049 11.75 5.61843 11.75 5.94995V6.94995C11.75 8.20973 11.2496 9.41791 10.3588 10.3087C9.64671 11.0208 8.73188 11.4834 7.75 11.6404V16.95C7.75 17.5467 7.98705 18.119 8.40901 18.5409C8.83097 18.9629 9.40326 19.2 10 19.2H17C17.0212 19.2 17.0424 19.2009 17.0636 19.2027C17.2369 19.2174 17.4577 19.1552 17.6923 18.9206C17.9316 18.6813 18.1471 18.294 18.2671 17.7902L19.2483 12.8843C19.2321 12.5767 19.1028 12.285 18.8839 12.0661C18.6495 11.8316 18.3315 11.7 18 11.7H15C14.5858 11.7 14.25 11.3642 14.25 10.95V5.94995C14.25 5.61843 14.1183 5.30049 13.8839 5.06607C13.6495 4.83165 13.3315 4.69995 13 4.69995ZM6.25 11.7H4C3.9337 11.7 3.87011 11.7263 3.82322 11.7732C3.77634 11.8201 3.75 11.8836 3.75 11.95V18.95C3.75 19.0163 3.77634 19.0798 3.82322 19.1267C3.87011 19.1736 3.93369 19.2 4 19.2H6C6.06631 19.2 6.12989 19.1736 6.17678 19.1267C6.22366 19.0798 6.25 19.0163 6.25 18.95V11.7Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ThumbUpIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,WAAc,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACtF,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 ThumbUpIcon = 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: "M7.54031 19.7806C7.46035 19.9289 7.35872 20.0661 7.23744 20.1874C6.90925 20.5156 6.46413 20.7 6 20.7H4C3.53587 20.7 3.09075 20.5156 2.76256 20.1874C2.43437 19.8592 2.25 19.4141 2.25 18.95V11.95C2.25 11.4858 2.43437 11.0407 2.76256 10.7125C3.09075 10.3843 3.53587 10.2 4 10.2H7C7.86195 10.2 8.6886 9.85754 9.2981 9.24805C9.90759 8.63856 10.25 7.8119 10.25 6.94995V5.94995C10.25 5.22061 10.5397 4.52113 11.0555 4.00541C11.5712 3.48968 12.2707 3.19995 13 3.19995C13.7293 3.19995 14.4288 3.48968 14.9445 4.00541C15.4603 4.52113 15.75 5.22061 15.75 5.94995V10.2H18C18.7293 10.2 19.4288 10.4897 19.9445 11.0054C20.4603 11.5211 20.75 12.2206 20.75 12.95C20.75 12.9993 20.7451 13.0486 20.7354 13.097L19.7354 18.097C19.7338 18.1051 19.7321 18.1131 19.7302 18.1211C19.562 18.8387 19.2333 19.5009 18.753 19.9812C18.2744 20.4598 17.6504 20.7463 16.9716 20.7H10C9.09323 20.7 8.22033 20.3715 7.54031 19.7806ZM13 4.69995C12.6685 4.69995 12.3505 4.83165 12.1161 5.06607C11.8817 5.30049 11.75 5.61843 11.75 5.94995V6.94995C11.75 8.20973 11.2496 9.41791 10.3588 10.3087C9.64671 11.0208 8.73188 11.4834 7.75 11.6404V16.95C7.75 17.5467 7.98705 18.119 8.40901 18.5409C8.83097 18.9629 9.40326 19.2 10 19.2H17C17.0212 19.2 17.0424 19.2009 17.0636 19.2027C17.2369 19.2174 17.4577 19.1552 17.6923 18.9206C17.9316 18.6813 18.1471 18.294 18.2671 17.7902L19.2483 12.8843C19.2321 12.5767 19.1028 12.285 18.8839 12.0661C18.6495 11.8316 18.3315 11.7 18 11.7H15C14.5858 11.7 14.25 11.3642 14.25 10.95V5.94995C14.25 5.61843 14.1183 5.30049 13.8839 5.06607C13.6495 4.83165 13.3315 4.69995 13 4.69995ZM6.25 11.7H4C3.9337 11.7 3.87011 11.7263 3.82322 11.7732C3.77634 11.8201 3.75 11.8836 3.75 11.95V18.95C3.75 19.0163 3.77634 19.0798 3.82322 19.1267C3.87011 19.1736 3.93369 19.2 4 19.2H6C6.06631 19.2 6.12989 19.1736 6.17678 19.1267C6.22366 19.0798 6.25 19.0163 6.25 18.95V11.7Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = ThumbUpIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/ThumbUpIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ThumbUpIcon = 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=\"M7.54031 19.7806C7.46035 19.9289 7.35872 20.0661 7.23744 20.1874C6.90925 20.5156 6.46413 20.7 6 20.7H4C3.53587 20.7 3.09075 20.5156 2.76256 20.1874C2.43437 19.8592 2.25 19.4141 2.25 18.95V11.95C2.25 11.4858 2.43437 11.0407 2.76256 10.7125C3.09075 10.3843 3.53587 10.2 4 10.2H7C7.86195 10.2 8.6886 9.85754 9.2981 9.24805C9.90759 8.63856 10.25 7.8119 10.25 6.94995V5.94995C10.25 5.22061 10.5397 4.52113 11.0555 4.00541C11.5712 3.48968 12.2707 3.19995 13 3.19995C13.7293 3.19995 14.4288 3.48968 14.9445 4.00541C15.4603 4.52113 15.75 5.22061 15.75 5.94995V10.2H18C18.7293 10.2 19.4288 10.4897 19.9445 11.0054C20.4603 11.5211 20.75 12.2206 20.75 12.95C20.75 12.9993 20.7451 13.0486 20.7354 13.097L19.7354 18.097C19.7338 18.1051 19.7321 18.1131 19.7302 18.1211C19.562 18.8387 19.2333 19.5009 18.753 19.9812C18.2744 20.4598 17.6504 20.7463 16.9716 20.7H10C9.09323 20.7 8.22033 20.3715 7.54031 19.7806ZM13 4.69995C12.6685 4.69995 12.3505 4.83165 12.1161 5.06607C11.8817 5.30049 11.75 5.61843 11.75 5.94995V6.94995C11.75 8.20973 11.2496 9.41791 10.3588 10.3087C9.64671 11.0208 8.73188 11.4834 7.75 11.6404V16.95C7.75 17.5467 7.98705 18.119 8.40901 18.5409C8.83097 18.9629 9.40326 19.2 10 19.2H17C17.0212 19.2 17.0424 19.2009 17.0636 19.2027C17.2369 19.2174 17.4577 19.1552 17.6923 18.9206C17.9316 18.6813 18.1471 18.294 18.2671 17.7902L19.2483 12.8843C19.2321 12.5767 19.1028 12.285 18.8839 12.0661C18.6495 11.8316 18.3315 11.7 18 11.7H15C14.5858 11.7 14.25 11.3642 14.25 10.95V5.94995C14.25 5.61843 14.1183 5.30049 13.8839 5.06607C13.6495 4.83165 13.3315 4.69995 13 4.69995ZM6.25 11.7H4C3.9337 11.7 3.87011 11.7263 3.82322 11.7732C3.77634 11.8201 3.75 11.8836 3.75 11.95V18.95C3.75 19.0163 3.77634 19.0798 3.82322 19.1267C3.87011 19.1736 3.93369 19.2 4 19.2H6C6.06631 19.2 6.12989 19.1736 6.17678 19.1267C6.22366 19.0798 6.25 19.0163 6.25 18.95V11.7Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ThumbUpIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,WAAc,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACtF,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 ThumbsDownIcon = 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: "M16.9716 3.25489C17.6504 3.20852 18.2744 3.49503 18.753 3.9736C19.2333 4.45396 19.562 5.11618 19.7302 5.83371C19.7321 5.84172 19.7338 5.84975 19.7354 5.85781L20.7354 10.8578C20.7451 10.9062 20.75 10.9555 20.75 11.0049C20.75 11.7342 20.4603 12.4337 19.9445 12.9494C19.4288 13.4652 18.7293 13.7549 18 13.7549H15.75V18.0049C15.75 18.7342 15.4603 19.4337 14.9445 19.9494C14.4288 20.4652 13.7293 20.7549 13 20.7549C12.2707 20.7549 11.5712 20.4652 11.0555 19.9494C10.5397 19.4337 10.25 18.7342 10.25 18.0049V17.0049C10.25 16.1429 9.90759 15.3163 9.2981 14.7068C8.6886 14.0973 7.86195 13.7549 7 13.7549H4C3.53587 13.7549 3.09075 13.5705 2.76256 13.2423C2.43437 12.9141 2.25 12.469 2.25 12.0049V5.00489C2.25 4.54076 2.43437 4.09565 2.76256 3.76746C3.09075 3.43927 3.53587 3.25489 4 3.25489H6C6.46413 3.25489 6.90925 3.43927 7.23744 3.76746C7.35872 3.88874 7.46036 4.02599 7.54031 4.17426C8.22033 3.58331 9.09324 3.25489 10 3.25489H16.9716ZM6.25 5.00489C6.25 4.93859 6.22366 4.875 6.17678 4.82812C6.12989 4.78123 6.0663 4.75489 6 4.75489H4C3.9337 4.75489 3.87011 4.78123 3.82322 4.82812C3.77634 4.875 3.75 4.93859 3.75 5.00489V12.0049C3.75 12.0712 3.77634 12.1348 3.82322 12.1817C3.87011 12.2286 3.9337 12.2549 4 12.2549H6.25V5.00489ZM7.75 12.3145V7.00489C7.75 6.40816 7.98705 5.83586 8.40901 5.4139C8.83097 4.99195 9.40326 4.75489 10 4.75489H17C17.0212 4.75489 17.0424 4.75399 17.0636 4.75219C17.2369 4.73745 17.4577 4.79965 17.6923 5.03426C17.9316 5.27354 18.1471 5.66082 18.2671 6.16467L19.2483 11.0705C19.2321 11.3781 19.1028 11.6699 18.8839 11.8888C18.6495 12.1232 18.3315 12.2549 18 12.2549H15C14.5858 12.2549 14.25 12.5907 14.25 13.0049V18.0049C14.25 18.3364 14.1183 18.6544 13.8839 18.8888C13.6495 19.1232 13.3315 19.2549 13 19.2549C12.6685 19.2549 12.3505 19.1232 12.1161 18.8888C11.8817 18.6544 11.75 18.3364 11.75 18.0049V17.0049C11.75 15.7451 11.2496 14.5369 10.3588 13.6461C9.64671 12.9341 8.73188 12.4715 7.75 12.3145Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { ThumbsDownIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/ThumbsDownIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ThumbsDownIcon = 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=\"M16.9716 3.25489C17.6504 3.20852 18.2744 3.49503 18.753 3.9736C19.2333 4.45396 19.562 5.11618 19.7302 5.83371C19.7321 5.84172 19.7338 5.84975 19.7354 5.85781L20.7354 10.8578C20.7451 10.9062 20.75 10.9555 20.75 11.0049C20.75 11.7342 20.4603 12.4337 19.9445 12.9494C19.4288 13.4652 18.7293 13.7549 18 13.7549H15.75V18.0049C15.75 18.7342 15.4603 19.4337 14.9445 19.9494C14.4288 20.4652 13.7293 20.7549 13 20.7549C12.2707 20.7549 11.5712 20.4652 11.0555 19.9494C10.5397 19.4337 10.25 18.7342 10.25 18.0049V17.0049C10.25 16.1429 9.90759 15.3163 9.2981 14.7068C8.6886 14.0973 7.86195 13.7549 7 13.7549H4C3.53587 13.7549 3.09075 13.5705 2.76256 13.2423C2.43437 12.9141 2.25 12.469 2.25 12.0049V5.00489C2.25 4.54076 2.43437 4.09565 2.76256 3.76746C3.09075 3.43927 3.53587 3.25489 4 3.25489H6C6.46413 3.25489 6.90925 3.43927 7.23744 3.76746C7.35872 3.88874 7.46036 4.02599 7.54031 4.17426C8.22033 3.58331 9.09324 3.25489 10 3.25489H16.9716ZM6.25 5.00489C6.25 4.93859 6.22366 4.875 6.17678 4.82812C6.12989 4.78123 6.0663 4.75489 6 4.75489H4C3.9337 4.75489 3.87011 4.78123 3.82322 4.82812C3.77634 4.875 3.75 4.93859 3.75 5.00489V12.0049C3.75 12.0712 3.77634 12.1348 3.82322 12.1817C3.87011 12.2286 3.9337 12.2549 4 12.2549H6.25V5.00489ZM7.75 12.3145V7.00489C7.75 6.40816 7.98705 5.83586 8.40901 5.4139C8.83097 4.99195 9.40326 4.75489 10 4.75489H17C17.0212 4.75489 17.0424 4.75399 17.0636 4.75219C17.2369 4.73745 17.4577 4.79965 17.6923 5.03426C17.9316 5.27354 18.1471 5.66082 18.2671 6.16467L19.2483 11.0705C19.2321 11.3781 19.1028 11.6699 18.8839 11.8888C18.6495 12.1232 18.3315 12.2549 18 12.2549H15C14.5858 12.2549 14.25 12.5907 14.25 13.0049V18.0049C14.25 18.3364 14.1183 18.6544 13.8839 18.8888C13.6495 19.1232 13.3315 19.2549 13 19.2549C12.6685 19.2549 12.3505 19.1232 12.1161 18.8888C11.8817 18.6544 11.75 18.3364 11.75 18.0049V17.0049C11.75 15.7451 11.2496 14.5369 10.3588 13.6461C9.64671 12.9341 8.73188 12.4715 7.75 12.3145Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ThumbsDownIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,cAAiB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACzF,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 ThumbsDownIcon = 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: "M16.9716 3.25489C17.6504 3.20852 18.2744 3.49503 18.753 3.9736C19.2333 4.45396 19.562 5.11618 19.7302 5.83371C19.7321 5.84172 19.7338 5.84975 19.7354 5.85781L20.7354 10.8578C20.7451 10.9062 20.75 10.9555 20.75 11.0049C20.75 11.7342 20.4603 12.4337 19.9445 12.9494C19.4288 13.4652 18.7293 13.7549 18 13.7549H15.75V18.0049C15.75 18.7342 15.4603 19.4337 14.9445 19.9494C14.4288 20.4652 13.7293 20.7549 13 20.7549C12.2707 20.7549 11.5712 20.4652 11.0555 19.9494C10.5397 19.4337 10.25 18.7342 10.25 18.0049V17.0049C10.25 16.1429 9.90759 15.3163 9.2981 14.7068C8.6886 14.0973 7.86195 13.7549 7 13.7549H4C3.53587 13.7549 3.09075 13.5705 2.76256 13.2423C2.43437 12.9141 2.25 12.469 2.25 12.0049V5.00489C2.25 4.54076 2.43437 4.09565 2.76256 3.76746C3.09075 3.43927 3.53587 3.25489 4 3.25489H6C6.46413 3.25489 6.90925 3.43927 7.23744 3.76746C7.35872 3.88874 7.46036 4.02599 7.54031 4.17426C8.22033 3.58331 9.09324 3.25489 10 3.25489H16.9716ZM6.25 5.00489C6.25 4.93859 6.22366 4.875 6.17678 4.82812C6.12989 4.78123 6.0663 4.75489 6 4.75489H4C3.9337 4.75489 3.87011 4.78123 3.82322 4.82812C3.77634 4.875 3.75 4.93859 3.75 5.00489V12.0049C3.75 12.0712 3.77634 12.1348 3.82322 12.1817C3.87011 12.2286 3.9337 12.2549 4 12.2549H6.25V5.00489ZM7.75 12.3145V7.00489C7.75 6.40816 7.98705 5.83586 8.40901 5.4139C8.83097 4.99195 9.40326 4.75489 10 4.75489H17C17.0212 4.75489 17.0424 4.75399 17.0636 4.75219C17.2369 4.73745 17.4577 4.79965 17.6923 5.03426C17.9316 5.27354 18.1471 5.66082 18.2671 6.16467L19.2483 11.0705C19.2321 11.3781 19.1028 11.6699 18.8839 11.8888C18.6495 12.1232 18.3315 12.2549 18 12.2549H15C14.5858 12.2549 14.25 12.5907 14.25 13.0049V18.0049C14.25 18.3364 14.1183 18.6544 13.8839 18.8888C13.6495 19.1232 13.3315 19.2549 13 19.2549C12.6685 19.2549 12.3505 19.1232 12.1161 18.8888C11.8817 18.6544 11.75 18.3364 11.75 18.0049V17.0049C11.75 15.7451 11.2496 14.5369 10.3588 13.6461C9.64671 12.9341 8.73188 12.4715 7.75 12.3145Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = ThumbsDownIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/ThumbsDownIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ThumbsDownIcon = 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=\"M16.9716 3.25489C17.6504 3.20852 18.2744 3.49503 18.753 3.9736C19.2333 4.45396 19.562 5.11618 19.7302 5.83371C19.7321 5.84172 19.7338 5.84975 19.7354 5.85781L20.7354 10.8578C20.7451 10.9062 20.75 10.9555 20.75 11.0049C20.75 11.7342 20.4603 12.4337 19.9445 12.9494C19.4288 13.4652 18.7293 13.7549 18 13.7549H15.75V18.0049C15.75 18.7342 15.4603 19.4337 14.9445 19.9494C14.4288 20.4652 13.7293 20.7549 13 20.7549C12.2707 20.7549 11.5712 20.4652 11.0555 19.9494C10.5397 19.4337 10.25 18.7342 10.25 18.0049V17.0049C10.25 16.1429 9.90759 15.3163 9.2981 14.7068C8.6886 14.0973 7.86195 13.7549 7 13.7549H4C3.53587 13.7549 3.09075 13.5705 2.76256 13.2423C2.43437 12.9141 2.25 12.469 2.25 12.0049V5.00489C2.25 4.54076 2.43437 4.09565 2.76256 3.76746C3.09075 3.43927 3.53587 3.25489 4 3.25489H6C6.46413 3.25489 6.90925 3.43927 7.23744 3.76746C7.35872 3.88874 7.46036 4.02599 7.54031 4.17426C8.22033 3.58331 9.09324 3.25489 10 3.25489H16.9716ZM6.25 5.00489C6.25 4.93859 6.22366 4.875 6.17678 4.82812C6.12989 4.78123 6.0663 4.75489 6 4.75489H4C3.9337 4.75489 3.87011 4.78123 3.82322 4.82812C3.77634 4.875 3.75 4.93859 3.75 5.00489V12.0049C3.75 12.0712 3.77634 12.1348 3.82322 12.1817C3.87011 12.2286 3.9337 12.2549 4 12.2549H6.25V5.00489ZM7.75 12.3145V7.00489C7.75 6.40816 7.98705 5.83586 8.40901 5.4139C8.83097 4.99195 9.40326 4.75489 10 4.75489H17C17.0212 4.75489 17.0424 4.75399 17.0636 4.75219C17.2369 4.73745 17.4577 4.79965 17.6923 5.03426C17.9316 5.27354 18.1471 5.66082 18.2671 6.16467L19.2483 11.0705C19.2321 11.3781 19.1028 11.6699 18.8839 11.8888C18.6495 12.1232 18.3315 12.2549 18 12.2549H15C14.5858 12.2549 14.25 12.5907 14.25 13.0049V18.0049C14.25 18.3364 14.1183 18.6544 13.8839 18.8888C13.6495 19.1232 13.3315 19.2549 13 19.2549C12.6685 19.2549 12.3505 19.1232 12.1161 18.8888C11.8817 18.6544 11.75 18.3364 11.75 18.0049V17.0049C11.75 15.7451 11.2496 14.5369 10.3588 13.6461C9.64671 12.9341 8.73188 12.4715 7.75 12.3145Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ThumbsDownIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,cAAiB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACzF,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
|
@@ -41,6 +41,7 @@ export { default as CartIcon } from './CartIcon';
|
|
|
41
41
|
export { default as ChatbotIcon } from './ChatbotIcon';
|
|
42
42
|
export { default as CheckIcon } from './CheckIcon';
|
|
43
43
|
export { default as CheckedCircleIcon } from './CheckedCircleIcon';
|
|
44
|
+
export { default as ChecklistIcon } from './ChecklistIcon';
|
|
44
45
|
export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
45
46
|
export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
46
47
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
@@ -195,6 +196,8 @@ export { default as TextDirectionLtrIcon } from './TextDirectionLtrIcon';
|
|
|
195
196
|
export { default as TextDirectionRtlIcon } from './TextDirectionRtlIcon';
|
|
196
197
|
export { default as TextIcon } from './TextIcon';
|
|
197
198
|
export { default as ThemeBuilderIcon } from './ThemeBuilderIcon';
|
|
199
|
+
export { default as ThumbUpIcon } from './ThumbUpIcon';
|
|
200
|
+
export { default as ThumbsDownIcon } from './ThumbsDownIcon';
|
|
198
201
|
export { default as ToggleRightIcon } from './ToggleRightIcon';
|
|
199
202
|
export { default as TrashIcon } from './TrashIcon';
|
|
200
203
|
export { default as UnderlineIcon } from './UnderlineIcon';
|
package/index.esm.js
CHANGED
|
@@ -474,6 +474,17 @@ const CheckedCircleIcon = React.forwardRef((props, ref) => {
|
|
|
474
474
|
));
|
|
475
475
|
});
|
|
476
476
|
|
|
477
|
+
const ChecklistIcon = React.forwardRef((props, ref) => {
|
|
478
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
479
|
+
"path",
|
|
480
|
+
{
|
|
481
|
+
fillRule: "evenodd",
|
|
482
|
+
clipRule: "evenodd",
|
|
483
|
+
d: "M7 4.75C6.66848 4.75 6.35054 4.8817 6.11612 5.11612C5.8817 5.35054 5.75 5.66848 5.75 6V18C5.75 18.3315 5.8817 18.6495 6.11612 18.8839C6.35054 19.1183 6.66848 19.25 7 19.25H9.615C10.0292 19.25 10.365 19.5858 10.365 20C10.365 20.4142 10.0292 20.75 9.615 20.75H7C6.27065 20.75 5.57118 20.4603 5.05546 19.9445C4.53973 19.4288 4.25 18.7293 4.25 18V6C4.25 5.27065 4.53973 4.57118 5.05546 4.05546C5.57118 3.53973 6.27065 3.25 7 3.25H15C15.7293 3.25 16.4288 3.53973 16.9445 4.05546C17.4603 4.57118 17.75 5.27065 17.75 6V14C17.75 14.4142 17.4142 14.75 17 14.75C16.5858 14.75 16.25 14.4142 16.25 14V6C16.25 5.66848 16.1183 5.35054 15.8839 5.11612C15.6495 4.8817 15.3315 4.75 15 4.75H7ZM8.25 8C8.25 7.58579 8.58579 7.25 9 7.25H13C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H9C8.58579 8.75 8.25 8.41421 8.25 8ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H11C11.4142 11.25 11.75 11.5858 11.75 12C11.75 12.4142 11.4142 12.75 11 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12ZM20.5303 16.4697C20.8232 16.7626 20.8232 17.2374 20.5303 17.5303L16.5303 21.5303C16.2374 21.8232 15.7626 21.8232 15.4697 21.5303L13.4697 19.5303C13.1768 19.2374 13.1768 18.7626 13.4697 18.4697C13.7626 18.1768 14.2374 18.1768 14.5303 18.4697L16 19.9393L19.4697 16.4697C19.7626 16.1768 20.2374 16.1768 20.5303 16.4697Z"
|
|
484
|
+
}
|
|
485
|
+
));
|
|
486
|
+
});
|
|
487
|
+
|
|
477
488
|
const ChevronDownIcon = React.forwardRef((props, ref) => {
|
|
478
489
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
479
490
|
"path",
|
|
@@ -2077,6 +2088,28 @@ const ThemeBuilderIcon = React.forwardRef((props, ref) => {
|
|
|
2077
2088
|
));
|
|
2078
2089
|
});
|
|
2079
2090
|
|
|
2091
|
+
const ThumbUpIcon = React.forwardRef((props, ref) => {
|
|
2092
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
2093
|
+
"path",
|
|
2094
|
+
{
|
|
2095
|
+
fillRule: "evenodd",
|
|
2096
|
+
clipRule: "evenodd",
|
|
2097
|
+
d: "M7.54031 19.7806C7.46035 19.9289 7.35872 20.0661 7.23744 20.1874C6.90925 20.5156 6.46413 20.7 6 20.7H4C3.53587 20.7 3.09075 20.5156 2.76256 20.1874C2.43437 19.8592 2.25 19.4141 2.25 18.95V11.95C2.25 11.4858 2.43437 11.0407 2.76256 10.7125C3.09075 10.3843 3.53587 10.2 4 10.2H7C7.86195 10.2 8.6886 9.85754 9.2981 9.24805C9.90759 8.63856 10.25 7.8119 10.25 6.94995V5.94995C10.25 5.22061 10.5397 4.52113 11.0555 4.00541C11.5712 3.48968 12.2707 3.19995 13 3.19995C13.7293 3.19995 14.4288 3.48968 14.9445 4.00541C15.4603 4.52113 15.75 5.22061 15.75 5.94995V10.2H18C18.7293 10.2 19.4288 10.4897 19.9445 11.0054C20.4603 11.5211 20.75 12.2206 20.75 12.95C20.75 12.9993 20.7451 13.0486 20.7354 13.097L19.7354 18.097C19.7338 18.1051 19.7321 18.1131 19.7302 18.1211C19.562 18.8387 19.2333 19.5009 18.753 19.9812C18.2744 20.4598 17.6504 20.7463 16.9716 20.7H10C9.09323 20.7 8.22033 20.3715 7.54031 19.7806ZM13 4.69995C12.6685 4.69995 12.3505 4.83165 12.1161 5.06607C11.8817 5.30049 11.75 5.61843 11.75 5.94995V6.94995C11.75 8.20973 11.2496 9.41791 10.3588 10.3087C9.64671 11.0208 8.73188 11.4834 7.75 11.6404V16.95C7.75 17.5467 7.98705 18.119 8.40901 18.5409C8.83097 18.9629 9.40326 19.2 10 19.2H17C17.0212 19.2 17.0424 19.2009 17.0636 19.2027C17.2369 19.2174 17.4577 19.1552 17.6923 18.9206C17.9316 18.6813 18.1471 18.294 18.2671 17.7902L19.2483 12.8843C19.2321 12.5767 19.1028 12.285 18.8839 12.0661C18.6495 11.8316 18.3315 11.7 18 11.7H15C14.5858 11.7 14.25 11.3642 14.25 10.95V5.94995C14.25 5.61843 14.1183 5.30049 13.8839 5.06607C13.6495 4.83165 13.3315 4.69995 13 4.69995ZM6.25 11.7H4C3.9337 11.7 3.87011 11.7263 3.82322 11.7732C3.77634 11.8201 3.75 11.8836 3.75 11.95V18.95C3.75 19.0163 3.77634 19.0798 3.82322 19.1267C3.87011 19.1736 3.93369 19.2 4 19.2H6C6.06631 19.2 6.12989 19.1736 6.17678 19.1267C6.22366 19.0798 6.25 19.0163 6.25 18.95V11.7Z"
|
|
2098
|
+
}
|
|
2099
|
+
));
|
|
2100
|
+
});
|
|
2101
|
+
|
|
2102
|
+
const ThumbsDownIcon = React.forwardRef((props, ref) => {
|
|
2103
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
2104
|
+
"path",
|
|
2105
|
+
{
|
|
2106
|
+
fillRule: "evenodd",
|
|
2107
|
+
clipRule: "evenodd",
|
|
2108
|
+
d: "M16.9716 3.25489C17.6504 3.20852 18.2744 3.49503 18.753 3.9736C19.2333 4.45396 19.562 5.11618 19.7302 5.83371C19.7321 5.84172 19.7338 5.84975 19.7354 5.85781L20.7354 10.8578C20.7451 10.9062 20.75 10.9555 20.75 11.0049C20.75 11.7342 20.4603 12.4337 19.9445 12.9494C19.4288 13.4652 18.7293 13.7549 18 13.7549H15.75V18.0049C15.75 18.7342 15.4603 19.4337 14.9445 19.9494C14.4288 20.4652 13.7293 20.7549 13 20.7549C12.2707 20.7549 11.5712 20.4652 11.0555 19.9494C10.5397 19.4337 10.25 18.7342 10.25 18.0049V17.0049C10.25 16.1429 9.90759 15.3163 9.2981 14.7068C8.6886 14.0973 7.86195 13.7549 7 13.7549H4C3.53587 13.7549 3.09075 13.5705 2.76256 13.2423C2.43437 12.9141 2.25 12.469 2.25 12.0049V5.00489C2.25 4.54076 2.43437 4.09565 2.76256 3.76746C3.09075 3.43927 3.53587 3.25489 4 3.25489H6C6.46413 3.25489 6.90925 3.43927 7.23744 3.76746C7.35872 3.88874 7.46036 4.02599 7.54031 4.17426C8.22033 3.58331 9.09324 3.25489 10 3.25489H16.9716ZM6.25 5.00489C6.25 4.93859 6.22366 4.875 6.17678 4.82812C6.12989 4.78123 6.0663 4.75489 6 4.75489H4C3.9337 4.75489 3.87011 4.78123 3.82322 4.82812C3.77634 4.875 3.75 4.93859 3.75 5.00489V12.0049C3.75 12.0712 3.77634 12.1348 3.82322 12.1817C3.87011 12.2286 3.9337 12.2549 4 12.2549H6.25V5.00489ZM7.75 12.3145V7.00489C7.75 6.40816 7.98705 5.83586 8.40901 5.4139C8.83097 4.99195 9.40326 4.75489 10 4.75489H17C17.0212 4.75489 17.0424 4.75399 17.0636 4.75219C17.2369 4.73745 17.4577 4.79965 17.6923 5.03426C17.9316 5.27354 18.1471 5.66082 18.2671 6.16467L19.2483 11.0705C19.2321 11.3781 19.1028 11.6699 18.8839 11.8888C18.6495 12.1232 18.3315 12.2549 18 12.2549H15C14.5858 12.2549 14.25 12.5907 14.25 13.0049V18.0049C14.25 18.3364 14.1183 18.6544 13.8839 18.8888C13.6495 19.1232 13.3315 19.2549 13 19.2549C12.6685 19.2549 12.3505 19.1232 12.1161 18.8888C11.8817 18.6544 11.75 18.3364 11.75 18.0049V17.0049C11.75 15.7451 11.2496 14.5369 10.3588 13.6461C9.64671 12.9341 8.73188 12.4715 7.75 12.3145Z"
|
|
2109
|
+
}
|
|
2110
|
+
));
|
|
2111
|
+
});
|
|
2112
|
+
|
|
2080
2113
|
const ToggleRightIcon = React.forwardRef((props, ref) => {
|
|
2081
2114
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
2082
2115
|
"path",
|
|
@@ -2285,5 +2318,5 @@ const XIcon = React.forwardRef((props, ref) => {
|
|
|
2285
2318
|
));
|
|
2286
2319
|
});
|
|
2287
2320
|
|
|
2288
|
-
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, AtomIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, BugOffIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CircleMinusIcon, CircleNumber1Icon, 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, MapPinIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, OverlineIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RotateIcon, 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, TextIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2321
|
+
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, AtomIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, BugOffIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChecklistIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CircleMinusIcon, CircleNumber1Icon, 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, MapPinIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, OverlineIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RotateIcon, 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, TextIcon, ThemeBuilderIcon, ThumbUpIcon, ThumbsDownIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2289
2322
|
//# sourceMappingURL=index.esm.js.map
|