@wix/wix-ui-icons-common 3.102.0 → 3.103.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/dist/cjs/odeditor/general/dist/components/Accessibility.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/AccessibilitySmall.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/LayoutTwoThirds.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/LayoutTwoThirdsSmall.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/MoreFilled.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/MoreFilledSmall.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/SiteSearch.js +37 -0
- package/dist/cjs/odeditor/general/dist/components/SiteSearchSmall.js +37 -0
- package/dist/cjs/odeditor/general/dist/index.js +24 -0
- package/dist/cjs/odeditor/general/metadata.js +28 -0
- package/dist/esm/odeditor/general/dist/components/Accessibility.js +7 -0
- package/dist/esm/odeditor/general/dist/components/AccessibilitySmall.js +7 -0
- package/dist/esm/odeditor/general/dist/components/LayoutTwoThirds.js +7 -0
- package/dist/esm/odeditor/general/dist/components/LayoutTwoThirdsSmall.js +7 -0
- package/dist/esm/odeditor/general/dist/components/MoreFilled.js +7 -0
- package/dist/esm/odeditor/general/dist/components/MoreFilledSmall.js +7 -0
- package/dist/esm/odeditor/general/dist/components/SiteSearch.js +7 -0
- package/dist/esm/odeditor/general/dist/components/SiteSearchSmall.js +7 -0
- package/dist/esm/odeditor/general/dist/index.js +1252 -1236
- package/dist/esm/odeditor/general/metadata.js +28 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/odeditor/general/dist/components/Accessibility.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/Accessibility.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/AccessibilitySmall.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/AccessibilitySmall.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/LayoutTwoThirds.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/LayoutTwoThirds.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/LayoutTwoThirdsSmall.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/LayoutTwoThirdsSmall.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/MoreFilled.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/MoreFilled.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/MoreFilledSmall.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/MoreFilledSmall.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/SiteSearch.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/SiteSearch.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/components/SiteSearchSmall.d.ts +7 -0
- package/dist/types/odeditor/general/dist/components/SiteSearchSmall.d.ts.map +1 -0
- package/dist/types/odeditor/general/dist/index.d.ts +8 -0
- package/dist/types/odeditor/general/dist/index.d.ts.map +1 -1
- package/dist/types/odeditor/general/metadata.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var Accessibility_exports = {};
|
|
30
|
+
__export(Accessibility_exports, {
|
|
31
|
+
default: () => Accessibility_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(Accessibility_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const Accessibility = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M12 4.5a2.5 2.5 0 0 1 1.783 4.25h4.467a.75.75 0 0 1 0 1.5h-3.748l.497 8.456a.75.75 0 0 1-1.498.088L13.278 15h-2.556l-.223 3.794a.75.75 0 0 1-1.498-.088l.497-8.456H5.75a.75.75 0 0 1 0-1.5h4.467A2.5 2.5 0 0 1 12 4.5Zm-1.001 5.794L10.81 13.5h2.38L13 10.294v-.044h-2.002v.044ZM12 6c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
36
|
+
Accessibility.displayName = "Accessibility";
|
|
37
|
+
var Accessibility_default = Accessibility;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var AccessibilitySmall_exports = {};
|
|
30
|
+
__export(AccessibilitySmall_exports, {
|
|
31
|
+
default: () => AccessibilitySmall_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(AccessibilitySmall_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const AccessibilitySmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M9 2.5c1.1 0 2 .9 2 2 0 .472-.166.907-.442 1.25h3.692a.75.75 0 0 1 0 1.5h-2.749l.497 7.45a.75.75 0 1 1-1.496.1l-.22-3.3H7.718l-.22 3.3a.75.75 0 1 1-1.496-.1l.497-7.45H3.75a.75.75 0 0 1 0-1.5h3.692A1.988 1.988 0 0 1 7 4.5c0-1.1.9-2 2-2ZM7.998 7.3l-.18 2.7h2.364l-.18-2.7-.001-.05H7.999v.05ZM9 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5S9.28 4 9 4Z" }));
|
|
36
|
+
AccessibilitySmall.displayName = "AccessibilitySmall";
|
|
37
|
+
var AccessibilitySmall_default = AccessibilitySmall;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var LayoutTwoThirds_exports = {};
|
|
30
|
+
__export(LayoutTwoThirds_exports, {
|
|
31
|
+
default: () => LayoutTwoThirds_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(LayoutTwoThirds_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const LayoutTwoThirds = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M7 18c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H7Zm10-1.5c.28 0 .5-.22.5-.5V8c0-.28-.22-.5-.5-.5h-2.5v9H17Zm-4 0v-9H7c-.28 0-.5.22-.5.5v8c0 .28.22.5.5.5h6Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
36
|
+
LayoutTwoThirds.displayName = "LayoutTwoThirds";
|
|
37
|
+
var LayoutTwoThirds_default = LayoutTwoThirds;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var LayoutTwoThirdsSmall_exports = {};
|
|
30
|
+
__export(LayoutTwoThirdsSmall_exports, {
|
|
31
|
+
default: () => LayoutTwoThirdsSmall_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(LayoutTwoThirdsSmall_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const LayoutTwoThirdsSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M4.5 14c-.83 0-1.5-.67-1.5-1.5v-7C3 4.67 3.67 4 4.5 4h9c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-9Zm9-1.5v-7h-2v7h2Zm-3.5 0v-7H4.5v7H10Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h18v18H0z" }))));
|
|
36
|
+
LayoutTwoThirdsSmall.displayName = "LayoutTwoThirdsSmall";
|
|
37
|
+
var LayoutTwoThirdsSmall_default = LayoutTwoThirdsSmall;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var MoreFilled_exports = {};
|
|
30
|
+
__export(MoreFilled_exports, {
|
|
31
|
+
default: () => MoreFilled_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(MoreFilled_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const MoreFilled = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M7.25 10.25a1.75 1.75 0 1 1-.001 3.501 1.75 1.75 0 0 1 .001-3.501Zm4.75 0a1.75 1.75 0 1 1-.001 3.501A1.75 1.75 0 0 1 12 10.25Zm4.75 0a1.75 1.75 0 1 1-.001 3.501 1.75 1.75 0 0 1 .001-3.501Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
36
|
+
MoreFilled.displayName = "MoreFilled";
|
|
37
|
+
var MoreFilled_default = MoreFilled;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var MoreFilledSmall_exports = {};
|
|
30
|
+
__export(MoreFilledSmall_exports, {
|
|
31
|
+
default: () => MoreFilledSmall_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(MoreFilledSmall_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const MoreFilledSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M5 7.75c.688 0 1.25.562 1.25 1.25S5.688 10.25 5 10.25 3.75 9.688 3.75 9 4.312 7.75 5 7.75Zm4 0c.688 0 1.25.562 1.25 1.25S9.688 10.25 9 10.25 7.75 9.688 7.75 9 8.312 7.75 9 7.75Zm4 0c.688 0 1.25.562 1.25 1.25s-.562 1.25-1.25 1.25-1.25-.562-1.25-1.25.562-1.25 1.25-1.25Z" }));
|
|
36
|
+
MoreFilledSmall.displayName = "MoreFilledSmall";
|
|
37
|
+
var MoreFilledSmall_default = MoreFilledSmall;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var SiteSearch_exports = {};
|
|
30
|
+
__export(SiteSearch_exports, {
|
|
31
|
+
default: () => SiteSearch_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(SiteSearch_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const SiteSearch = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M13.5 11a3.504 3.504 0 0 1 3.3 4.664l2.344 1.447a.751.751 0 0 1-.788 1.278l-2.35-1.451A3.488 3.488 0 0 1 13.5 18c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5Zm0 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z" }), /* @__PURE__ */ React.createElement("path", { d: "M17.5 5.5a2 2 0 0 1 2 2v7.25a.75.75 0 0 1-1.5 0V10H6v5.5a.5.5 0 0 0 .5.5h2.25a.75.75 0 0 1 0 1.5H6.5a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h11ZM6.5 7a.5.5 0 0 0-.5.5v1h12v-1a.5.5 0 0 0-.5-.5h-11Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
36
|
+
SiteSearch.displayName = "SiteSearch";
|
|
37
|
+
var SiteSearch_default = SiteSearch;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var SiteSearchSmall_exports = {};
|
|
30
|
+
__export(SiteSearchSmall_exports, {
|
|
31
|
+
default: () => SiteSearchSmall_default
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(SiteSearchSmall_exports);
|
|
34
|
+
var React = __toESM(require("react"));
|
|
35
|
+
const SiteSearchSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M10 8.5c1.65 0 3 1.35 3 3 0 .278-.042.546-.113.802l2.239 1.3a.75.75 0 1 1-.752 1.296l-2.24-1.297A2.99 2.99 0 0 1 10 14.5c-1.65 0-3-1.35-3-3s1.35-3 3-3Zm0 1.5c-.83 0-1.5.67-1.5 1.5S9.17 13 10 13s1.5-.67 1.5-1.5S10.83 10 10 10Z" }), /* @__PURE__ */ React.createElement("path", { d: "M13.75 3c.964 0 1.75.786 1.75 1.75v6.5a.75.75 0 0 1-1.5 0V7.5H4v4.75c0 .136.114.25.25.25h1.5a.75.75 0 0 1 0 1.5h-1.5c-.964 0-1.75-.786-1.75-1.75v-7.5C2.5 3.786 3.286 3 4.25 3h9.5Zm-9.5 1.5a.253.253 0 0 0-.25.25V6h10V4.75a.253.253 0 0 0-.25-.25h-9.5Z" }));
|
|
36
|
+
SiteSearchSmall.displayName = "SiteSearchSmall";
|
|
37
|
+
var SiteSearchSmall_default = SiteSearchSmall;
|
|
@@ -28,6 +28,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
29
|
var dist_exports = {};
|
|
30
30
|
__export(dist_exports, {
|
|
31
|
+
Accessibility: () => import_Accessibility.default,
|
|
32
|
+
AccessibilitySmall: () => import_AccessibilitySmall.default,
|
|
31
33
|
Add: () => import_Add.default,
|
|
32
34
|
AddChannel: () => import_AddChannel.default,
|
|
33
35
|
AddChannelSmall: () => import_AddChannelSmall.default,
|
|
@@ -330,6 +332,8 @@ __export(dist_exports, {
|
|
|
330
332
|
LayoutTwoColumnsSmall: () => import_LayoutTwoColumnsSmall.default,
|
|
331
333
|
LayoutTwoColumnsSplit: () => import_LayoutTwoColumnsSplit.default,
|
|
332
334
|
LayoutTwoColumnsSplitSmall: () => import_LayoutTwoColumnsSplitSmall.default,
|
|
335
|
+
LayoutTwoThirds: () => import_LayoutTwoThirds.default,
|
|
336
|
+
LayoutTwoThirdsSmall: () => import_LayoutTwoThirdsSmall.default,
|
|
333
337
|
LeftAlignmentInner: () => import_LeftAlignmentInner.default,
|
|
334
338
|
LeftAlignmentInnerSmall: () => import_LeftAlignmentInnerSmall.default,
|
|
335
339
|
LineDifferentWidth: () => import_LineDifferentWidth.default,
|
|
@@ -389,6 +393,8 @@ __export(dist_exports, {
|
|
|
389
393
|
Mobile: () => import_Mobile.default,
|
|
390
394
|
MobileSmall: () => import_MobileSmall.default,
|
|
391
395
|
More: () => import_More.default,
|
|
396
|
+
MoreFilled: () => import_MoreFilled.default,
|
|
397
|
+
MoreFilledSmall: () => import_MoreFilledSmall.default,
|
|
392
398
|
MoreSmall: () => import_MoreSmall.default,
|
|
393
399
|
Music: () => import_Music.default,
|
|
394
400
|
MusicSmall: () => import_MusicSmall.default,
|
|
@@ -513,6 +519,8 @@ __export(dist_exports, {
|
|
|
513
519
|
Shutterstock: () => import_Shutterstock.default,
|
|
514
520
|
ShutterstockSmall: () => import_ShutterstockSmall.default,
|
|
515
521
|
Site: () => import_Site.default,
|
|
522
|
+
SiteSearch: () => import_SiteSearch.default,
|
|
523
|
+
SiteSearchSmall: () => import_SiteSearchSmall.default,
|
|
516
524
|
SiteSmall: () => import_SiteSmall.default,
|
|
517
525
|
Slack: () => import_Slack.default,
|
|
518
526
|
SlackSmall: () => import_SlackSmall.default,
|
|
@@ -648,6 +656,8 @@ __export(dist_exports, {
|
|
|
648
656
|
YoutubeSmall: () => import_YoutubeSmall.default
|
|
649
657
|
});
|
|
650
658
|
module.exports = __toCommonJS(dist_exports);
|
|
659
|
+
var import_Accessibility = __toESM(require("./components/Accessibility"));
|
|
660
|
+
var import_AccessibilitySmall = __toESM(require("./components/AccessibilitySmall"));
|
|
651
661
|
var import_Add = __toESM(require("./components/Add"));
|
|
652
662
|
var import_AddChannel = __toESM(require("./components/AddChannel"));
|
|
653
663
|
var import_AddChannelSmall = __toESM(require("./components/AddChannelSmall"));
|
|
@@ -950,6 +960,8 @@ var import_LayoutTwoColumns = __toESM(require("./components/LayoutTwoColumns"));
|
|
|
950
960
|
var import_LayoutTwoColumnsSmall = __toESM(require("./components/LayoutTwoColumnsSmall"));
|
|
951
961
|
var import_LayoutTwoColumnsSplit = __toESM(require("./components/LayoutTwoColumnsSplit"));
|
|
952
962
|
var import_LayoutTwoColumnsSplitSmall = __toESM(require("./components/LayoutTwoColumnsSplitSmall"));
|
|
963
|
+
var import_LayoutTwoThirds = __toESM(require("./components/LayoutTwoThirds"));
|
|
964
|
+
var import_LayoutTwoThirdsSmall = __toESM(require("./components/LayoutTwoThirdsSmall"));
|
|
953
965
|
var import_LeftAlignmentInner = __toESM(require("./components/LeftAlignmentInner"));
|
|
954
966
|
var import_LeftAlignmentInnerSmall = __toESM(require("./components/LeftAlignmentInnerSmall"));
|
|
955
967
|
var import_LineDifferentWidth = __toESM(require("./components/LineDifferentWidth"));
|
|
@@ -1009,6 +1021,8 @@ var import_MirrorVerticalSmall = __toESM(require("./components/MirrorVerticalSma
|
|
|
1009
1021
|
var import_Mobile = __toESM(require("./components/Mobile"));
|
|
1010
1022
|
var import_MobileSmall = __toESM(require("./components/MobileSmall"));
|
|
1011
1023
|
var import_More = __toESM(require("./components/More"));
|
|
1024
|
+
var import_MoreFilled = __toESM(require("./components/MoreFilled"));
|
|
1025
|
+
var import_MoreFilledSmall = __toESM(require("./components/MoreFilledSmall"));
|
|
1012
1026
|
var import_MoreSmall = __toESM(require("./components/MoreSmall"));
|
|
1013
1027
|
var import_Music = __toESM(require("./components/Music"));
|
|
1014
1028
|
var import_MusicSmall = __toESM(require("./components/MusicSmall"));
|
|
@@ -1133,6 +1147,8 @@ var import_ShippingSmall = __toESM(require("./components/ShippingSmall"));
|
|
|
1133
1147
|
var import_Shutterstock = __toESM(require("./components/Shutterstock"));
|
|
1134
1148
|
var import_ShutterstockSmall = __toESM(require("./components/ShutterstockSmall"));
|
|
1135
1149
|
var import_Site = __toESM(require("./components/Site"));
|
|
1150
|
+
var import_SiteSearch = __toESM(require("./components/SiteSearch"));
|
|
1151
|
+
var import_SiteSearchSmall = __toESM(require("./components/SiteSearchSmall"));
|
|
1136
1152
|
var import_SiteSmall = __toESM(require("./components/SiteSmall"));
|
|
1137
1153
|
var import_Slack = __toESM(require("./components/Slack"));
|
|
1138
1154
|
var import_SlackSmall = __toESM(require("./components/SlackSmall"));
|
|
@@ -1268,6 +1284,8 @@ var import_YoutubeFilledSmall = __toESM(require("./components/YoutubeFilledSmall
|
|
|
1268
1284
|
var import_YoutubeSmall = __toESM(require("./components/YoutubeSmall"));
|
|
1269
1285
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1270
1286
|
0 && (module.exports = {
|
|
1287
|
+
Accessibility,
|
|
1288
|
+
AccessibilitySmall,
|
|
1271
1289
|
Add,
|
|
1272
1290
|
AddChannel,
|
|
1273
1291
|
AddChannelSmall,
|
|
@@ -1570,6 +1588,8 @@ var import_YoutubeSmall = __toESM(require("./components/YoutubeSmall"));
|
|
|
1570
1588
|
LayoutTwoColumnsSmall,
|
|
1571
1589
|
LayoutTwoColumnsSplit,
|
|
1572
1590
|
LayoutTwoColumnsSplitSmall,
|
|
1591
|
+
LayoutTwoThirds,
|
|
1592
|
+
LayoutTwoThirdsSmall,
|
|
1573
1593
|
LeftAlignmentInner,
|
|
1574
1594
|
LeftAlignmentInnerSmall,
|
|
1575
1595
|
LineDifferentWidth,
|
|
@@ -1629,6 +1649,8 @@ var import_YoutubeSmall = __toESM(require("./components/YoutubeSmall"));
|
|
|
1629
1649
|
Mobile,
|
|
1630
1650
|
MobileSmall,
|
|
1631
1651
|
More,
|
|
1652
|
+
MoreFilled,
|
|
1653
|
+
MoreFilledSmall,
|
|
1632
1654
|
MoreSmall,
|
|
1633
1655
|
Music,
|
|
1634
1656
|
MusicSmall,
|
|
@@ -1753,6 +1775,8 @@ var import_YoutubeSmall = __toESM(require("./components/YoutubeSmall"));
|
|
|
1753
1775
|
Shutterstock,
|
|
1754
1776
|
ShutterstockSmall,
|
|
1755
1777
|
Site,
|
|
1778
|
+
SiteSearch,
|
|
1779
|
+
SiteSearchSmall,
|
|
1756
1780
|
SiteSmall,
|
|
1757
1781
|
Slack,
|
|
1758
1782
|
SlackSmall,
|
|
@@ -1813,6 +1813,34 @@ const generalIconsMetadata = [
|
|
|
1813
1813
|
description: "Button - connects or links to Shutterstock account",
|
|
1814
1814
|
tags: ["social"],
|
|
1815
1815
|
sizes: { "18": "ShutterstockSmall", "24": "Shutterstock" }
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
title: "LayoutTwoThirds",
|
|
1819
|
+
category: "Layout and alignment",
|
|
1820
|
+
description: "Button - sets layout to two thirds of the width",
|
|
1821
|
+
tags: ["Two thirds", "layout", "container"],
|
|
1822
|
+
sizes: { "18": "LayoutTwoThirdsSmall", "24": "LayoutTwoThirds" }
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
title: "MoreFilled",
|
|
1826
|
+
category: "Actions",
|
|
1827
|
+
description: "Button - displays more actions",
|
|
1828
|
+
tags: ["dots", "three"],
|
|
1829
|
+
sizes: { "18": "MoreFilledSmall", "24": "MoreFilled" }
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
title: "Accessibility",
|
|
1833
|
+
category: "Web Apps & Technology",
|
|
1834
|
+
description: "Button - opens accessibility settings",
|
|
1835
|
+
tags: ["a11y"],
|
|
1836
|
+
sizes: { "18": "AccessibilitySmall", "24": "Accessibility" }
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
title: "SiteSearch",
|
|
1840
|
+
category: "Web Apps & Technology",
|
|
1841
|
+
description: "Button - searches for a site or a content in a site",
|
|
1842
|
+
tags: ["browser", "look", "window"],
|
|
1843
|
+
sizes: { "18": "SiteSearchSmall", "24": "SiteSearch" }
|
|
1816
1844
|
}
|
|
1817
1845
|
];
|
|
1818
1846
|
var metadata_default = generalIconsMetadata;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const Accessibility = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M12 4.5a2.5 2.5 0 0 1 1.783 4.25h4.467a.75.75 0 0 1 0 1.5h-3.748l.497 8.456a.75.75 0 0 1-1.498.088L13.278 15h-2.556l-.223 3.794a.75.75 0 0 1-1.498-.088l.497-8.456H5.75a.75.75 0 0 1 0-1.5h4.467A2.5 2.5 0 0 1 12 4.5Zm-1.001 5.794L10.81 13.5h2.38L13 10.294v-.044h-2.002v.044ZM12 6c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
3
|
+
Accessibility.displayName = "Accessibility";
|
|
4
|
+
var Accessibility_default = Accessibility;
|
|
5
|
+
export {
|
|
6
|
+
Accessibility_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const AccessibilitySmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M9 2.5c1.1 0 2 .9 2 2 0 .472-.166.907-.442 1.25h3.692a.75.75 0 0 1 0 1.5h-2.749l.497 7.45a.75.75 0 1 1-1.496.1l-.22-3.3H7.718l-.22 3.3a.75.75 0 1 1-1.496-.1l.497-7.45H3.75a.75.75 0 0 1 0-1.5h3.692A1.988 1.988 0 0 1 7 4.5c0-1.1.9-2 2-2ZM7.998 7.3l-.18 2.7h2.364l-.18-2.7-.001-.05H7.999v.05ZM9 4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5S9.28 4 9 4Z" }));
|
|
3
|
+
AccessibilitySmall.displayName = "AccessibilitySmall";
|
|
4
|
+
var AccessibilitySmall_default = AccessibilitySmall;
|
|
5
|
+
export {
|
|
6
|
+
AccessibilitySmall_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const LayoutTwoThirds = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M7 18c-1.1 0-2-.9-2-2V8c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2v8c0 1.1-.9 2-2 2H7Zm10-1.5c.28 0 .5-.22.5-.5V8c0-.28-.22-.5-.5-.5h-2.5v9H17Zm-4 0v-9H7c-.28 0-.5.22-.5.5v8c0 .28.22.5.5.5h6Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
3
|
+
LayoutTwoThirds.displayName = "LayoutTwoThirds";
|
|
4
|
+
var LayoutTwoThirds_default = LayoutTwoThirds;
|
|
5
|
+
export {
|
|
6
|
+
LayoutTwoThirds_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const LayoutTwoThirdsSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M4.5 14c-.83 0-1.5-.67-1.5-1.5v-7C3 4.67 3.67 4 4.5 4h9c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5h-9Zm9-1.5v-7h-2v7h2Zm-3.5 0v-7H4.5v7H10Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h18v18H0z" }))));
|
|
3
|
+
LayoutTwoThirdsSmall.displayName = "LayoutTwoThirdsSmall";
|
|
4
|
+
var LayoutTwoThirdsSmall_default = LayoutTwoThirdsSmall;
|
|
5
|
+
export {
|
|
6
|
+
LayoutTwoThirdsSmall_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const MoreFilled = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M7.25 10.25a1.75 1.75 0 1 1-.001 3.501 1.75 1.75 0 0 1 .001-3.501Zm4.75 0a1.75 1.75 0 1 1-.001 3.501A1.75 1.75 0 0 1 12 10.25Zm4.75 0a1.75 1.75 0 1 1-.001 3.501 1.75 1.75 0 0 1 .001-3.501Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
3
|
+
MoreFilled.displayName = "MoreFilled";
|
|
4
|
+
var MoreFilled_default = MoreFilled;
|
|
5
|
+
export {
|
|
6
|
+
MoreFilled_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const MoreFilledSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M5 7.75c.688 0 1.25.562 1.25 1.25S5.688 10.25 5 10.25 3.75 9.688 3.75 9 4.312 7.75 5 7.75Zm4 0c.688 0 1.25.562 1.25 1.25S9.688 10.25 9 10.25 7.75 9.688 7.75 9 8.312 7.75 9 7.75Zm4 0c.688 0 1.25.562 1.25 1.25s-.562 1.25-1.25 1.25-1.25-.562-1.25-1.25.562-1.25 1.25-1.25Z" }));
|
|
3
|
+
MoreFilledSmall.displayName = "MoreFilledSmall";
|
|
4
|
+
var MoreFilledSmall_default = MoreFilledSmall;
|
|
5
|
+
export {
|
|
6
|
+
MoreFilledSmall_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const SiteSearch = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 24 24", fill: "currentColor", width: size || "24", height: size || "24", ...props }, /* @__PURE__ */ React.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ React.createElement("path", { d: "M13.5 11a3.504 3.504 0 0 1 3.3 4.664l2.344 1.447a.751.751 0 0 1-.788 1.278l-2.35-1.451A3.488 3.488 0 0 1 13.5 18c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5Zm0 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2Z" }), /* @__PURE__ */ React.createElement("path", { d: "M17.5 5.5a2 2 0 0 1 2 2v7.25a.75.75 0 0 1-1.5 0V10H6v5.5a.5.5 0 0 0 .5.5h2.25a.75.75 0 0 1 0 1.5H6.5a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h11ZM6.5 7a.5.5 0 0 0-.5.5v1h12v-1a.5.5 0 0 0-.5-.5h-11Z" })), /* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", { id: "a" }, /* @__PURE__ */ React.createElement("path", { d: "M0 0h24v24H0z" }))));
|
|
3
|
+
SiteSearch.displayName = "SiteSearch";
|
|
4
|
+
var SiteSearch_default = SiteSearch;
|
|
5
|
+
export {
|
|
6
|
+
SiteSearch_default as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
const SiteSearchSmall = ({ size, ...props }) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 18 18", fill: "currentColor", width: size || "18", height: size || "18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M10 8.5c1.65 0 3 1.35 3 3 0 .278-.042.546-.113.802l2.239 1.3a.75.75 0 1 1-.752 1.296l-2.24-1.297A2.99 2.99 0 0 1 10 14.5c-1.65 0-3-1.35-3-3s1.35-3 3-3Zm0 1.5c-.83 0-1.5.67-1.5 1.5S9.17 13 10 13s1.5-.67 1.5-1.5S10.83 10 10 10Z" }), /* @__PURE__ */ React.createElement("path", { d: "M13.75 3c.964 0 1.75.786 1.75 1.75v6.5a.75.75 0 0 1-1.5 0V7.5H4v4.75c0 .136.114.25.25.25h1.5a.75.75 0 0 1 0 1.5h-1.5c-.964 0-1.75-.786-1.75-1.75v-7.5C2.5 3.786 3.286 3 4.25 3h9.5Zm-9.5 1.5a.253.253 0 0 0-.25.25V6h10V4.75a.253.253 0 0 0-.25-.25h-9.5Z" }));
|
|
3
|
+
SiteSearchSmall.displayName = "SiteSearchSmall";
|
|
4
|
+
var SiteSearchSmall_default = SiteSearchSmall;
|
|
5
|
+
export {
|
|
6
|
+
SiteSearchSmall_default as default
|
|
7
|
+
};
|