@webstudio-is/icons 0.66.0 → 0.68.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/lib/__generated__/code-text.js +11 -0
- package/lib/__generated__/{code.js → embed.js} +3 -3
- package/lib/__generated__/index.js +2 -1
- package/lib/__generated__/svg/code-text.js +4 -0
- package/lib/__generated__/svg/embed.js +4 -0
- package/lib/__generated__/svg/index.js +4 -2
- package/lib/cjs/__generated__/code-text.js +31 -0
- package/lib/cjs/__generated__/{code.js → embed.js} +6 -6
- package/lib/cjs/__generated__/index.js +2 -1
- package/lib/cjs/__generated__/svg/code-text.js +24 -0
- package/lib/cjs/__generated__/svg/{code.js → embed.js} +5 -5
- package/lib/cjs/__generated__/svg/index.js +4 -2
- package/lib/types/__generated__/code-text.d.ts +3 -0
- package/lib/types/__generated__/embed.d.ts +3 -0
- package/lib/types/__generated__/index.d.ts +2 -1
- package/lib/types/__generated__/svg/code-text.d.ts +1 -0
- package/lib/types/__generated__/svg/embed.d.ts +1 -0
- package/lib/types/__generated__/svg/index.d.ts +2 -1
- package/package.json +2 -2
- package/src/__generated__/code-text.tsx +15 -0
- package/src/__generated__/{code.tsx → embed.tsx} +3 -3
- package/src/__generated__/index.ts +2 -1
- package/src/__generated__/svg/code-text.ts +1 -0
- package/src/__generated__/svg/embed.ts +1 -0
- package/src/__generated__/svg/index.ts +2 -1
- package/lib/__generated__/svg/code.js +0 -4
- package/lib/types/__generated__/code.d.ts +0 -3
- package/lib/types/__generated__/svg/code.d.ts +0 -1
- package/src/__generated__/svg/code.ts +0 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const CodeTextIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z", clipRule: "evenodd" }) });
|
|
6
|
+
}
|
|
7
|
+
);
|
|
8
|
+
CodeTextIcon.displayName = "CodeTextIcon";
|
|
9
|
+
export {
|
|
10
|
+
CodeTextIcon
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
|
-
const
|
|
3
|
+
const EmbedIcon = forwardRef(
|
|
4
4
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
5
|
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z", clipRule: "evenodd" }) });
|
|
6
6
|
}
|
|
7
7
|
);
|
|
8
|
-
|
|
8
|
+
EmbedIcon.displayName = "EmbedIcon";
|
|
9
9
|
export {
|
|
10
|
-
|
|
10
|
+
EmbedIcon
|
|
11
11
|
};
|
|
@@ -50,7 +50,7 @@ export * from "./chevron-filled-down";
|
|
|
50
50
|
export * from "./chevron-filled-left";
|
|
51
51
|
export * from "./chevron-filled-right";
|
|
52
52
|
export * from "./chevron-filled-up";
|
|
53
|
-
export * from "./code";
|
|
53
|
+
export * from "./code-text";
|
|
54
54
|
export * from "./commit";
|
|
55
55
|
export * from "./dash-border";
|
|
56
56
|
export * from "./dash";
|
|
@@ -60,6 +60,7 @@ export * from "./dot";
|
|
|
60
60
|
export * from "./dotted-border";
|
|
61
61
|
export * from "./drag-handle";
|
|
62
62
|
export * from "./email";
|
|
63
|
+
export * from "./embed";
|
|
63
64
|
export * from "./external-link";
|
|
64
65
|
export * from "./eyecon-closed";
|
|
65
66
|
export * from "./eyecon-open";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const CodeTextIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
+
export {
|
|
3
|
+
CodeTextIcon
|
|
4
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const EmbedIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
+
export {
|
|
3
|
+
EmbedIcon
|
|
4
|
+
};
|
|
@@ -50,7 +50,7 @@ import { ChevronFilledDownIcon } from "./chevron-filled-down";
|
|
|
50
50
|
import { ChevronFilledLeftIcon } from "./chevron-filled-left";
|
|
51
51
|
import { ChevronFilledRightIcon } from "./chevron-filled-right";
|
|
52
52
|
import { ChevronFilledUpIcon } from "./chevron-filled-up";
|
|
53
|
-
import {
|
|
53
|
+
import { CodeTextIcon } from "./code-text";
|
|
54
54
|
import { CommitIcon } from "./commit";
|
|
55
55
|
import { DashBorderIcon } from "./dash-border";
|
|
56
56
|
import { DashIcon } from "./dash";
|
|
@@ -60,6 +60,7 @@ import { DotIcon } from "./dot";
|
|
|
60
60
|
import { DottedBorderIcon } from "./dotted-border";
|
|
61
61
|
import { DragHandleIcon } from "./drag-handle";
|
|
62
62
|
import { EmailIcon } from "./email";
|
|
63
|
+
import { EmbedIcon } from "./embed";
|
|
63
64
|
import { ExternalLinkIcon } from "./external-link";
|
|
64
65
|
import { EyeconClosedIcon } from "./eyecon-closed";
|
|
65
66
|
import { EyeconOpenIcon } from "./eyecon-open";
|
|
@@ -171,7 +172,7 @@ export {
|
|
|
171
172
|
ChevronFilledLeftIcon,
|
|
172
173
|
ChevronFilledRightIcon,
|
|
173
174
|
ChevronFilledUpIcon,
|
|
174
|
-
|
|
175
|
+
CodeTextIcon,
|
|
175
176
|
CommitIcon,
|
|
176
177
|
DashBorderIcon,
|
|
177
178
|
DashIcon,
|
|
@@ -181,6 +182,7 @@ export {
|
|
|
181
182
|
DottedBorderIcon,
|
|
182
183
|
DragHandleIcon,
|
|
183
184
|
EmailIcon,
|
|
185
|
+
EmbedIcon,
|
|
184
186
|
ExternalLinkIcon,
|
|
185
187
|
EyeconClosedIcon,
|
|
186
188
|
EyeconOpenIcon,
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var code_text_exports = {};
|
|
20
|
+
__export(code_text_exports, {
|
|
21
|
+
CodeTextIcon: () => CodeTextIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(code_text_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const CodeTextIcon = (0, import_react.forwardRef)(
|
|
27
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z", clipRule: "evenodd" }) });
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
CodeTextIcon.displayName = "CodeTextIcon";
|
|
@@ -16,16 +16,16 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
21
|
-
|
|
19
|
+
var embed_exports = {};
|
|
20
|
+
__export(embed_exports, {
|
|
21
|
+
EmbedIcon: () => EmbedIcon
|
|
22
22
|
});
|
|
23
|
-
module.exports = __toCommonJS(
|
|
23
|
+
module.exports = __toCommonJS(embed_exports);
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
|
-
const
|
|
26
|
+
const EmbedIcon = (0, import_react.forwardRef)(
|
|
27
27
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
28
|
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z", clipRule: "evenodd" }) });
|
|
29
29
|
}
|
|
30
30
|
);
|
|
31
|
-
|
|
31
|
+
EmbedIcon.displayName = "EmbedIcon";
|
|
@@ -67,7 +67,7 @@ __reExport(generated_exports, require("./chevron-filled-down"), module.exports);
|
|
|
67
67
|
__reExport(generated_exports, require("./chevron-filled-left"), module.exports);
|
|
68
68
|
__reExport(generated_exports, require("./chevron-filled-right"), module.exports);
|
|
69
69
|
__reExport(generated_exports, require("./chevron-filled-up"), module.exports);
|
|
70
|
-
__reExport(generated_exports, require("./code"), module.exports);
|
|
70
|
+
__reExport(generated_exports, require("./code-text"), module.exports);
|
|
71
71
|
__reExport(generated_exports, require("./commit"), module.exports);
|
|
72
72
|
__reExport(generated_exports, require("./dash-border"), module.exports);
|
|
73
73
|
__reExport(generated_exports, require("./dash"), module.exports);
|
|
@@ -77,6 +77,7 @@ __reExport(generated_exports, require("./dot"), module.exports);
|
|
|
77
77
|
__reExport(generated_exports, require("./dotted-border"), module.exports);
|
|
78
78
|
__reExport(generated_exports, require("./drag-handle"), module.exports);
|
|
79
79
|
__reExport(generated_exports, require("./email"), module.exports);
|
|
80
|
+
__reExport(generated_exports, require("./embed"), module.exports);
|
|
80
81
|
__reExport(generated_exports, require("./external-link"), module.exports);
|
|
81
82
|
__reExport(generated_exports, require("./eyecon-closed"), module.exports);
|
|
82
83
|
__reExport(generated_exports, require("./eyecon-open"), module.exports);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var code_text_exports = {};
|
|
20
|
+
__export(code_text_exports, {
|
|
21
|
+
CodeTextIcon: () => CodeTextIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(code_text_exports);
|
|
24
|
+
const CodeTextIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -16,9 +16,9 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var
|
|
20
|
-
__export(
|
|
21
|
-
|
|
19
|
+
var embed_exports = {};
|
|
20
|
+
__export(embed_exports, {
|
|
21
|
+
EmbedIcon: () => EmbedIcon
|
|
22
22
|
});
|
|
23
|
-
module.exports = __toCommonJS(
|
|
24
|
-
const
|
|
23
|
+
module.exports = __toCommonJS(embed_exports);
|
|
24
|
+
const EmbedIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -70,7 +70,7 @@ __export(svg_exports, {
|
|
|
70
70
|
ChevronFilledLeftIcon: () => import_chevron_filled_left.ChevronFilledLeftIcon,
|
|
71
71
|
ChevronFilledRightIcon: () => import_chevron_filled_right.ChevronFilledRightIcon,
|
|
72
72
|
ChevronFilledUpIcon: () => import_chevron_filled_up.ChevronFilledUpIcon,
|
|
73
|
-
|
|
73
|
+
CodeTextIcon: () => import_code_text.CodeTextIcon,
|
|
74
74
|
CommitIcon: () => import_commit.CommitIcon,
|
|
75
75
|
DashBorderIcon: () => import_dash_border.DashBorderIcon,
|
|
76
76
|
DashIcon: () => import_dash.DashIcon,
|
|
@@ -80,6 +80,7 @@ __export(svg_exports, {
|
|
|
80
80
|
DottedBorderIcon: () => import_dotted_border.DottedBorderIcon,
|
|
81
81
|
DragHandleIcon: () => import_drag_handle.DragHandleIcon,
|
|
82
82
|
EmailIcon: () => import_email.EmailIcon,
|
|
83
|
+
EmbedIcon: () => import_embed.EmbedIcon,
|
|
83
84
|
ExternalLinkIcon: () => import_external_link.ExternalLinkIcon,
|
|
84
85
|
EyeconClosedIcon: () => import_eyecon_closed.EyeconClosedIcon,
|
|
85
86
|
EyeconOpenIcon: () => import_eyecon_open.EyeconOpenIcon,
|
|
@@ -192,7 +193,7 @@ var import_chevron_filled_down = require("./chevron-filled-down");
|
|
|
192
193
|
var import_chevron_filled_left = require("./chevron-filled-left");
|
|
193
194
|
var import_chevron_filled_right = require("./chevron-filled-right");
|
|
194
195
|
var import_chevron_filled_up = require("./chevron-filled-up");
|
|
195
|
-
var
|
|
196
|
+
var import_code_text = require("./code-text");
|
|
196
197
|
var import_commit = require("./commit");
|
|
197
198
|
var import_dash_border = require("./dash-border");
|
|
198
199
|
var import_dash = require("./dash");
|
|
@@ -202,6 +203,7 @@ var import_dot = require("./dot");
|
|
|
202
203
|
var import_dotted_border = require("./dotted-border");
|
|
203
204
|
var import_drag_handle = require("./drag-handle");
|
|
204
205
|
var import_email = require("./email");
|
|
206
|
+
var import_embed = require("./embed");
|
|
205
207
|
var import_external_link = require("./external-link");
|
|
206
208
|
var import_eyecon_closed = require("./eyecon-closed");
|
|
207
209
|
var import_eyecon_open = require("./eyecon-open");
|
|
@@ -50,7 +50,7 @@ export * from "./chevron-filled-down";
|
|
|
50
50
|
export * from "./chevron-filled-left";
|
|
51
51
|
export * from "./chevron-filled-right";
|
|
52
52
|
export * from "./chevron-filled-up";
|
|
53
|
-
export * from "./code";
|
|
53
|
+
export * from "./code-text";
|
|
54
54
|
export * from "./commit";
|
|
55
55
|
export * from "./dash-border";
|
|
56
56
|
export * from "./dash";
|
|
@@ -60,6 +60,7 @@ export * from "./dot";
|
|
|
60
60
|
export * from "./dotted-border";
|
|
61
61
|
export * from "./drag-handle";
|
|
62
62
|
export * from "./email";
|
|
63
|
+
export * from "./embed";
|
|
63
64
|
export * from "./external-link";
|
|
64
65
|
export * from "./eyecon-closed";
|
|
65
66
|
export * from "./eyecon-open";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CodeTextIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill-rule=\"evenodd\" d=\"M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const EmbedIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill-rule=\"evenodd\" d=\"M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -50,7 +50,7 @@ export { ChevronFilledDownIcon } from "./chevron-filled-down";
|
|
|
50
50
|
export { ChevronFilledLeftIcon } from "./chevron-filled-left";
|
|
51
51
|
export { ChevronFilledRightIcon } from "./chevron-filled-right";
|
|
52
52
|
export { ChevronFilledUpIcon } from "./chevron-filled-up";
|
|
53
|
-
export {
|
|
53
|
+
export { CodeTextIcon } from "./code-text";
|
|
54
54
|
export { CommitIcon } from "./commit";
|
|
55
55
|
export { DashBorderIcon } from "./dash-border";
|
|
56
56
|
export { DashIcon } from "./dash";
|
|
@@ -60,6 +60,7 @@ export { DotIcon } from "./dot";
|
|
|
60
60
|
export { DottedBorderIcon } from "./dotted-border";
|
|
61
61
|
export { DragHandleIcon } from "./drag-handle";
|
|
62
62
|
export { EmailIcon } from "./email";
|
|
63
|
+
export { EmbedIcon } from "./embed";
|
|
63
64
|
export { ExternalLinkIcon } from "./external-link";
|
|
64
65
|
export { EyeconClosedIcon } from "./eyecon-closed";
|
|
65
66
|
export { EyeconOpenIcon } from "./eyecon-open";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "Webstudio Icons",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"react-dom": "^18.2.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@webstudio-is/css-vars": "^0.
|
|
26
|
+
"@webstudio-is/css-vars": "^0.68.0"
|
|
27
27
|
},
|
|
28
28
|
"module": "./lib/index.js",
|
|
29
29
|
"exports": {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/code-text.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const CodeTextIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
8
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
9
|
+
return (
|
|
10
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
CodeTextIcon.displayName = "CodeTextIcon";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
// Generated from icons/
|
|
1
|
+
// Generated from icons/embed.svg
|
|
2
2
|
|
|
3
3
|
import { forwardRef } from "react";
|
|
4
4
|
import type { IconProps } from "../types";
|
|
5
5
|
|
|
6
6
|
// prettier-ignore
|
|
7
|
-
export const
|
|
7
|
+
export const EmbedIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
8
8
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
9
9
|
return (
|
|
10
10
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clipRule="evenodd" /></svg>
|
|
@@ -12,4 +12,4 @@ export const CodeIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
|
12
12
|
}
|
|
13
13
|
);
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
EmbedIcon.displayName = "EmbedIcon";
|
|
@@ -50,7 +50,7 @@ export * from "./chevron-filled-down";
|
|
|
50
50
|
export * from "./chevron-filled-left";
|
|
51
51
|
export * from "./chevron-filled-right";
|
|
52
52
|
export * from "./chevron-filled-up";
|
|
53
|
-
export * from "./code";
|
|
53
|
+
export * from "./code-text";
|
|
54
54
|
export * from "./commit";
|
|
55
55
|
export * from "./dash-border";
|
|
56
56
|
export * from "./dash";
|
|
@@ -60,6 +60,7 @@ export * from "./dot";
|
|
|
60
60
|
export * from "./dotted-border";
|
|
61
61
|
export * from "./drag-handle";
|
|
62
62
|
export * from "./email";
|
|
63
|
+
export * from "./embed";
|
|
63
64
|
export * from "./external-link";
|
|
64
65
|
export * from "./eyecon-closed";
|
|
65
66
|
export * from "./eyecon-open";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const CodeTextIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M1.445 4.19c0-1.2.973-2.173 2.174-2.173a.65.65 0 0 1 0 1.3.874.874 0 0 0-.874.874v3.047a.65.65 0 0 1-.19.46L2.253 8l.302.302a.65.65 0 0 1 .19.46v3.047c0 .483.391.874.874.874a.65.65 0 1 1 0 1.3 2.174 2.174 0 0 1-2.174-2.174V9.031L.874 8.46a.65.65 0 0 1 0-.92l.571-.571V4.19ZM11.73 2.668a.65.65 0 0 1 .65-.65c1.201 0 2.175.973 2.175 2.174v2.778l.571.571a.65.65 0 0 1 0 .92l-.571.571v2.778a2.174 2.174 0 0 1-2.175 2.174.65.65 0 1 1 0-1.3.874.874 0 0 0 .874-.874V8.762a.65.65 0 0 1 .19-.46L13.748 8l-.302-.302a.65.65 0 0 1-.19-.46V4.191a.874.874 0 0 0-.875-.874.65.65 0 0 1-.65-.65Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const EmbedIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -50,7 +50,7 @@ export { ChevronFilledDownIcon } from "./chevron-filled-down";
|
|
|
50
50
|
export { ChevronFilledLeftIcon } from "./chevron-filled-left";
|
|
51
51
|
export { ChevronFilledRightIcon } from "./chevron-filled-right";
|
|
52
52
|
export { ChevronFilledUpIcon } from "./chevron-filled-up";
|
|
53
|
-
export {
|
|
53
|
+
export { CodeTextIcon } from "./code-text";
|
|
54
54
|
export { CommitIcon } from "./commit";
|
|
55
55
|
export { DashBorderIcon } from "./dash-border";
|
|
56
56
|
export { DashIcon } from "./dash";
|
|
@@ -60,6 +60,7 @@ export { DotIcon } from "./dot";
|
|
|
60
60
|
export { DottedBorderIcon } from "./dotted-border";
|
|
61
61
|
export { DragHandleIcon } from "./drag-handle";
|
|
62
62
|
export { EmailIcon } from "./email";
|
|
63
|
+
export { EmbedIcon } from "./embed";
|
|
63
64
|
export { ExternalLinkIcon } from "./external-link";
|
|
64
65
|
export { EyeconClosedIcon } from "./eyecon-closed";
|
|
65
66
|
export { EyeconOpenIcon } from "./eyecon-open";
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const CodeIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
-
export {
|
|
3
|
-
CodeIcon
|
|
4
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const CodeIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path fill-rule=\"evenodd\" d=\"M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const CodeIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path fill-rule="evenodd" d="M9.474 1.365a.65.65 0 0 1 .494.776l-2.667 12a.65.65 0 0 1-1.269-.282l2.667-12a.65.65 0 0 1 .775-.494ZM5.126 4.207a.65.65 0 0 1 0 .92L2.253 8l2.873 2.874a.65.65 0 1 1-.919.919L.874 8.46a.65.65 0 0 1 0-.92l3.333-3.333a.65.65 0 0 1 .92 0Zm5.748 0a.65.65 0 0 1 .919 0l3.333 3.333a.65.65 0 0 1 0 .92l-3.333 3.333a.65.65 0 1 1-.92-.92L13.748 8l-2.873-2.874a.65.65 0 0 1 0-.919Z" clip-rule="evenodd"/></svg>`;
|