@webstudio-is/icons 0.72.0 → 0.74.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 +2 -2
- package/lib/__generated__/reset.js +11 -0
- package/lib/__generated__/svg/index.js +4 -4
- package/lib/__generated__/svg/reset.js +4 -0
- package/lib/__generated__/svg/text.js +4 -0
- package/lib/__generated__/{text-block.js → text.js} +3 -3
- package/lib/cjs/__generated__/index.js +2 -2
- package/lib/cjs/__generated__/reset.js +31 -0
- package/lib/cjs/__generated__/svg/index.js +4 -4
- package/lib/cjs/__generated__/svg/reset.js +24 -0
- package/lib/cjs/__generated__/svg/text.js +24 -0
- package/lib/cjs/__generated__/{text-block.js → text.js} +6 -6
- package/lib/types/__generated__/index.d.ts +2 -2
- package/lib/types/__generated__/reset.d.ts +3 -0
- package/lib/types/__generated__/svg/index.d.ts +2 -2
- package/lib/types/__generated__/svg/reset.d.ts +1 -0
- package/lib/types/__generated__/svg/text.d.ts +1 -0
- package/lib/types/__generated__/text.d.ts +3 -0
- package/package.json +3 -3
- package/src/__generated__/index.ts +2 -2
- package/src/__generated__/reset.tsx +15 -0
- package/src/__generated__/svg/index.ts +2 -2
- package/src/__generated__/svg/reset.ts +1 -0
- package/src/__generated__/svg/text.ts +1 -0
- package/src/__generated__/{text-block.tsx → text.tsx} +3 -3
- package/lib/__generated__/link-block.js +0 -11
- package/lib/__generated__/svg/link-block.js +0 -4
- package/lib/__generated__/svg/text-block.js +0 -4
- package/lib/cjs/__generated__/link-block.js +0 -31
- package/lib/cjs/__generated__/svg/link-block.js +0 -24
- package/lib/cjs/__generated__/svg/text-block.js +0 -24
- package/lib/types/__generated__/link-block.d.ts +0 -3
- package/lib/types/__generated__/svg/link-block.d.ts +0 -1
- package/lib/types/__generated__/svg/text-block.d.ts +0 -1
- package/lib/types/__generated__/text-block.d.ts +0 -3
- package/src/__generated__/link-block.tsx +0 -15
- package/src/__generated__/svg/link-block.ts +0 -1
- package/src/__generated__/svg/text-block.ts +0 -1
|
@@ -86,7 +86,6 @@ export * from "./j-c-space-between";
|
|
|
86
86
|
export * from "./j-c-start";
|
|
87
87
|
export * from "./link-2-unlinked";
|
|
88
88
|
export * from "./link-2";
|
|
89
|
-
export * from "./link-block";
|
|
90
89
|
export * from "./link";
|
|
91
90
|
export * from "./list-item";
|
|
92
91
|
export * from "./list";
|
|
@@ -107,6 +106,7 @@ export * from "./refresh";
|
|
|
107
106
|
export * from "./repeat-column";
|
|
108
107
|
export * from "./repeat-grid";
|
|
109
108
|
export * from "./repeat-row";
|
|
109
|
+
export * from "./reset";
|
|
110
110
|
export * from "./scroll";
|
|
111
111
|
export * from "./section-link";
|
|
112
112
|
export * from "./shrink";
|
|
@@ -117,8 +117,8 @@ export * from "./subscript";
|
|
|
117
117
|
export * from "./subtract";
|
|
118
118
|
export * from "./superscript";
|
|
119
119
|
export * from "./text-align-left";
|
|
120
|
-
export * from "./text-block";
|
|
121
120
|
export * from "./text-italic";
|
|
121
|
+
export * from "./text";
|
|
122
122
|
export * from "./video";
|
|
123
123
|
export * from "./vimeo";
|
|
124
124
|
export * from "./webstudio";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const ResetIcon = 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: "M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z", clipRule: "evenodd" }) });
|
|
6
|
+
}
|
|
7
|
+
);
|
|
8
|
+
ResetIcon.displayName = "ResetIcon";
|
|
9
|
+
export {
|
|
10
|
+
ResetIcon
|
|
11
|
+
};
|
|
@@ -86,7 +86,6 @@ import { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
|
86
86
|
import { JCStartIcon } from "./j-c-start";
|
|
87
87
|
import { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
88
88
|
import { Link2Icon } from "./link-2";
|
|
89
|
-
import { LinkBlockIcon } from "./link-block";
|
|
90
89
|
import { LinkIcon } from "./link";
|
|
91
90
|
import { ListItemIcon } from "./list-item";
|
|
92
91
|
import { ListIcon } from "./list";
|
|
@@ -107,6 +106,7 @@ import { RefreshIcon } from "./refresh";
|
|
|
107
106
|
import { RepeatColumnIcon } from "./repeat-column";
|
|
108
107
|
import { RepeatGridIcon } from "./repeat-grid";
|
|
109
108
|
import { RepeatRowIcon } from "./repeat-row";
|
|
109
|
+
import { ResetIcon } from "./reset";
|
|
110
110
|
import { ScrollIcon } from "./scroll";
|
|
111
111
|
import { SectionLinkIcon } from "./section-link";
|
|
112
112
|
import { ShrinkIcon } from "./shrink";
|
|
@@ -117,8 +117,8 @@ import { SubscriptIcon } from "./subscript";
|
|
|
117
117
|
import { SubtractIcon } from "./subtract";
|
|
118
118
|
import { SuperscriptIcon } from "./superscript";
|
|
119
119
|
import { TextAlignLeftIcon } from "./text-align-left";
|
|
120
|
-
import { TextBlockIcon } from "./text-block";
|
|
121
120
|
import { TextItalicIcon } from "./text-italic";
|
|
121
|
+
import { TextIcon } from "./text";
|
|
122
122
|
import { VideoIcon } from "./video";
|
|
123
123
|
import { VimeoIcon } from "./vimeo";
|
|
124
124
|
import { WebstudioIcon } from "./webstudio";
|
|
@@ -212,7 +212,6 @@ export {
|
|
|
212
212
|
JCStartIcon,
|
|
213
213
|
Link2Icon,
|
|
214
214
|
Link2UnlinkedIcon,
|
|
215
|
-
LinkBlockIcon,
|
|
216
215
|
LinkIcon,
|
|
217
216
|
ListIcon,
|
|
218
217
|
ListItemIcon,
|
|
@@ -233,6 +232,7 @@ export {
|
|
|
233
232
|
RepeatColumnIcon,
|
|
234
233
|
RepeatGridIcon,
|
|
235
234
|
RepeatRowIcon,
|
|
235
|
+
ResetIcon,
|
|
236
236
|
ScrollIcon,
|
|
237
237
|
SectionLinkIcon,
|
|
238
238
|
ShrinkIcon,
|
|
@@ -243,7 +243,7 @@ export {
|
|
|
243
243
|
SubtractIcon,
|
|
244
244
|
SuperscriptIcon,
|
|
245
245
|
TextAlignLeftIcon,
|
|
246
|
-
|
|
246
|
+
TextIcon,
|
|
247
247
|
TextItalicIcon,
|
|
248
248
|
VideoIcon,
|
|
249
249
|
VimeoIcon,
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const ResetIcon = `<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="M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
+
export {
|
|
3
|
+
ResetIcon
|
|
4
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const TextIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
+
export {
|
|
3
|
+
TextIcon
|
|
4
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { forwardRef } from "react";
|
|
3
|
-
const
|
|
3
|
+
const TextIcon = 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: "M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z", clipRule: "evenodd" }) });
|
|
6
6
|
}
|
|
7
7
|
);
|
|
8
|
-
|
|
8
|
+
TextIcon.displayName = "TextIcon";
|
|
9
9
|
export {
|
|
10
|
-
|
|
10
|
+
TextIcon
|
|
11
11
|
};
|
|
@@ -103,7 +103,6 @@ __reExport(generated_exports, require("./j-c-space-between"), module.exports);
|
|
|
103
103
|
__reExport(generated_exports, require("./j-c-start"), module.exports);
|
|
104
104
|
__reExport(generated_exports, require("./link-2-unlinked"), module.exports);
|
|
105
105
|
__reExport(generated_exports, require("./link-2"), module.exports);
|
|
106
|
-
__reExport(generated_exports, require("./link-block"), module.exports);
|
|
107
106
|
__reExport(generated_exports, require("./link"), module.exports);
|
|
108
107
|
__reExport(generated_exports, require("./list-item"), module.exports);
|
|
109
108
|
__reExport(generated_exports, require("./list"), module.exports);
|
|
@@ -124,6 +123,7 @@ __reExport(generated_exports, require("./refresh"), module.exports);
|
|
|
124
123
|
__reExport(generated_exports, require("./repeat-column"), module.exports);
|
|
125
124
|
__reExport(generated_exports, require("./repeat-grid"), module.exports);
|
|
126
125
|
__reExport(generated_exports, require("./repeat-row"), module.exports);
|
|
126
|
+
__reExport(generated_exports, require("./reset"), module.exports);
|
|
127
127
|
__reExport(generated_exports, require("./scroll"), module.exports);
|
|
128
128
|
__reExport(generated_exports, require("./section-link"), module.exports);
|
|
129
129
|
__reExport(generated_exports, require("./shrink"), module.exports);
|
|
@@ -134,8 +134,8 @@ __reExport(generated_exports, require("./subscript"), module.exports);
|
|
|
134
134
|
__reExport(generated_exports, require("./subtract"), module.exports);
|
|
135
135
|
__reExport(generated_exports, require("./superscript"), module.exports);
|
|
136
136
|
__reExport(generated_exports, require("./text-align-left"), module.exports);
|
|
137
|
-
__reExport(generated_exports, require("./text-block"), module.exports);
|
|
138
137
|
__reExport(generated_exports, require("./text-italic"), module.exports);
|
|
138
|
+
__reExport(generated_exports, require("./text"), module.exports);
|
|
139
139
|
__reExport(generated_exports, require("./video"), module.exports);
|
|
140
140
|
__reExport(generated_exports, require("./vimeo"), module.exports);
|
|
141
141
|
__reExport(generated_exports, require("./webstudio"), module.exports);
|
|
@@ -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 reset_exports = {};
|
|
20
|
+
__export(reset_exports, {
|
|
21
|
+
ResetIcon: () => ResetIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(reset_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const ResetIcon = (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: "M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z", clipRule: "evenodd" }) });
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
ResetIcon.displayName = "ResetIcon";
|
|
@@ -106,7 +106,6 @@ __export(svg_exports, {
|
|
|
106
106
|
JCStartIcon: () => import_j_c_start.JCStartIcon,
|
|
107
107
|
Link2Icon: () => import_link_2.Link2Icon,
|
|
108
108
|
Link2UnlinkedIcon: () => import_link_2_unlinked.Link2UnlinkedIcon,
|
|
109
|
-
LinkBlockIcon: () => import_link_block.LinkBlockIcon,
|
|
110
109
|
LinkIcon: () => import_link.LinkIcon,
|
|
111
110
|
ListIcon: () => import_list.ListIcon,
|
|
112
111
|
ListItemIcon: () => import_list_item.ListItemIcon,
|
|
@@ -127,6 +126,7 @@ __export(svg_exports, {
|
|
|
127
126
|
RepeatColumnIcon: () => import_repeat_column.RepeatColumnIcon,
|
|
128
127
|
RepeatGridIcon: () => import_repeat_grid.RepeatGridIcon,
|
|
129
128
|
RepeatRowIcon: () => import_repeat_row.RepeatRowIcon,
|
|
129
|
+
ResetIcon: () => import_reset.ResetIcon,
|
|
130
130
|
ScrollIcon: () => import_scroll.ScrollIcon,
|
|
131
131
|
SectionLinkIcon: () => import_section_link.SectionLinkIcon,
|
|
132
132
|
ShrinkIcon: () => import_shrink.ShrinkIcon,
|
|
@@ -137,7 +137,7 @@ __export(svg_exports, {
|
|
|
137
137
|
SubtractIcon: () => import_subtract.SubtractIcon,
|
|
138
138
|
SuperscriptIcon: () => import_superscript.SuperscriptIcon,
|
|
139
139
|
TextAlignLeftIcon: () => import_text_align_left.TextAlignLeftIcon,
|
|
140
|
-
|
|
140
|
+
TextIcon: () => import_text.TextIcon,
|
|
141
141
|
TextItalicIcon: () => import_text_italic.TextItalicIcon,
|
|
142
142
|
VideoIcon: () => import_video.VideoIcon,
|
|
143
143
|
VimeoIcon: () => import_vimeo.VimeoIcon,
|
|
@@ -233,7 +233,6 @@ var import_j_c_space_between = require("./j-c-space-between");
|
|
|
233
233
|
var import_j_c_start = require("./j-c-start");
|
|
234
234
|
var import_link_2_unlinked = require("./link-2-unlinked");
|
|
235
235
|
var import_link_2 = require("./link-2");
|
|
236
|
-
var import_link_block = require("./link-block");
|
|
237
236
|
var import_link = require("./link");
|
|
238
237
|
var import_list_item = require("./list-item");
|
|
239
238
|
var import_list = require("./list");
|
|
@@ -254,6 +253,7 @@ var import_refresh = require("./refresh");
|
|
|
254
253
|
var import_repeat_column = require("./repeat-column");
|
|
255
254
|
var import_repeat_grid = require("./repeat-grid");
|
|
256
255
|
var import_repeat_row = require("./repeat-row");
|
|
256
|
+
var import_reset = require("./reset");
|
|
257
257
|
var import_scroll = require("./scroll");
|
|
258
258
|
var import_section_link = require("./section-link");
|
|
259
259
|
var import_shrink = require("./shrink");
|
|
@@ -264,8 +264,8 @@ var import_subscript = require("./subscript");
|
|
|
264
264
|
var import_subtract = require("./subtract");
|
|
265
265
|
var import_superscript = require("./superscript");
|
|
266
266
|
var import_text_align_left = require("./text-align-left");
|
|
267
|
-
var import_text_block = require("./text-block");
|
|
268
267
|
var import_text_italic = require("./text-italic");
|
|
268
|
+
var import_text = require("./text");
|
|
269
269
|
var import_video = require("./video");
|
|
270
270
|
var import_vimeo = require("./vimeo");
|
|
271
271
|
var import_webstudio = require("./webstudio");
|
|
@@ -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 reset_exports = {};
|
|
20
|
+
__export(reset_exports, {
|
|
21
|
+
ResetIcon: () => ResetIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(reset_exports);
|
|
24
|
+
const ResetIcon = `<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="M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z" 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 text_exports = {};
|
|
20
|
+
__export(text_exports, {
|
|
21
|
+
TextIcon: () => TextIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(text_exports);
|
|
24
|
+
const TextIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -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 text_exports = {};
|
|
20
|
+
__export(text_exports, {
|
|
21
|
+
TextIcon: () => TextIcon
|
|
22
22
|
});
|
|
23
|
-
module.exports = __toCommonJS(
|
|
23
|
+
module.exports = __toCommonJS(text_exports);
|
|
24
24
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
25
|
var import_react = require("react");
|
|
26
|
-
const
|
|
26
|
+
const TextIcon = (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: "M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z", clipRule: "evenodd" }) });
|
|
29
29
|
}
|
|
30
30
|
);
|
|
31
|
-
|
|
31
|
+
TextIcon.displayName = "TextIcon";
|
|
@@ -86,7 +86,6 @@ export * from "./j-c-space-between";
|
|
|
86
86
|
export * from "./j-c-start";
|
|
87
87
|
export * from "./link-2-unlinked";
|
|
88
88
|
export * from "./link-2";
|
|
89
|
-
export * from "./link-block";
|
|
90
89
|
export * from "./link";
|
|
91
90
|
export * from "./list-item";
|
|
92
91
|
export * from "./list";
|
|
@@ -107,6 +106,7 @@ export * from "./refresh";
|
|
|
107
106
|
export * from "./repeat-column";
|
|
108
107
|
export * from "./repeat-grid";
|
|
109
108
|
export * from "./repeat-row";
|
|
109
|
+
export * from "./reset";
|
|
110
110
|
export * from "./scroll";
|
|
111
111
|
export * from "./section-link";
|
|
112
112
|
export * from "./shrink";
|
|
@@ -117,8 +117,8 @@ export * from "./subscript";
|
|
|
117
117
|
export * from "./subtract";
|
|
118
118
|
export * from "./superscript";
|
|
119
119
|
export * from "./text-align-left";
|
|
120
|
-
export * from "./text-block";
|
|
121
120
|
export * from "./text-italic";
|
|
121
|
+
export * from "./text";
|
|
122
122
|
export * from "./video";
|
|
123
123
|
export * from "./vimeo";
|
|
124
124
|
export * from "./webstudio";
|
|
@@ -86,7 +86,6 @@ export { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
|
86
86
|
export { JCStartIcon } from "./j-c-start";
|
|
87
87
|
export { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
88
88
|
export { Link2Icon } from "./link-2";
|
|
89
|
-
export { LinkBlockIcon } from "./link-block";
|
|
90
89
|
export { LinkIcon } from "./link";
|
|
91
90
|
export { ListItemIcon } from "./list-item";
|
|
92
91
|
export { ListIcon } from "./list";
|
|
@@ -107,6 +106,7 @@ export { RefreshIcon } from "./refresh";
|
|
|
107
106
|
export { RepeatColumnIcon } from "./repeat-column";
|
|
108
107
|
export { RepeatGridIcon } from "./repeat-grid";
|
|
109
108
|
export { RepeatRowIcon } from "./repeat-row";
|
|
109
|
+
export { ResetIcon } from "./reset";
|
|
110
110
|
export { ScrollIcon } from "./scroll";
|
|
111
111
|
export { SectionLinkIcon } from "./section-link";
|
|
112
112
|
export { ShrinkIcon } from "./shrink";
|
|
@@ -117,8 +117,8 @@ export { SubscriptIcon } from "./subscript";
|
|
|
117
117
|
export { SubtractIcon } from "./subtract";
|
|
118
118
|
export { SuperscriptIcon } from "./superscript";
|
|
119
119
|
export { TextAlignLeftIcon } from "./text-align-left";
|
|
120
|
-
export { TextBlockIcon } from "./text-block";
|
|
121
120
|
export { TextItalicIcon } from "./text-italic";
|
|
121
|
+
export { TextIcon } from "./text";
|
|
122
122
|
export { VideoIcon } from "./video";
|
|
123
123
|
export { VimeoIcon } from "./vimeo";
|
|
124
124
|
export { WebstudioIcon } from "./webstudio";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ResetIcon = "<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=\"M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TextIcon = "<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=\"M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z\" 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.74.0",
|
|
4
4
|
"description": "Webstudio Icons",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"react-dom": "^18.2.0",
|
|
14
14
|
"svgo": "^3.0.2",
|
|
15
15
|
"tsx": "^3.12.6",
|
|
16
|
-
"typescript": "5.
|
|
16
|
+
"typescript": "5.1.3",
|
|
17
17
|
"@webstudio-is/scripts": "^0.0.0",
|
|
18
18
|
"@webstudio-is/storybook-config": "^0.0.0",
|
|
19
19
|
"@webstudio-is/tsconfig": "^1.0.6"
|
|
@@ -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.74.0"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|
|
29
29
|
".": {
|
|
@@ -86,7 +86,6 @@ export * from "./j-c-space-between";
|
|
|
86
86
|
export * from "./j-c-start";
|
|
87
87
|
export * from "./link-2-unlinked";
|
|
88
88
|
export * from "./link-2";
|
|
89
|
-
export * from "./link-block";
|
|
90
89
|
export * from "./link";
|
|
91
90
|
export * from "./list-item";
|
|
92
91
|
export * from "./list";
|
|
@@ -107,6 +106,7 @@ export * from "./refresh";
|
|
|
107
106
|
export * from "./repeat-column";
|
|
108
107
|
export * from "./repeat-grid";
|
|
109
108
|
export * from "./repeat-row";
|
|
109
|
+
export * from "./reset";
|
|
110
110
|
export * from "./scroll";
|
|
111
111
|
export * from "./section-link";
|
|
112
112
|
export * from "./shrink";
|
|
@@ -117,8 +117,8 @@ export * from "./subscript";
|
|
|
117
117
|
export * from "./subtract";
|
|
118
118
|
export * from "./superscript";
|
|
119
119
|
export * from "./text-align-left";
|
|
120
|
-
export * from "./text-block";
|
|
121
120
|
export * from "./text-italic";
|
|
121
|
+
export * from "./text";
|
|
122
122
|
export * from "./video";
|
|
123
123
|
export * from "./vimeo";
|
|
124
124
|
export * from "./webstudio";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/reset.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const ResetIcon = 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="M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
ResetIcon.displayName = "ResetIcon";
|
|
@@ -86,7 +86,6 @@ export { JCSpaceBetweenIcon } from "./j-c-space-between";
|
|
|
86
86
|
export { JCStartIcon } from "./j-c-start";
|
|
87
87
|
export { Link2UnlinkedIcon } from "./link-2-unlinked";
|
|
88
88
|
export { Link2Icon } from "./link-2";
|
|
89
|
-
export { LinkBlockIcon } from "./link-block";
|
|
90
89
|
export { LinkIcon } from "./link";
|
|
91
90
|
export { ListItemIcon } from "./list-item";
|
|
92
91
|
export { ListIcon } from "./list";
|
|
@@ -107,6 +106,7 @@ export { RefreshIcon } from "./refresh";
|
|
|
107
106
|
export { RepeatColumnIcon } from "./repeat-column";
|
|
108
107
|
export { RepeatGridIcon } from "./repeat-grid";
|
|
109
108
|
export { RepeatRowIcon } from "./repeat-row";
|
|
109
|
+
export { ResetIcon } from "./reset";
|
|
110
110
|
export { ScrollIcon } from "./scroll";
|
|
111
111
|
export { SectionLinkIcon } from "./section-link";
|
|
112
112
|
export { ShrinkIcon } from "./shrink";
|
|
@@ -117,8 +117,8 @@ export { SubscriptIcon } from "./subscript";
|
|
|
117
117
|
export { SubtractIcon } from "./subtract";
|
|
118
118
|
export { SuperscriptIcon } from "./superscript";
|
|
119
119
|
export { TextAlignLeftIcon } from "./text-align-left";
|
|
120
|
-
export { TextBlockIcon } from "./text-block";
|
|
121
120
|
export { TextItalicIcon } from "./text-italic";
|
|
121
|
+
export { TextIcon } from "./text";
|
|
122
122
|
export { VideoIcon } from "./video";
|
|
123
123
|
export { VimeoIcon } from "./vimeo";
|
|
124
124
|
export { WebstudioIcon } from "./webstudio";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const ResetIcon = `<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="M6.322 1.78a.783.783 0 0 1-.068 1.104L4.85 4.124h4.453A4.696 4.696 0 0 1 14 8.819c0 2.686-2.2 4.35-4.696 4.35h-1.63a.783.783 0 0 1 0-1.564h1.63c1.828 0 3.13-1.15 3.13-2.786a3.13 3.13 0 0 0-3.13-3.13H4.851l1.403 1.24A.783.783 0 1 1 5.217 8.1L2.264 5.493a.783.783 0 0 1 0-1.173L5.217 1.71a.783.783 0 0 1 1.105.068Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const TextIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
// Generated from icons/text
|
|
1
|
+
// Generated from icons/text.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 TextIcon = 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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clipRule="evenodd" /></svg>
|
|
@@ -12,4 +12,4 @@ export const TextBlockIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
|
12
12
|
}
|
|
13
13
|
);
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
TextIcon.displayName = "TextIcon";
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef } from "react";
|
|
3
|
-
const LinkBlockIcon = 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: "M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z", clipRule: "evenodd" }) });
|
|
6
|
-
}
|
|
7
|
-
);
|
|
8
|
-
LinkBlockIcon.displayName = "LinkBlockIcon";
|
|
9
|
-
export {
|
|
10
|
-
LinkBlockIcon
|
|
11
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const LinkBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
-
export {
|
|
3
|
-
LinkBlockIcon
|
|
4
|
-
};
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const TextBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|
|
2
|
-
export {
|
|
3
|
-
TextBlockIcon
|
|
4
|
-
};
|
|
@@ -1,31 +0,0 @@
|
|
|
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 link_block_exports = {};
|
|
20
|
-
__export(link_block_exports, {
|
|
21
|
-
LinkBlockIcon: () => LinkBlockIcon
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(link_block_exports);
|
|
24
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
-
var import_react = require("react");
|
|
26
|
-
const LinkBlockIcon = (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: "M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z", clipRule: "evenodd" }) });
|
|
29
|
-
}
|
|
30
|
-
);
|
|
31
|
-
LinkBlockIcon.displayName = "LinkBlockIcon";
|
|
@@ -1,24 +0,0 @@
|
|
|
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 link_block_exports = {};
|
|
20
|
-
__export(link_block_exports, {
|
|
21
|
-
LinkBlockIcon: () => LinkBlockIcon
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(link_block_exports);
|
|
24
|
-
const LinkBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -1,24 +0,0 @@
|
|
|
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 text_block_exports = {};
|
|
20
|
-
__export(text_block_exports, {
|
|
21
|
-
TextBlockIcon: () => TextBlockIcon
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(text_block_exports);
|
|
24
|
-
const TextBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const LinkBlockIcon = "<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=\"M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const TextBlockIcon = "<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=\"M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z\" clip-rule=\"evenodd\"/></svg>";
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// Generated from icons/link-block.svg
|
|
2
|
-
|
|
3
|
-
import { forwardRef } from "react";
|
|
4
|
-
import type { IconProps } from "../types";
|
|
5
|
-
|
|
6
|
-
// prettier-ignore
|
|
7
|
-
export const LinkBlockIcon = 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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z" clipRule="evenodd" /></svg>
|
|
11
|
-
);
|
|
12
|
-
}
|
|
13
|
-
);
|
|
14
|
-
|
|
15
|
-
LinkBlockIcon.displayName = "LinkBlockIcon";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const LinkBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.036.029.36.029.803.029 1.34v5.654c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.029-.802.029-1.34.029H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.095-1.036-.259a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.037-.029-.36-.029-.802-.029-1.34V5.174c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.259-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.054.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.068.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.261V5.2c0-.57 0-.96-.025-1.26-.024-.294-.068-.446-.122-.553a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM10.42 5.58c-.359-.36-1.108-.398-1.681.175l-.528.529a.65.65 0 1 1-.92-.92l.529-.528c.96-.96 2.54-1.155 3.52-.176.98.98.784 2.56-.176 3.52l-.529.529a.65.65 0 1 1-.919-.92l.529-.528c.573-.573.535-1.322.175-1.681ZM9.416 6.584a.65.65 0 0 1 0 .92L7.503 9.415a.65.65 0 0 1-.919-.92l1.913-1.912a.65.65 0 0 1 .919 0Zm-3.132.708a.65.65 0 0 1 0 .919l-.529.528c-.573.574-.535 1.322-.175 1.682.359.359 1.108.397 1.681-.176l.528-.529a.65.65 0 1 1 .92.92l-.529.528c-.96.96-2.54 1.156-3.52.176s-.784-2.56.176-3.52l.529-.528a.65.65 0 0 1 .919 0Z" clip-rule="evenodd"/></svg>`;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const TextBlockIcon = `<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="M5.173 1.35h5.654c.537 0 .98 0 1.34.03.373.03.715.095 1.036.259.499.254.904.66 1.158 1.158.164.32.229.663.26 1.037.029.36.029.802.029 1.34v5.653c0 .537 0 .98-.03 1.34-.03.373-.095.715-.259 1.036a2.65 2.65 0 0 1-1.158 1.158c-.32.164-.663.23-1.037.26-.36.03-.802.03-1.34.03H5.174c-.537 0-.98 0-1.34-.03-.373-.03-.715-.096-1.036-.26a2.65 2.65 0 0 1-1.158-1.158c-.164-.32-.23-.663-.26-1.036-.029-.36-.029-.803-.029-1.34V5.173c0-.537 0-.98.03-1.34.03-.373.095-.715.259-1.036a2.65 2.65 0 0 1 1.158-1.158c.32-.164.663-.229 1.036-.26.36-.029.803-.029 1.34-.029ZM3.939 2.675c-.293.024-.445.068-.552.122a1.35 1.35 0 0 0-.59.59c-.054.107-.098.26-.122.552-.025.301-.025.69-.025 1.261v5.6c0 .57 0 .96.025 1.26.024.294.068.446.122.553.13.254.336.46.59.59.107.055.259.098.552.122.301.025.69.025 1.261.025h5.6c.57 0 .96 0 1.26-.025.294-.024.446-.067.553-.122.254-.13.46-.336.59-.59.054-.107.098-.259.122-.552.025-.301.025-.69.025-1.26V5.2c0-.572 0-.96-.025-1.262-.024-.293-.068-.445-.122-.552a1.35 1.35 0 0 0-.59-.59c-.107-.054-.26-.098-.552-.122-.301-.024-.69-.025-1.261-.025H5.2c-.57 0-.96 0-1.26.025ZM5.2 4.017H10.8c.082 0 .177 0 .261.007a.995.995 0 0 1 .377.1.99.99 0 0 1 .433.433c.073.144.093.28.101.378.007.083.007.179.007.26v.806a.65.65 0 1 1-1.3 0v-.684H8.65v5.366H10a.65.65 0 1 1 0 1.3H6a.65.65 0 1 1 0-1.3h1.35V5.317H5.32V6a.65.65 0 0 1-1.3 0v-.805c0-.081 0-.177.007-.26a.995.995 0 0 1 .1-.378.99.99 0 0 1 .434-.432.995.995 0 0 1 .377-.101c.084-.007.18-.007.26-.007Z" clip-rule="evenodd"/></svg>`;
|