@elementor/icons 1.27.0 → 1.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CircleMinusIcon/index.d.ts +4 -0
- package/CircleMinusIcon/index.esm.js +16 -0
- package/CircleMinusIcon/index.esm.js.map +1 -0
- package/CircleMinusIcon/index.js +43 -0
- package/CircleMinusIcon/index.js.map +1 -0
- package/CircleMinusIcon/package.json +7 -0
- package/GripVerticalIcon/index.d.ts +4 -0
- package/GripVerticalIcon/index.esm.js +16 -0
- package/GripVerticalIcon/index.esm.js.map +1 -0
- package/GripVerticalIcon/index.js +43 -0
- package/GripVerticalIcon/index.js.map +1 -0
- package/GripVerticalIcon/package.json +7 -0
- package/index.d.ts +2 -0
- package/index.esm.js +23 -1
- package/index.esm.js.map +1 -1
- package/index.js +24 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const CircleMinusIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
fillRule: "evenodd",
|
|
9
|
+
clipRule: "evenodd",
|
|
10
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { CircleMinusIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/CircleMinusIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst CircleMinusIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default CircleMinusIcon;\n"],"names":[],"mappings":";;;AAGA,MAAM,eAAkB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC1F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var React = require('react');
|
|
6
|
+
var SvgIcon = require('@elementor/ui/SvgIcon');
|
|
7
|
+
|
|
8
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
|
+
|
|
10
|
+
function _interopNamespaceCompat(e) {
|
|
11
|
+
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
12
|
+
var n = Object.create(null);
|
|
13
|
+
if (e) {
|
|
14
|
+
Object.keys(e).forEach(function (k) {
|
|
15
|
+
if (k !== 'default') {
|
|
16
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return e[k]; }
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
n.default = e;
|
|
25
|
+
return Object.freeze(n);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceCompat(React);
|
|
29
|
+
var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
|
|
30
|
+
|
|
31
|
+
const CircleMinusIcon = React__namespace.forwardRef((props, ref) => {
|
|
32
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
33
|
+
"path",
|
|
34
|
+
{
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
clipRule: "evenodd",
|
|
37
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = CircleMinusIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/CircleMinusIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst CircleMinusIcon = React.forwardRef< SVGSVGElement, SvgIconProps >( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default CircleMinusIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAM,eAAkB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC1F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const GripVerticalIcon = 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.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export { GripVerticalIcon as default };
|
|
16
|
+
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../../src/GripVerticalIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst GripVerticalIcon = 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.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default GripVerticalIcon;\n"],"names":[],"mappings":";;;AAGA,MAAM,gBAAmB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,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 GripVerticalIcon = 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.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z"
|
|
38
|
+
}
|
|
39
|
+
));
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
exports.default = GripVerticalIcon;
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../src/GripVerticalIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst GripVerticalIcon = 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.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default GripVerticalIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,MAAM,gBAAmB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
|
package/index.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export { default as ChevronLeftIcon } from './ChevronLeftIcon';
|
|
|
44
44
|
export { default as ChevronRightIcon } from './ChevronRightIcon';
|
|
45
45
|
export { default as ChevronUpIcon } from './ChevronUpIcon';
|
|
46
46
|
export { default as CircleCheckFilledIcon } from './CircleCheckFilledIcon';
|
|
47
|
+
export { default as CircleMinusIcon } from './CircleMinusIcon';
|
|
47
48
|
export { default as CirclePlusIcon } from './CirclePlusIcon';
|
|
48
49
|
export { default as CircleXIcon } from './CircleXIcon';
|
|
49
50
|
export { default as ClearIcon } from './ClearIcon';
|
|
@@ -82,6 +83,7 @@ export { default as FilesIcon } from './FilesIcon';
|
|
|
82
83
|
export { default as FolderIcon } from './FolderIcon';
|
|
83
84
|
export { default as FooterTemplateIcon } from './FooterTemplateIcon';
|
|
84
85
|
export { default as GridDotsIcon } from './GridDotsIcon';
|
|
86
|
+
export { default as GripVerticalIcon } from './GripVerticalIcon';
|
|
85
87
|
export { default as HeaderTemplateIcon } from './HeaderTemplateIcon';
|
|
86
88
|
export { default as HeadsetIcon } from './HeadsetIcon';
|
|
87
89
|
export { default as HeartHandShakeIcon } from './HeartHandShakeIcon';
|
package/index.esm.js
CHANGED
|
@@ -507,6 +507,17 @@ const CircleCheckFilledIcon = React.forwardRef((props, ref) => {
|
|
|
507
507
|
));
|
|
508
508
|
});
|
|
509
509
|
|
|
510
|
+
const CircleMinusIcon = React.forwardRef((props, ref) => {
|
|
511
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
512
|
+
"path",
|
|
513
|
+
{
|
|
514
|
+
fillRule: "evenodd",
|
|
515
|
+
clipRule: "evenodd",
|
|
516
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
517
|
+
}
|
|
518
|
+
));
|
|
519
|
+
});
|
|
520
|
+
|
|
510
521
|
const CirclePlusIcon = React.forwardRef((props, ref) => {
|
|
511
522
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
512
523
|
"path",
|
|
@@ -925,6 +936,17 @@ const GridDotsIcon = React.forwardRef((props, ref) => {
|
|
|
925
936
|
));
|
|
926
937
|
});
|
|
927
938
|
|
|
939
|
+
const GripVerticalIcon = React.forwardRef((props, ref) => {
|
|
940
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
941
|
+
"path",
|
|
942
|
+
{
|
|
943
|
+
fillRule: "evenodd",
|
|
944
|
+
clipRule: "evenodd",
|
|
945
|
+
d: "M7.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z"
|
|
946
|
+
}
|
|
947
|
+
));
|
|
948
|
+
});
|
|
949
|
+
|
|
928
950
|
const HeaderTemplateIcon = React.forwardRef((props, ref) => {
|
|
929
951
|
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
930
952
|
"path",
|
|
@@ -2182,5 +2204,5 @@ const XIcon = React.forwardRef((props, ref) => {
|
|
|
2182
2204
|
));
|
|
2183
2205
|
});
|
|
2184
2206
|
|
|
2185
|
-
export { AIIcon, AcademyIcon, AdjustmentsHorizontalIcon, AdjustmentsIcon, AffiliatesIcon, AlertCircleIcon, AlertOctagonFilledIcon, AlertTriangleFilledIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifiedIcon, AlignLeftIcon, AlignRightIcon, AppsIcon, ArchiveTemplateIcon, ArrowBackIcon, ArrowBarBothIcon, ArrowDownSmallIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpRightIcon, ArrowUpSmallIcon, ArrowsLeftRightIcon, ArrowsMaximizeIcon, ArrowsMoveHorizontalIcon, ArrowsMoveVerticalIcon, ArrowsRightLeftIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CirclePlusIcon, CircleXIcon, ClearIcon, ClockIcon, CloudBackupIcon, CloudIcon, CodeIcon, ColorFilterIcon, ColorSwatchIcon, ContainerTemplateIcon, CopyIcon, CopyPageIcon, CornerUpRightIcon, CreditCardIcon, CrownIcon, DatabaseIcon, DesktopIcon, DetachIcon, DiamondIcon, DiscountCheckFilledIcon, DomainIcon, DotsHorizontalIcon, DotsVerticalIcon, DownloadIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandBottomIcon, ExpandDiagonalIcon, ExpandIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileReportIcon, FilesIcon, FolderIcon, FooterTemplateIcon, GridDotsIcon, HeaderTemplateIcon, HeadsetIcon, HeartHandShakeIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleFilledIcon, InfoCircleIcon, ItalicIcon, JustifyBottomIcon, JustifyCenterIcon, JustifyDistributeVerticalIcon, JustifySpaceAroundVerticalIcon, JustifySpaceBetweenVerticalIcon, JustifyTopIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LayoutAlignCenterIcon, LayoutAlignLeftIcon, LayoutAlignRightIcon, LayoutDistributeVerticalIcon, LetterAIcon, LetterCaseIcon, LetterCaseLowerIcon, LetterCaseUpperIcon, LetterXIcon, LetterYIcon, LibraryIcon, LikeIcon, LinkIcon, ListIcon, Loader2Icon, LockFilledIcon, LockIcon, LogoutIcon, LoopItemTemplateIcon, MailIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RouterIcon, SFTPIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SelectorIcon, SendIcon, ServerCogIcon, SettingsIcon, ShieldCheckIcon, ShieldIcon, ShrinkIcon, SideAllIcon, SideBottomIcon, SideLeftIcon, SideRightIcon, SideTopIcon, SiteLockIcon, SiteLockOpenIcon, SocialIcon, SpeakerphoneIcon, StarIcon, StarOffIcon, StrikethroughIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, TextDirectionLtrIcon, TextDirectionRtlIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2207
|
+
export { AIIcon, AcademyIcon, AdjustmentsHorizontalIcon, AdjustmentsIcon, AffiliatesIcon, AlertCircleIcon, AlertOctagonFilledIcon, AlertTriangleFilledIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifiedIcon, AlignLeftIcon, AlignRightIcon, AppsIcon, ArchiveTemplateIcon, ArrowBackIcon, ArrowBarBothIcon, ArrowDownSmallIcon, ArrowForwardIcon, ArrowLeftIcon, ArrowRightIcon, ArrowUpRightIcon, ArrowUpSmallIcon, ArrowsLeftRightIcon, ArrowsMaximizeIcon, ArrowsMoveHorizontalIcon, ArrowsMoveVerticalIcon, ArrowsRightLeftIcon, BanIcon, BoltIcon, BorderCornersIcon, BrandFacebookIcon, BriefcaseIcon, BrushIcon, CalendarDollarIcon, CalendarIcon, CameraIcon, CartIcon, ChatbotIcon, CheckIcon, CheckedCircleIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleCheckFilledIcon, CircleMinusIcon, CirclePlusIcon, CircleXIcon, ClearIcon, ClockIcon, CloudBackupIcon, CloudIcon, CodeIcon, ColorFilterIcon, ColorSwatchIcon, ContainerTemplateIcon, CopyIcon, CopyPageIcon, CornerUpRightIcon, CreditCardIcon, CrownIcon, DatabaseIcon, DesktopIcon, DetachIcon, DiamondIcon, DiscountCheckFilledIcon, DomainIcon, DotsHorizontalIcon, DotsVerticalIcon, DownloadIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandBottomIcon, ExpandDiagonalIcon, ExpandIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileReportIcon, FilesIcon, FolderIcon, FooterTemplateIcon, GridDotsIcon, GripVerticalIcon, HeaderTemplateIcon, HeadsetIcon, HeartHandShakeIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleFilledIcon, InfoCircleIcon, ItalicIcon, JustifyBottomIcon, JustifyCenterIcon, JustifyDistributeVerticalIcon, JustifySpaceAroundVerticalIcon, JustifySpaceBetweenVerticalIcon, JustifyTopIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LayoutAlignCenterIcon, LayoutAlignLeftIcon, LayoutAlignRightIcon, LayoutDistributeVerticalIcon, LetterAIcon, LetterCaseIcon, LetterCaseLowerIcon, LetterCaseUpperIcon, LetterXIcon, LetterYIcon, LibraryIcon, LikeIcon, LinkIcon, ListIcon, Loader2Icon, LockFilledIcon, LockIcon, LogoutIcon, LoopItemTemplateIcon, MailIcon, MenuIcon, MessageIcon, MessageLinesIcon, MinimizeDiagonalIcon, MinusIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, NotificationFilledIcon, NotificationIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PencilIcon, PhotoIcon, PinIcon, PinnedOffIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PointFilledIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RadiusBottomLeftIcon, RadiusBottomRightIcon, RadiusTopLeftIcon, RadiusTopRightIcon, RefreshIcon, RepeatIcon, ResetIcon, RocketIcon, RouterIcon, SFTPIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SelectorIcon, SendIcon, ServerCogIcon, SettingsIcon, ShieldCheckIcon, ShieldIcon, ShrinkIcon, SideAllIcon, SideBottomIcon, SideLeftIcon, SideRightIcon, SideTopIcon, SiteLockIcon, SiteLockOpenIcon, SocialIcon, SpeakerphoneIcon, StarIcon, StarOffIcon, StrikethroughIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, TextDirectionLtrIcon, TextDirectionRtlIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UnderlineIcon, UpgradeIcon, UploadIcon, UserHeartIcon, UserIcon, UserPlusIcon, UsersIcon, WalletIcon, WebsiteIcon, WhatsappIcon, WidescreenIcon, WidgetsIcon, WordpressIcon, WorldIcon, XIcon };
|
|
2186
2208
|
//# sourceMappingURL=index.esm.js.map
|