@elementor/icons 1.6.0 → 1.8.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/ClockIcon/index.d.ts +4 -0
- package/ClockIcon/index.esm.js +10 -0
- package/ClockIcon/index.esm.js.map +1 -0
- package/ClockIcon/index.js +37 -0
- package/ClockIcon/index.js.map +1 -0
- package/ClockIcon/package.json +7 -0
- package/LockIcon/index.d.ts +4 -0
- package/LockIcon/index.esm.js +10 -0
- package/LockIcon/index.esm.js.map +1 -0
- package/LockIcon/index.js +37 -0
- package/LockIcon/index.js.map +1 -0
- package/LockIcon/package.json +7 -0
- package/SpeakerphoneIcon/index.d.ts +4 -0
- package/SpeakerphoneIcon/index.esm.js +10 -0
- package/SpeakerphoneIcon/index.esm.js.map +1 -0
- package/SpeakerphoneIcon/index.js +37 -0
- package/SpeakerphoneIcon/index.js.map +1 -0
- package/SpeakerphoneIcon/package.json +7 -0
- package/index.d.ts +3 -0
- package/index.esm.js +16 -1
- package/index.esm.js.map +1 -1
- package/index.js +18 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const ClockIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", 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 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export { ClockIcon as default };
|
|
10
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/ClockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ClockIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" 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 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ClockIcon;\n"],"names":[],"mappings":";;;AAGM,MAAA,SAAS,GAAG,KAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACjF,IAAA,QACC,KAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,+iBAA+iB,EAAG,CAAA,CACvlB,EACT;AACH,CAAC;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespace(e) {
|
|
11
|
+
if (e && e.__esModule) 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__*/_interopNamespace(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultLegacy(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const ClockIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
33
|
+
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", 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 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
exports["default"] = ClockIcon;
|
|
37
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/ClockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ClockIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" 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 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ClockIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGM,MAAA,SAAS,GAAGA,gBAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACjF,IAAA,QACCA,gBAAA,CAAA,aAAA,CAACC,2BAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAAD,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,+iBAA+iB,EAAG,CAAA,CACvlB,EACT;AACH,CAAC;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const LockIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export { LockIcon as default };
|
|
10
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/LockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst LockIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default LockIcon;\n"],"names":[],"mappings":";;;AAGM,MAAA,QAAQ,GAAG,KAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AAChF,IAAA,QACC,KAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,ijCAAijC,EAAG,CAAA,CACzlC,EACT;AACH,CAAC;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespace(e) {
|
|
11
|
+
if (e && e.__esModule) 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__*/_interopNamespace(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultLegacy(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const LockIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
33
|
+
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
exports["default"] = LockIcon;
|
|
37
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/LockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst LockIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default LockIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGM,MAAA,QAAQ,GAAGA,gBAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AAChF,IAAA,QACCA,gBAAA,CAAA,aAAA,CAACC,2BAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAAD,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,ijCAAijC,EAAG,CAAA,CACzlC,EACT;AACH,CAAC;;;;"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const SpeakerphoneIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
6
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.0221 2.2505C14.7086 2.2428 14.3993 2.32462 14.1306 2.48639C13.8619 2.64816 13.6449 2.88316 13.5049 3.16386L10.9999 8.19197L3.92384 11.2998C3.49889 11.4865 3.16549 11.8343 2.99698 12.2667C2.82848 12.6992 2.83867 13.1809 3.02531 13.6058L4.63384 17.2682C4.82048 17.6931 5.16829 18.0265 5.60074 18.195C6.0332 18.3635 6.51489 18.3533 6.93984 18.1667L8.9999 17.2619L10.709 21.1532C10.8956 21.5781 11.2434 21.9115 11.6759 22.08C12.1083 22.2485 12.59 22.2383 13.015 22.0517L13.9306 21.6496C14.3555 21.4629 14.6889 21.1151 14.8574 20.6827C15.0259 20.2502 15.0157 19.7685 14.8291 19.3436L13.12 15.4523L14.0159 15.0588L19.4131 16.616C19.7145 16.7029 20.0346 16.7021 20.3355 16.6137C20.6364 16.5253 20.9059 16.3529 21.1124 16.1168C21.3188 15.8807 21.4537 15.5907 21.5013 15.2806C21.5488 14.9707 21.507 14.6537 21.3808 14.3667M21.3808 14.3667L20.4142 12.1659C21.0102 11.7447 21.4752 11.1551 21.7441 10.4649C22.1052 9.53824 22.0834 8.50606 21.6834 7.59546C21.2835 6.68486 20.5382 5.97043 19.6115 5.60934C18.9213 5.3404 18.1726 5.28388 17.4591 5.43778L16.4927 3.23726C16.3667 2.95018 16.1613 2.70457 15.901 2.52988C15.6405 2.35511 15.3357 2.2582 15.0221 2.2505M18.0836 6.85961C18.4152 6.83504 18.7512 6.88399 19.0669 7.00698C19.6229 7.22364 20.0701 7.6523 20.3101 8.19866C20.55 8.74502 20.5631 9.36433 20.3465 9.92035C20.2235 10.236 20.0321 10.5166 19.7897 10.7441L18.0836 6.85961ZM15.1191 3.8401C15.1077 3.81399 15.0889 3.79133 15.0652 3.77544C15.0415 3.75956 15.0138 3.75075 14.9853 3.75005C14.9568 3.74935 14.9287 3.75678 14.9042 3.77149C14.8798 3.7862 14.8601 3.80756 14.8474 3.83308L12.2214 9.10391C12.1432 9.26095 12.0123 9.38559 11.8517 9.45615L10.7072 9.95881L12.5168 14.0789L13.6613 13.5763C13.8219 13.5057 14.0022 13.4937 14.1708 13.5423L19.8288 15.1748C19.8562 15.1827 19.8852 15.1826 19.9126 15.1746C19.9399 15.1665 19.9645 15.1509 19.9832 15.1294C20.002 15.1079 20.0143 15.0816 20.0186 15.0534C20.0229 15.0252 20.0191 14.9964 20.0076 14.9703L15.1191 3.8401ZM11.7466 16.0555L13.4557 19.9468C13.4824 20.0075 13.4838 20.0763 13.4598 20.1381C13.4357 20.1999 13.3881 20.2495 13.3274 20.2762L12.4118 20.6783C12.3511 20.705 12.2823 20.7064 12.2205 20.6824C12.1587 20.6583 12.109 20.6107 12.0824 20.55L10.3733 16.6587L11.7466 16.0555ZM11.1434 14.6821L9.33384 10.562L4.52704 12.6732C4.46633 12.6999 4.4187 12.7496 4.39463 12.8113C4.37056 12.8731 4.37201 12.9419 4.39868 13.0026L6.00721 16.665C6.03387 16.7257 6.08356 16.7733 6.14534 16.7974C6.20712 16.8214 6.27593 16.82 6.33664 16.7933L11.1434 14.6821Z" })));
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
export { SpeakerphoneIcon as default };
|
|
10
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/SpeakerphoneIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst SpeakerphoneIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.0221 2.2505C14.7086 2.2428 14.3993 2.32462 14.1306 2.48639C13.8619 2.64816 13.6449 2.88316 13.5049 3.16386L10.9999 8.19197L3.92384 11.2998C3.49889 11.4865 3.16549 11.8343 2.99698 12.2667C2.82848 12.6992 2.83867 13.1809 3.02531 13.6058L4.63384 17.2682C4.82048 17.6931 5.16829 18.0265 5.60074 18.195C6.0332 18.3635 6.51489 18.3533 6.93984 18.1667L8.9999 17.2619L10.709 21.1532C10.8956 21.5781 11.2434 21.9115 11.6759 22.08C12.1083 22.2485 12.59 22.2383 13.015 22.0517L13.9306 21.6496C14.3555 21.4629 14.6889 21.1151 14.8574 20.6827C15.0259 20.2502 15.0157 19.7685 14.8291 19.3436L13.12 15.4523L14.0159 15.0588L19.4131 16.616C19.7145 16.7029 20.0346 16.7021 20.3355 16.6137C20.6364 16.5253 20.9059 16.3529 21.1124 16.1168C21.3188 15.8807 21.4537 15.5907 21.5013 15.2806C21.5488 14.9707 21.507 14.6537 21.3808 14.3667M21.3808 14.3667L20.4142 12.1659C21.0102 11.7447 21.4752 11.1551 21.7441 10.4649C22.1052 9.53824 22.0834 8.50606 21.6834 7.59546C21.2835 6.68486 20.5382 5.97043 19.6115 5.60934C18.9213 5.3404 18.1726 5.28388 17.4591 5.43778L16.4927 3.23726C16.3667 2.95018 16.1613 2.70457 15.901 2.52988C15.6405 2.35511 15.3357 2.2582 15.0221 2.2505M18.0836 6.85961C18.4152 6.83504 18.7512 6.88399 19.0669 7.00698C19.6229 7.22364 20.0701 7.6523 20.3101 8.19866C20.55 8.74502 20.5631 9.36433 20.3465 9.92035C20.2235 10.236 20.0321 10.5166 19.7897 10.7441L18.0836 6.85961ZM15.1191 3.8401C15.1077 3.81399 15.0889 3.79133 15.0652 3.77544C15.0415 3.75956 15.0138 3.75075 14.9853 3.75005C14.9568 3.74935 14.9287 3.75678 14.9042 3.77149C14.8798 3.7862 14.8601 3.80756 14.8474 3.83308L12.2214 9.10391C12.1432 9.26095 12.0123 9.38559 11.8517 9.45615L10.7072 9.95881L12.5168 14.0789L13.6613 13.5763C13.8219 13.5057 14.0022 13.4937 14.1708 13.5423L19.8288 15.1748C19.8562 15.1827 19.8852 15.1826 19.9126 15.1746C19.9399 15.1665 19.9645 15.1509 19.9832 15.1294C20.002 15.1079 20.0143 15.0816 20.0186 15.0534C20.0229 15.0252 20.0191 14.9964 20.0076 14.9703L15.1191 3.8401ZM11.7466 16.0555L13.4557 19.9468C13.4824 20.0075 13.4838 20.0763 13.4598 20.1381C13.4357 20.1999 13.3881 20.2495 13.3274 20.2762L12.4118 20.6783C12.3511 20.705 12.2823 20.7064 12.2205 20.6824C12.1587 20.6583 12.109 20.6107 12.0824 20.55L10.3733 16.6587L11.7466 16.0555ZM11.1434 14.6821L9.33384 10.562L4.52704 12.6732C4.46633 12.6999 4.4187 12.7496 4.39463 12.8113C4.37056 12.8731 4.37201 12.9419 4.39868 13.0026L6.00721 16.665C6.03387 16.7257 6.08356 16.7733 6.14534 16.7974C6.20712 16.8214 6.27593 16.82 6.33664 16.7933L11.1434 14.6821Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default SpeakerphoneIcon;\n"],"names":[],"mappings":";;;AAGM,MAAA,gBAAgB,GAAG,KAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACxF,IAAA,QACC,KAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,k8EAAk8E,EAAG,CAAA,CAC1+E,EACT;AACH,CAAC;;;;"}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespace(e) {
|
|
11
|
+
if (e && e.__esModule) 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__*/_interopNamespace(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultLegacy(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const SpeakerphoneIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
33
|
+
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.0221 2.2505C14.7086 2.2428 14.3993 2.32462 14.1306 2.48639C13.8619 2.64816 13.6449 2.88316 13.5049 3.16386L10.9999 8.19197L3.92384 11.2998C3.49889 11.4865 3.16549 11.8343 2.99698 12.2667C2.82848 12.6992 2.83867 13.1809 3.02531 13.6058L4.63384 17.2682C4.82048 17.6931 5.16829 18.0265 5.60074 18.195C6.0332 18.3635 6.51489 18.3533 6.93984 18.1667L8.9999 17.2619L10.709 21.1532C10.8956 21.5781 11.2434 21.9115 11.6759 22.08C12.1083 22.2485 12.59 22.2383 13.015 22.0517L13.9306 21.6496C14.3555 21.4629 14.6889 21.1151 14.8574 20.6827C15.0259 20.2502 15.0157 19.7685 14.8291 19.3436L13.12 15.4523L14.0159 15.0588L19.4131 16.616C19.7145 16.7029 20.0346 16.7021 20.3355 16.6137C20.6364 16.5253 20.9059 16.3529 21.1124 16.1168C21.3188 15.8807 21.4537 15.5907 21.5013 15.2806C21.5488 14.9707 21.507 14.6537 21.3808 14.3667M21.3808 14.3667L20.4142 12.1659C21.0102 11.7447 21.4752 11.1551 21.7441 10.4649C22.1052 9.53824 22.0834 8.50606 21.6834 7.59546C21.2835 6.68486 20.5382 5.97043 19.6115 5.60934C18.9213 5.3404 18.1726 5.28388 17.4591 5.43778L16.4927 3.23726C16.3667 2.95018 16.1613 2.70457 15.901 2.52988C15.6405 2.35511 15.3357 2.2582 15.0221 2.2505M18.0836 6.85961C18.4152 6.83504 18.7512 6.88399 19.0669 7.00698C19.6229 7.22364 20.0701 7.6523 20.3101 8.19866C20.55 8.74502 20.5631 9.36433 20.3465 9.92035C20.2235 10.236 20.0321 10.5166 19.7897 10.7441L18.0836 6.85961ZM15.1191 3.8401C15.1077 3.81399 15.0889 3.79133 15.0652 3.77544C15.0415 3.75956 15.0138 3.75075 14.9853 3.75005C14.9568 3.74935 14.9287 3.75678 14.9042 3.77149C14.8798 3.7862 14.8601 3.80756 14.8474 3.83308L12.2214 9.10391C12.1432 9.26095 12.0123 9.38559 11.8517 9.45615L10.7072 9.95881L12.5168 14.0789L13.6613 13.5763C13.8219 13.5057 14.0022 13.4937 14.1708 13.5423L19.8288 15.1748C19.8562 15.1827 19.8852 15.1826 19.9126 15.1746C19.9399 15.1665 19.9645 15.1509 19.9832 15.1294C20.002 15.1079 20.0143 15.0816 20.0186 15.0534C20.0229 15.0252 20.0191 14.9964 20.0076 14.9703L15.1191 3.8401ZM11.7466 16.0555L13.4557 19.9468C13.4824 20.0075 13.4838 20.0763 13.4598 20.1381C13.4357 20.1999 13.3881 20.2495 13.3274 20.2762L12.4118 20.6783C12.3511 20.705 12.2823 20.7064 12.2205 20.6824C12.1587 20.6583 12.109 20.6107 12.0824 20.55L10.3733 16.6587L11.7466 16.0555ZM11.1434 14.6821L9.33384 10.562L4.52704 12.6732C4.46633 12.6999 4.4187 12.7496 4.39463 12.8113C4.37056 12.8731 4.37201 12.9419 4.39868 13.0026L6.00721 16.665C6.03387 16.7257 6.08356 16.7733 6.14534 16.7974C6.20712 16.8214 6.27593 16.82 6.33664 16.7933L11.1434 14.6821Z" })));
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
exports["default"] = SpeakerphoneIcon;
|
|
37
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/SpeakerphoneIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst SpeakerphoneIcon = 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.0221 2.2505C14.7086 2.2428 14.3993 2.32462 14.1306 2.48639C13.8619 2.64816 13.6449 2.88316 13.5049 3.16386L10.9999 8.19197L3.92384 11.2998C3.49889 11.4865 3.16549 11.8343 2.99698 12.2667C2.82848 12.6992 2.83867 13.1809 3.02531 13.6058L4.63384 17.2682C4.82048 17.6931 5.16829 18.0265 5.60074 18.195C6.0332 18.3635 6.51489 18.3533 6.93984 18.1667L8.9999 17.2619L10.709 21.1532C10.8956 21.5781 11.2434 21.9115 11.6759 22.08C12.1083 22.2485 12.59 22.2383 13.015 22.0517L13.9306 21.6496C14.3555 21.4629 14.6889 21.1151 14.8574 20.6827C15.0259 20.2502 15.0157 19.7685 14.8291 19.3436L13.12 15.4523L14.0159 15.0588L19.4131 16.616C19.7145 16.7029 20.0346 16.7021 20.3355 16.6137C20.6364 16.5253 20.9059 16.3529 21.1124 16.1168C21.3188 15.8807 21.4537 15.5907 21.5013 15.2806C21.5488 14.9707 21.507 14.6537 21.3808 14.3667M21.3808 14.3667L20.4142 12.1659C21.0102 11.7447 21.4752 11.1551 21.7441 10.4649C22.1052 9.53824 22.0834 8.50606 21.6834 7.59546C21.2835 6.68486 20.5382 5.97043 19.6115 5.60934C18.9213 5.3404 18.1726 5.28388 17.4591 5.43778L16.4927 3.23726C16.3667 2.95018 16.1613 2.70457 15.901 2.52988C15.6405 2.35511 15.3357 2.2582 15.0221 2.2505M18.0836 6.85961C18.4152 6.83504 18.7512 6.88399 19.0669 7.00698C19.6229 7.22364 20.0701 7.6523 20.3101 8.19866C20.55 8.74502 20.5631 9.36433 20.3465 9.92035C20.2235 10.236 20.0321 10.5166 19.7897 10.7441L18.0836 6.85961ZM15.1191 3.8401C15.1077 3.81399 15.0889 3.79133 15.0652 3.77544C15.0415 3.75956 15.0138 3.75075 14.9853 3.75005C14.9568 3.74935 14.9287 3.75678 14.9042 3.77149C14.8798 3.7862 14.8601 3.80756 14.8474 3.83308L12.2214 9.10391C12.1432 9.26095 12.0123 9.38559 11.8517 9.45615L10.7072 9.95881L12.5168 14.0789L13.6613 13.5763C13.8219 13.5057 14.0022 13.4937 14.1708 13.5423L19.8288 15.1748C19.8562 15.1827 19.8852 15.1826 19.9126 15.1746C19.9399 15.1665 19.9645 15.1509 19.9832 15.1294C20.002 15.1079 20.0143 15.0816 20.0186 15.0534C20.0229 15.0252 20.0191 14.9964 20.0076 14.9703L15.1191 3.8401ZM11.7466 16.0555L13.4557 19.9468C13.4824 20.0075 13.4838 20.0763 13.4598 20.1381C13.4357 20.1999 13.3881 20.2495 13.3274 20.2762L12.4118 20.6783C12.3511 20.705 12.2823 20.7064 12.2205 20.6824C12.1587 20.6583 12.109 20.6107 12.0824 20.55L10.3733 16.6587L11.7466 16.0555ZM11.1434 14.6821L9.33384 10.562L4.52704 12.6732C4.46633 12.6999 4.4187 12.7496 4.39463 12.8113C4.37056 12.8731 4.37201 12.9419 4.39868 13.0026L6.00721 16.665C6.03387 16.7257 6.08356 16.7733 6.14534 16.7974C6.20712 16.8214 6.27593 16.82 6.33664 16.7933L11.1434 14.6821Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default SpeakerphoneIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGM,MAAA,gBAAgB,GAAGA,gBAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACxF,IAAA,QACCA,gBAAA,CAAA,aAAA,CAACC,2BAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAAD,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,k8EAAk8E,EAAG,CAAA,CAC1+E,EACT;AACH,CAAC;;;;"}
|
package/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as CheckedCircleIcon } from './CheckedCircleIcon';
|
|
|
7
7
|
export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
8
8
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
9
9
|
export { default as CircleCheckFilledIcon } from './CircleCheckFilledIcon';
|
|
10
|
+
export { default as ClockIcon } from './ClockIcon';
|
|
10
11
|
export { default as ContainerTemplateIcon } from './ContainerTemplateIcon';
|
|
11
12
|
export { default as CopyIcon } from './CopyIcon';
|
|
12
13
|
export { default as DatabaseIcon } from './DatabaseIcon';
|
|
@@ -32,6 +33,7 @@ export { default as KeyboardIcon } from './KeyboardIcon';
|
|
|
32
33
|
export { default as LandingPageTemplateIcon } from './LandingPageTemplateIcon';
|
|
33
34
|
export { default as LaptopIcon } from './LaptopIcon';
|
|
34
35
|
export { default as LinkIcon } from './LinkIcon';
|
|
36
|
+
export { default as LockIcon } from './LockIcon';
|
|
35
37
|
export { default as LoopItemTemplateIcon } from './LoopItemTemplateIcon';
|
|
36
38
|
export { default as MailIcon } from './MailIcon';
|
|
37
39
|
export { default as MessageIcon } from './MessageIcon';
|
|
@@ -57,6 +59,7 @@ export { default as SearchResultsTemplateIcon } from './SearchResultsTemplateIco
|
|
|
57
59
|
export { default as SectionTemplateIcon } from './SectionTemplateIcon';
|
|
58
60
|
export { default as SettingsIcon } from './SettingsIcon';
|
|
59
61
|
export { default as ShrinkIcon } from './ShrinkIcon';
|
|
62
|
+
export { default as SpeakerphoneIcon } from './SpeakerphoneIcon';
|
|
60
63
|
export { default as StructureIcon } from './StructureIcon';
|
|
61
64
|
export { default as TabletIcon } from './TabletIcon';
|
|
62
65
|
export { default as TabletLandscapeIcon } from './TabletLandscapeIcon';
|
package/index.esm.js
CHANGED
|
@@ -47,6 +47,11 @@ const CircleCheckFilledIcon = React.forwardRef((props, ref) => {
|
|
|
47
47
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2.25C10.7196 2.25 9.45176 2.50219 8.26884 2.99217C7.08591 3.48216 6.01108 4.20034 5.10571 5.10571C4.20034 6.01108 3.48216 7.08591 2.99217 8.26884C2.50219 9.45176 2.25 10.7196 2.25 12C2.25 13.2804 2.50219 14.5482 2.99217 15.7312C3.48216 16.9141 4.20034 17.9889 5.10571 18.8943C6.01108 19.7997 7.08591 20.5178 8.26884 21.0078C9.45176 21.4978 10.7196 21.75 12 21.75C13.2804 21.75 14.5482 21.4978 15.7312 21.0078C16.9141 20.5178 17.9889 19.7997 18.8943 18.8943C19.7997 17.9889 20.5178 16.9141 21.0078 15.7312C21.4978 14.5482 21.75 13.2804 21.75 12C21.75 10.7196 21.4978 9.45176 21.0078 8.26884C20.5178 7.08591 19.7997 6.01108 18.8943 5.10571C17.9889 4.20034 16.9141 3.48216 15.7312 2.99217C14.5482 2.50219 13.2804 2.25 12 2.25ZM16.2415 10.0563C16.5344 9.76339 16.5344 9.28852 16.2415 8.99563C15.9486 8.70273 15.4737 8.70273 15.1809 8.99563L10.7631 13.4134L8.81939 11.4697C8.5265 11.1768 8.05163 11.1768 7.75873 11.4697C7.46584 11.7626 7.46584 12.2374 7.75873 12.5303L10.2328 15.0044C10.3734 15.145 10.5642 15.224 10.7631 15.224C10.962 15.224 11.1528 15.145 11.2934 15.0044L16.2415 10.0563Z" })));
|
|
48
48
|
});
|
|
49
49
|
|
|
50
|
+
const ClockIcon = React.forwardRef((props, ref) => {
|
|
51
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
52
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", 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 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
|
|
53
|
+
});
|
|
54
|
+
|
|
50
55
|
const ContainerTemplateIcon = React.forwardRef((props, ref) => {
|
|
51
56
|
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
52
57
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.75 5.25C4.05964 5.25 3.5 5.80964 3.5 6.5V17.5C3.5 18.1904 4.05964 18.75 4.75 18.75H7.75C8.16421 18.75 8.5 19.0858 8.5 19.5C8.5 19.9142 8.16421 20.25 7.75 20.25H4.75C3.23122 20.25 2 19.0188 2 17.5V6.5C2 4.98122 3.23122 3.75 4.75 3.75H16.75C18.2688 3.75 19.5 4.98122 19.5 6.5V8C19.5 8.41421 19.1642 8.75 18.75 8.75C18.3358 8.75 18 8.41421 18 8V6.5C18 5.80964 17.4404 5.25 16.75 5.25H4.75ZM12.75 13.25C12.6676 13.25 12.5982 13.281 12.5546 13.3217C12.5128 13.3607 12.5 13.4021 12.5 13.4333V18.5667C12.5 18.5979 12.5128 18.6393 12.5546 18.6783C12.5982 18.719 12.6676 18.75 12.75 18.75H19.75C19.8324 18.75 19.9018 18.719 19.9454 18.6783C19.9872 18.6393 20 18.5979 20 18.5667V14.8333C20 14.8021 19.9872 14.7607 19.9454 14.7217C19.9018 14.681 19.8324 14.65 19.75 14.65H16.25C16.06 14.65 15.8771 14.5779 15.7383 14.4483L14.4544 13.25H12.75ZM11.5312 12.2251C11.8627 11.9156 12.3019 11.75 12.75 11.75H14.75C14.94 11.75 15.1229 11.8221 15.2617 11.9517L16.5456 13.15H19.75C20.1981 13.15 20.6373 13.3156 20.9688 13.6251C21.3021 13.9361 21.5 14.3695 21.5 14.8333V18.5667C21.5 19.0305 21.3021 19.4639 20.9688 19.7749C20.6373 20.0844 20.1981 20.25 19.75 20.25H12.75C12.3019 20.25 11.8627 20.0844 11.5312 19.7749C11.1979 19.4639 11 19.0305 11 18.5667V13.4333C11 12.9695 11.1979 12.5361 11.5312 12.2251Z" })));
|
|
@@ -184,6 +189,11 @@ const LinkIcon = React.forwardRef((props, ref) => {
|
|
|
184
189
|
React.createElement("path", { d: "M3.90579 8.16591C2.88036 9.19133 2.88036 10.8539 3.90579 11.8793L4.19479 12.1683C5.22021 13.1937 6.88276 13.1937 7.90818 12.1683L8.59463 11.4818C8.7899 11.2866 9.10648 11.2866 9.30174 11.4818C9.497 11.6771 9.497 11.9937 9.30174 12.189L8.61529 12.8754C7.19934 14.2914 4.90363 14.2914 3.48768 12.8754L3.19868 12.5864C1.78273 11.1705 1.78273 8.87475 3.19868 7.4588L3.88513 6.77235C4.0804 6.57709 4.39698 6.57709 4.59224 6.77235C4.7875 6.96761 4.7875 7.28419 4.59224 7.47946L3.90579 8.16591Z", fill: "white" })))));
|
|
185
190
|
});
|
|
186
191
|
|
|
192
|
+
const LockIcon = React.forwardRef((props, ref) => {
|
|
193
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
194
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
|
|
195
|
+
});
|
|
196
|
+
|
|
187
197
|
const LoopItemTemplateIcon = React.forwardRef((props, ref) => {
|
|
188
198
|
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
189
199
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.25003 3C3.25003 2.58578 3.58581 2.25 4.00003 2.25H12.1795C12.3784 2.25 12.5692 2.32902 12.7099 2.46967C12.8505 2.61032 12.9295 2.80109 12.9295 3L12.9295 10.5C12.9295 10.9142 12.5937 11.25 12.1795 11.25H4C3.80109 11.25 3.61032 11.171 3.46967 11.0303C3.32902 10.8897 3.25 10.6989 3.25 10.5L3.25003 3ZM4.75002 3.75L4.75 9.75H11.4295L11.4295 3.75H4.75002ZM3.25003 13.5C3.25003 13.0858 3.58581 12.75 4.00003 12.75H12.1795C12.5937 12.75 12.9295 13.0858 12.9295 13.5C12.9295 13.9142 12.5937 14.25 12.1795 14.25H4.00003C3.58581 14.25 3.25003 13.9142 3.25003 13.5Z" }),
|
|
@@ -328,6 +338,11 @@ const ShrinkIcon = React.forwardRef((props, ref) => {
|
|
|
328
338
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M0 12.75C3.62117e-08 12.3358 0.335786 12 0.75 12L9.5 12C9.91421 12 10.25 12.3358 10.25 12.75C10.25 13.1642 9.91421 13.5 9.5 13.5L0.75 13.5C0.335786 13.5 -3.62117e-08 13.1642 0 12.75Z" })));
|
|
329
339
|
});
|
|
330
340
|
|
|
341
|
+
const SpeakerphoneIcon = React.forwardRef((props, ref) => {
|
|
342
|
+
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
343
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.0221 2.2505C14.7086 2.2428 14.3993 2.32462 14.1306 2.48639C13.8619 2.64816 13.6449 2.88316 13.5049 3.16386L10.9999 8.19197L3.92384 11.2998C3.49889 11.4865 3.16549 11.8343 2.99698 12.2667C2.82848 12.6992 2.83867 13.1809 3.02531 13.6058L4.63384 17.2682C4.82048 17.6931 5.16829 18.0265 5.60074 18.195C6.0332 18.3635 6.51489 18.3533 6.93984 18.1667L8.9999 17.2619L10.709 21.1532C10.8956 21.5781 11.2434 21.9115 11.6759 22.08C12.1083 22.2485 12.59 22.2383 13.015 22.0517L13.9306 21.6496C14.3555 21.4629 14.6889 21.1151 14.8574 20.6827C15.0259 20.2502 15.0157 19.7685 14.8291 19.3436L13.12 15.4523L14.0159 15.0588L19.4131 16.616C19.7145 16.7029 20.0346 16.7021 20.3355 16.6137C20.6364 16.5253 20.9059 16.3529 21.1124 16.1168C21.3188 15.8807 21.4537 15.5907 21.5013 15.2806C21.5488 14.9707 21.507 14.6537 21.3808 14.3667M21.3808 14.3667L20.4142 12.1659C21.0102 11.7447 21.4752 11.1551 21.7441 10.4649C22.1052 9.53824 22.0834 8.50606 21.6834 7.59546C21.2835 6.68486 20.5382 5.97043 19.6115 5.60934C18.9213 5.3404 18.1726 5.28388 17.4591 5.43778L16.4927 3.23726C16.3667 2.95018 16.1613 2.70457 15.901 2.52988C15.6405 2.35511 15.3357 2.2582 15.0221 2.2505M18.0836 6.85961C18.4152 6.83504 18.7512 6.88399 19.0669 7.00698C19.6229 7.22364 20.0701 7.6523 20.3101 8.19866C20.55 8.74502 20.5631 9.36433 20.3465 9.92035C20.2235 10.236 20.0321 10.5166 19.7897 10.7441L18.0836 6.85961ZM15.1191 3.8401C15.1077 3.81399 15.0889 3.79133 15.0652 3.77544C15.0415 3.75956 15.0138 3.75075 14.9853 3.75005C14.9568 3.74935 14.9287 3.75678 14.9042 3.77149C14.8798 3.7862 14.8601 3.80756 14.8474 3.83308L12.2214 9.10391C12.1432 9.26095 12.0123 9.38559 11.8517 9.45615L10.7072 9.95881L12.5168 14.0789L13.6613 13.5763C13.8219 13.5057 14.0022 13.4937 14.1708 13.5423L19.8288 15.1748C19.8562 15.1827 19.8852 15.1826 19.9126 15.1746C19.9399 15.1665 19.9645 15.1509 19.9832 15.1294C20.002 15.1079 20.0143 15.0816 20.0186 15.0534C20.0229 15.0252 20.0191 14.9964 20.0076 14.9703L15.1191 3.8401ZM11.7466 16.0555L13.4557 19.9468C13.4824 20.0075 13.4838 20.0763 13.4598 20.1381C13.4357 20.1999 13.3881 20.2495 13.3274 20.2762L12.4118 20.6783C12.3511 20.705 12.2823 20.7064 12.2205 20.6824C12.1587 20.6583 12.109 20.6107 12.0824 20.55L10.3733 16.6587L11.7466 16.0555ZM11.1434 14.6821L9.33384 10.562L4.52704 12.6732C4.46633 12.6999 4.4187 12.7496 4.39463 12.8113C4.37056 12.8731 4.37201 12.9419 4.39868 13.0026L6.00721 16.665C6.03387 16.7257 6.08356 16.7733 6.14534 16.7974C6.20712 16.8214 6.27593 16.82 6.33664 16.7933L11.1434 14.6821Z" })));
|
|
344
|
+
});
|
|
345
|
+
|
|
331
346
|
const StructureIcon = React.forwardRef((props, ref) => {
|
|
332
347
|
return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
333
348
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.6645 3.32918C11.8757 3.22361 12.1242 3.22361 12.3353 3.32918L20.3353 7.32918C20.5894 7.45622 20.7499 7.71592 20.7499 8C20.7499 8.28408 20.5894 8.54378 20.3353 8.67082L12.3353 12.6708C12.1242 12.7764 11.8757 12.7764 11.6645 12.6708L3.66451 8.67082C3.41042 8.54378 3.24992 8.28408 3.24992 8C3.24992 7.71592 3.41042 7.45622 3.66451 7.32918L11.6645 3.32918ZM5.67697 8L11.9999 11.1615L18.3229 8L11.9999 4.83853L5.67697 8ZM3.3291 11.6646C3.51434 11.2941 3.96485 11.1439 4.33533 11.3292L11.9999 15.1615L19.6645 11.3292C20.035 11.1439 20.4855 11.2941 20.6707 11.6646C20.856 12.0351 20.7058 12.4856 20.3353 12.6708L12.3353 16.6708C12.1242 16.7764 11.8757 16.7764 11.6645 16.6708L3.66451 12.6708C3.29403 12.4856 3.14386 12.0351 3.3291 11.6646ZM3.3291 15.6646C3.51434 15.2941 3.96485 15.1439 4.33533 15.3292L11.9999 19.1615L19.6645 15.3292C20.035 15.1439 20.4855 15.2941 20.6707 15.6646C20.856 16.0351 20.7058 16.4856 20.3353 16.6708L12.3353 20.6708C12.1242 20.7764 11.8757 20.7764 11.6645 20.6708L3.66451 16.6708C3.29403 16.4856 3.14386 16.0351 3.3291 15.6646Z" })));
|
|
@@ -394,5 +409,5 @@ const XIcon = React.forwardRef((props, ref) => {
|
|
|
394
409
|
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z" })));
|
|
395
410
|
});
|
|
396
411
|
|
|
397
|
-
export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, BrushIcon, CheckedCircleIcon, ChevronDownIcon, ChevronRightIcon, CircleCheckFilledIcon, ContainerTemplateIcon, CopyIcon, DatabaseIcon, DesktopIcon, DiscountCheckFilledIcon, DotsHorizontalIcon, DotsVerticalIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandDiagonalIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LinkIcon, LoopItemTemplateIcon, MailIcon, MessageIcon, MinimizeDiagonalIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RefreshIcon, RocketIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, UploadIcon, UserIcon, WidescreenIcon, WordpressIcon, XIcon };
|
|
412
|
+
export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, BrushIcon, CheckedCircleIcon, ChevronDownIcon, ChevronRightIcon, CircleCheckFilledIcon, ClockIcon, ContainerTemplateIcon, CopyIcon, DatabaseIcon, DesktopIcon, DiscountCheckFilledIcon, DotsHorizontalIcon, DotsVerticalIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandDiagonalIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LinkIcon, LockIcon, LoopItemTemplateIcon, MailIcon, MessageIcon, MinimizeDiagonalIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RefreshIcon, RocketIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, SpeakerphoneIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, UploadIcon, UserIcon, WidescreenIcon, WordpressIcon, XIcon };
|
|
398
413
|
//# sourceMappingURL=index.esm.js.map
|