@webstudio-is/icons 0.89.0 → 0.90.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__/index.js +1 -0
- package/lib/__generated__/item.js +5 -2
- package/lib/__generated__/large X.js +11 -0
- package/lib/__generated__/svg/index.js +2 -0
- package/lib/__generated__/svg/item.js +1 -1
- package/lib/__generated__/svg/large X.js +4 -0
- package/lib/cjs/__generated__/index.js +1 -0
- package/lib/cjs/__generated__/item.js +4 -1
- package/lib/cjs/__generated__/large X.js +31 -0
- package/lib/cjs/__generated__/svg/index.js +2 -0
- package/lib/cjs/__generated__/svg/item.js +1 -1
- package/lib/cjs/__generated__/svg/large X.js +24 -0
- package/lib/types/src/__generated__/index.d.ts +1 -0
- package/lib/types/src/__generated__/large X.d.ts +3 -0
- package/lib/types/src/__generated__/svg/index.d.ts +1 -0
- package/lib/types/src/__generated__/svg/item.d.ts +1 -1
- package/lib/types/src/__generated__/svg/large X.d.ts +1 -0
- package/package.json +2 -2
- package/src/__generated__/index.ts +1 -0
- package/src/__generated__/item.tsx +1 -1
- package/src/__generated__/large X.tsx +15 -0
- package/src/__generated__/svg/index.ts +1 -0
- package/src/__generated__/svg/item.ts +1 -1
- package/src/__generated__/svg/large X.ts +1 -0
|
@@ -102,6 +102,7 @@ export * from "./j-c-space-around";
|
|
|
102
102
|
export * from "./j-c-space-between";
|
|
103
103
|
export * from "./j-c-start";
|
|
104
104
|
export * from "./label";
|
|
105
|
+
export * from "./large X";
|
|
105
106
|
export * from "./link-2-unlinked";
|
|
106
107
|
export * from "./link-2";
|
|
107
108
|
export * from "./link";
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
3
|
const ItemIcon = forwardRef(
|
|
4
4
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
-
return /* @__PURE__ */
|
|
5
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z", clipRule: "evenodd" })
|
|
8
|
+
] });
|
|
6
9
|
}
|
|
7
10
|
);
|
|
8
11
|
ItemIcon.displayName = "ItemIcon";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const LargeXIcon = 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: "M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z", clipRule: "evenodd" }) });
|
|
6
|
+
}
|
|
7
|
+
);
|
|
8
|
+
LargeXIcon.displayName = "LargeXIcon";
|
|
9
|
+
export {
|
|
10
|
+
LargeXIcon
|
|
11
|
+
};
|
|
@@ -102,6 +102,7 @@ import { JCSpaceAroundIcon } from "./j-c-space-around";
|
|
|
102
102
|
import { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
103
103
|
import { JCStartIcon } from "./j-c-start";
|
|
104
104
|
import { LabelIcon } from "./label";
|
|
105
|
+
import { LargeXIcon } from "./large X";
|
|
105
106
|
import { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
106
107
|
import { Link2Icon } from "./link-2";
|
|
107
108
|
import { LinkIcon } from "./link";
|
|
@@ -261,6 +262,7 @@ export {
|
|
|
261
262
|
JCSpaceBetweenIcon,
|
|
262
263
|
JCStartIcon,
|
|
263
264
|
LabelIcon,
|
|
265
|
+
LargeXIcon,
|
|
264
266
|
Link2Icon,
|
|
265
267
|
Link2UnlinkedIcon,
|
|
266
268
|
LinkIcon,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path
|
|
1
|
+
const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path d="M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z"/><path fill-rule="evenodd" d="M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z" clip-rule="evenodd"/></svg>`;
|
|
2
2
|
export {
|
|
3
3
|
ItemIcon
|
|
4
4
|
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const LargeXIcon = `<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="M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
+
export {
|
|
3
|
+
LargeXIcon
|
|
4
|
+
};
|
|
@@ -119,6 +119,7 @@ __reExport(generated_exports, require("./j-c-space-around"), module.exports);
|
|
|
119
119
|
__reExport(generated_exports, require("./j-c-space-between"), module.exports);
|
|
120
120
|
__reExport(generated_exports, require("./j-c-start"), module.exports);
|
|
121
121
|
__reExport(generated_exports, require("./label"), module.exports);
|
|
122
|
+
__reExport(generated_exports, require("./large X"), module.exports);
|
|
122
123
|
__reExport(generated_exports, require("./link-2-unlinked"), module.exports);
|
|
123
124
|
__reExport(generated_exports, require("./link-2"), module.exports);
|
|
124
125
|
__reExport(generated_exports, require("./link"), module.exports);
|
|
@@ -25,7 +25,10 @@ var import_jsx_runtime = require("react/jsx-runtime");
|
|
|
25
25
|
var import_react = require("react");
|
|
26
26
|
const ItemIcon = (0, import_react.forwardRef)(
|
|
27
27
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
28
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.
|
|
28
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
|
|
29
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z" }),
|
|
30
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z", clipRule: "evenodd" })
|
|
31
|
+
] });
|
|
29
32
|
}
|
|
30
33
|
);
|
|
31
34
|
ItemIcon.displayName = "ItemIcon";
|
|
@@ -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 large_X_exports = {};
|
|
20
|
+
__export(large_X_exports, {
|
|
21
|
+
LargeXIcon: () => LargeXIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(large_X_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const LargeXIcon = (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: "M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z", clipRule: "evenodd" }) });
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
LargeXIcon.displayName = "LargeXIcon";
|
|
@@ -122,6 +122,7 @@ __export(svg_exports, {
|
|
|
122
122
|
JCSpaceBetweenIcon: () => import_j_c_space_between.JCSpaceBetweenIcon,
|
|
123
123
|
JCStartIcon: () => import_j_c_start.JCStartIcon,
|
|
124
124
|
LabelIcon: () => import_label.LabelIcon,
|
|
125
|
+
LargeXIcon: () => import_large_X.LargeXIcon,
|
|
125
126
|
Link2Icon: () => import_link_2.Link2Icon,
|
|
126
127
|
Link2UnlinkedIcon: () => import_link_2_unlinked.Link2UnlinkedIcon,
|
|
127
128
|
LinkIcon: () => import_link.LinkIcon,
|
|
@@ -282,6 +283,7 @@ var import_j_c_space_around = require("./j-c-space-around");
|
|
|
282
283
|
var import_j_c_space_between = require("./j-c-space-between");
|
|
283
284
|
var import_j_c_start = require("./j-c-start");
|
|
284
285
|
var import_label = require("./label");
|
|
286
|
+
var import_large_X = require("./large X");
|
|
285
287
|
var import_link_2_unlinked = require("./link-2-unlinked");
|
|
286
288
|
var import_link_2 = require("./link-2");
|
|
287
289
|
var import_link = require("./link");
|
|
@@ -21,4 +21,4 @@ __export(item_exports, {
|
|
|
21
21
|
ItemIcon: () => ItemIcon
|
|
22
22
|
});
|
|
23
23
|
module.exports = __toCommonJS(item_exports);
|
|
24
|
-
const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path
|
|
24
|
+
const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path d="M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z"/><path fill-rule="evenodd" d="M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -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 large_X_exports = {};
|
|
20
|
+
__export(large_X_exports, {
|
|
21
|
+
LargeXIcon: () => LargeXIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(large_X_exports);
|
|
24
|
+
const LargeXIcon = `<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="M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -102,6 +102,7 @@ export * from "./j-c-space-around";
|
|
|
102
102
|
export * from "./j-c-space-between";
|
|
103
103
|
export * from "./j-c-start";
|
|
104
104
|
export * from "./label";
|
|
105
|
+
export * from "./large X";
|
|
105
106
|
export * from "./link-2-unlinked";
|
|
106
107
|
export * from "./link-2";
|
|
107
108
|
export * from "./link";
|
|
@@ -102,6 +102,7 @@ export { JCSpaceAroundIcon } from "./j-c-space-around";
|
|
|
102
102
|
export { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
103
103
|
export { JCStartIcon } from "./j-c-start";
|
|
104
104
|
export { LabelIcon } from "./label";
|
|
105
|
+
export { LargeXIcon } from "./large X";
|
|
105
106
|
export { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
106
107
|
export { Link2Icon } from "./link-2";
|
|
107
108
|
export { LinkIcon } from "./link";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ItemIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path
|
|
1
|
+
export declare const ItemIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" fill=\"currentColor\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path d=\"M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z\"/><path fill-rule=\"evenodd\" d=\"M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const LargeXIcon = "<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=\"M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z\" clip-rule=\"evenodd\"/></svg>";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.90.0",
|
|
4
4
|
"description": "Webstudio Icons",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"react-dom": "^18.2.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@webstudio-is/css-vars": "^0.
|
|
25
|
+
"@webstudio-is/css-vars": "^0.90.0"
|
|
26
26
|
},
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
@@ -102,6 +102,7 @@ export * from "./j-c-space-around";
|
|
|
102
102
|
export * from "./j-c-space-between";
|
|
103
103
|
export * from "./j-c-start";
|
|
104
104
|
export * from "./label";
|
|
105
|
+
export * from "./large X";
|
|
105
106
|
export * from "./link-2-unlinked";
|
|
106
107
|
export * from "./link-2";
|
|
107
108
|
export * from "./link";
|
|
@@ -7,7 +7,7 @@ import type { IconProps } from "../types";
|
|
|
7
7
|
export const ItemIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
8
8
|
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
9
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
|
|
10
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path d="M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z" /><path fillRule="evenodd" d="M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z" clipRule="evenodd" /></svg>
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
13
|
);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/large X.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const LargeXIcon = 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="M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
LargeXIcon.displayName = "LargeXIcon";
|
|
@@ -102,6 +102,7 @@ export { JCSpaceAroundIcon } from "./j-c-space-around";
|
|
|
102
102
|
export { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
103
103
|
export { JCStartIcon } from "./j-c-start";
|
|
104
104
|
export { LabelIcon } from "./label";
|
|
105
|
+
export { LargeXIcon } from "./large X";
|
|
105
106
|
export { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
106
107
|
export { Link2Icon } from "./link-2";
|
|
107
108
|
export { LinkIcon } from "./link";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path
|
|
1
|
+
export const ItemIcon = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor" width="100%" height="100%" style="display: block;"><path d="M3.7 6.175a.85.85 0 1 1-1.7 0 .85.85 0 0 1 1.7 0Z"/><path fill-rule="evenodd" d="M5 6.175c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 6.175ZM5 10.05c0-.345.28-.625.625-.625h7.75a.625.625 0 1 1 0 1.25h-7.75A.625.625 0 0 1 5 10.05Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const LargeXIcon = `<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="M13.566 2.434a.8.8 0 0 1 0 1.132L9.13 8l4.435 4.434a.8.8 0 0 1-1.132 1.132L8 9.13l-4.434 4.435a.8.8 0 0 1-1.132-1.132L6.87 8 2.434 3.566a.8.8 0 0 1 1.132-1.132L8 6.87l4.434-4.435a.8.8 0 0 1 1.132 0Z" clip-rule="evenodd"/></svg>`;
|