@webstudio-is/icons 0.20.0 → 0.22.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.
@@ -0,0 +1,29 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const AutoScrollIcon = forwardRef(
4
+ ({ color = "currentColor", ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: "16",
9
+ height: "16",
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ d: "M2.375 3.302c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM2.375 12.698c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM11.23 5.429c0-.26-.211-.47-.473-.47a.472.472 0 0 0-.474.47v3.946l-1.238-1.23a.476.476 0 0 0-.67 0 .468.468 0 0 0 0 .666l2.047 2.033a.476.476 0 0 0 .67 0L13.14 8.81a.468.468 0 0 0 0-.666.476.476 0 0 0-.67 0l-1.238 1.23V5.429Z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fillRule: "evenodd",
19
+ d: "M5.487 4.965a.749.749 0 0 1 .262.345c.037.087.075.2.115.317l1.629 4.825a.482.482 0 0 1-.913.304l-.581-1.722H4.272l-.58 1.722a.482.482 0 0 1-.913-.304l1.623-4.81.005-.015c.04-.117.078-.23.114-.316l.001-.001c.028-.067.1-.237.262-.345a.631.631 0 0 1 .703 0Zm-.892 3.113h1.081l-.54-1.6-.54 1.6Z",
20
+ clipRule: "evenodd"
21
+ })
22
+ ]
23
+ });
24
+ }
25
+ );
26
+ AutoScrollIcon.displayName = "AutoScrollIcon";
27
+ export {
28
+ AutoScrollIcon
29
+ };
@@ -0,0 +1,22 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const EyeconClosedIcon = forwardRef(
4
+ ({ color = "currentColor", ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: "16",
9
+ height: "16",
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ d: "M2.209 7.594a.55.55 0 0 1 .757.175 6.463 6.463 0 0 0 1.36 1.562A5.708 5.708 0 0 0 8 10.653c2.146 0 3.944-1.14 5.034-2.884a.55.55 0 0 1 .933.583c-.323.516-.702.99-1.13 1.41l.832.831a.55.55 0 1 1-.778.778l-.899-.898a6.815 6.815 0 0 1-1.889.954l.314 1.172a.55.55 0 0 1-1.062.284l-.323-1.206a6.992 6.992 0 0 1-2.063 0l-.323 1.206a.55.55 0 1 1-1.062-.284l.314-1.171a6.812 6.812 0 0 1-1.89-.955l-.897.898a.55.55 0 0 1-.778-.777l.83-.831a7.665 7.665 0 0 1-1.13-1.411.55.55 0 0 1 .176-.758Z"
15
+ })
16
+ });
17
+ }
18
+ );
19
+ EyeconClosedIcon.displayName = "EyeconClosedIcon";
20
+ export {
21
+ EyeconClosedIcon
22
+ };
@@ -0,0 +1,29 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const EyeconOpenIcon = forwardRef(
4
+ ({ color = "currentColor", ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: "16",
9
+ height: "16",
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ d: "M8 9.849A1.849 1.849 0 1 0 8 6.15 1.849 1.849 0 0 0 8 9.85Z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fillRule: "evenodd",
19
+ d: "M2.132 8.458a.857.857 0 0 1 0-.915A6.927 6.927 0 0 1 8 4.303a6.927 6.927 0 0 1 5.868 3.24.857.857 0 0 1 0 .915A6.927 6.927 0 0 1 8 11.698a6.927 6.927 0 0 1-5.868-3.24ZM8 10.698A5.926 5.926 0 0 1 3.027 8 5.926 5.926 0 0 1 8 5.303 5.926 5.926 0 0 1 12.973 8 5.926 5.926 0 0 1 8 10.697Z",
20
+ clipRule: "evenodd"
21
+ })
22
+ ]
23
+ });
24
+ }
25
+ );
26
+ EyeconOpenIcon.displayName = "EyeconOpenIcon";
27
+ export {
28
+ EyeconOpenIcon
29
+ };
@@ -1,4 +1,8 @@
1
+ export * from "./auto-scroll";
2
+ export * from "./eyecon-closed";
3
+ export * from "./eyecon-open";
1
4
  export * from "./linked";
5
+ export * from "./scroll";
2
6
  export * from "./subscript";
3
7
  export * from "./superscript";
4
8
  export * from "./unlinked";
@@ -11,7 +11,6 @@ const LinkedIcon = forwardRef(
11
11
  ...props,
12
12
  ref: forwardedRef,
13
13
  children: /* @__PURE__ */ jsx("path", {
14
- fill: "#11181C",
15
14
  fillRule: "evenodd",
16
15
  d: "M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776ZM5.233 8a.7.7 0 0 1 .7-.7h4.133a.7.7 0 1 1 0 1.4H5.933a.7.7 0 0 1-.7-.7Z",
17
16
  clipRule: "evenodd"
@@ -0,0 +1,29 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const ScrollIcon = forwardRef(
4
+ ({ color = "currentColor", ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 16 16",
8
+ width: "16",
9
+ height: "16",
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ d: "M10.953 5.399a.484.484 0 0 0-.49-.478c-.27 0-.49.214-.49.478v4.009l-1.28-1.25a.499.499 0 0 0-.693 0 .47.47 0 0 0 0 .677l2.117 2.065a.499.499 0 0 0 .693 0l2.116-2.065a.47.47 0 0 0 0-.676.499.499 0 0 0-.693 0l-1.28 1.249V5.399Z"
16
+ }),
17
+ /* @__PURE__ */ jsx("path", {
18
+ fillRule: "evenodd",
19
+ d: "M1.94 12.7c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 3.3c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 5.65c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 10.35c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 8c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55Z",
20
+ clipRule: "evenodd"
21
+ })
22
+ ]
23
+ });
24
+ }
25
+ );
26
+ ScrollIcon.displayName = "ScrollIcon";
27
+ export {
28
+ ScrollIcon
29
+ };
@@ -11,7 +11,6 @@ const UnlinkedIcon = forwardRef(
11
11
  ...props,
12
12
  ref: forwardedRef,
13
13
  children: /* @__PURE__ */ jsx("path", {
14
- fill: "#11181C",
15
14
  fillRule: "evenodd",
16
15
  d: "M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776Z",
17
16
  clipRule: "evenodd"
@@ -0,0 +1,49 @@
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 auto_scroll_exports = {};
20
+ __export(auto_scroll_exports, {
21
+ AutoScrollIcon: () => AutoScrollIcon
22
+ });
23
+ module.exports = __toCommonJS(auto_scroll_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const AutoScrollIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: "16",
32
+ height: "16",
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ d: "M2.375 3.302c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM2.375 12.698c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM11.23 5.429c0-.26-.211-.47-.473-.47a.472.472 0 0 0-.474.47v3.946l-1.238-1.23a.476.476 0 0 0-.67 0 .468.468 0 0 0 0 .666l2.047 2.033a.476.476 0 0 0 .67 0L13.14 8.81a.468.468 0 0 0 0-.666.476.476 0 0 0-.67 0l-1.238 1.23V5.429Z"
39
+ }),
40
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
41
+ fillRule: "evenodd",
42
+ d: "M5.487 4.965a.749.749 0 0 1 .262.345c.037.087.075.2.115.317l1.629 4.825a.482.482 0 0 1-.913.304l-.581-1.722H4.272l-.58 1.722a.482.482 0 0 1-.913-.304l1.623-4.81.005-.015c.04-.117.078-.23.114-.316l.001-.001c.028-.067.1-.237.262-.345a.631.631 0 0 1 .703 0Zm-.892 3.113h1.081l-.54-1.6-.54 1.6Z",
43
+ clipRule: "evenodd"
44
+ })
45
+ ]
46
+ });
47
+ }
48
+ );
49
+ AutoScrollIcon.displayName = "AutoScrollIcon";
@@ -0,0 +1,42 @@
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 eyecon_closed_exports = {};
20
+ __export(eyecon_closed_exports, {
21
+ EyeconClosedIcon: () => EyeconClosedIcon
22
+ });
23
+ module.exports = __toCommonJS(eyecon_closed_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const EyeconClosedIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: "16",
32
+ height: "16",
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ d: "M2.209 7.594a.55.55 0 0 1 .757.175 6.463 6.463 0 0 0 1.36 1.562A5.708 5.708 0 0 0 8 10.653c2.146 0 3.944-1.14 5.034-2.884a.55.55 0 0 1 .933.583c-.323.516-.702.99-1.13 1.41l.832.831a.55.55 0 1 1-.778.778l-.899-.898a6.815 6.815 0 0 1-1.889.954l.314 1.172a.55.55 0 0 1-1.062.284l-.323-1.206a6.992 6.992 0 0 1-2.063 0l-.323 1.206a.55.55 0 1 1-1.062-.284l.314-1.171a6.812 6.812 0 0 1-1.89-.955l-.897.898a.55.55 0 0 1-.778-.777l.83-.831a7.665 7.665 0 0 1-1.13-1.411.55.55 0 0 1 .176-.758Z"
38
+ })
39
+ });
40
+ }
41
+ );
42
+ EyeconClosedIcon.displayName = "EyeconClosedIcon";
@@ -0,0 +1,49 @@
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 eyecon_open_exports = {};
20
+ __export(eyecon_open_exports, {
21
+ EyeconOpenIcon: () => EyeconOpenIcon
22
+ });
23
+ module.exports = __toCommonJS(eyecon_open_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const EyeconOpenIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: "16",
32
+ height: "16",
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ d: "M8 9.849A1.849 1.849 0 1 0 8 6.15 1.849 1.849 0 0 0 8 9.85Z"
39
+ }),
40
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
41
+ fillRule: "evenodd",
42
+ d: "M2.132 8.458a.857.857 0 0 1 0-.915A6.927 6.927 0 0 1 8 4.303a6.927 6.927 0 0 1 5.868 3.24.857.857 0 0 1 0 .915A6.927 6.927 0 0 1 8 11.698a6.927 6.927 0 0 1-5.868-3.24ZM8 10.698A5.926 5.926 0 0 1 3.027 8 5.926 5.926 0 0 1 8 5.303 5.926 5.926 0 0 1 12.973 8 5.926 5.926 0 0 1 8 10.697Z",
43
+ clipRule: "evenodd"
44
+ })
45
+ ]
46
+ });
47
+ }
48
+ );
49
+ EyeconOpenIcon.displayName = "EyeconOpenIcon";
@@ -15,7 +15,11 @@ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "defau
15
15
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
16
  var generated_exports = {};
17
17
  module.exports = __toCommonJS(generated_exports);
18
+ __reExport(generated_exports, require("./auto-scroll"), module.exports);
19
+ __reExport(generated_exports, require("./eyecon-closed"), module.exports);
20
+ __reExport(generated_exports, require("./eyecon-open"), module.exports);
18
21
  __reExport(generated_exports, require("./linked"), module.exports);
22
+ __reExport(generated_exports, require("./scroll"), module.exports);
19
23
  __reExport(generated_exports, require("./subscript"), module.exports);
20
24
  __reExport(generated_exports, require("./superscript"), module.exports);
21
25
  __reExport(generated_exports, require("./unlinked"), module.exports);
@@ -34,7 +34,6 @@ const LinkedIcon = (0, import_react.forwardRef)(
34
34
  ...props,
35
35
  ref: forwardedRef,
36
36
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
- fill: "#11181C",
38
37
  fillRule: "evenodd",
39
38
  d: "M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776ZM5.233 8a.7.7 0 0 1 .7-.7h4.133a.7.7 0 1 1 0 1.4H5.933a.7.7 0 0 1-.7-.7Z",
40
39
  clipRule: "evenodd"
@@ -0,0 +1,49 @@
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 scroll_exports = {};
20
+ __export(scroll_exports, {
21
+ ScrollIcon: () => ScrollIcon
22
+ });
23
+ module.exports = __toCommonJS(scroll_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const ScrollIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 16 16",
31
+ width: "16",
32
+ height: "16",
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ d: "M10.953 5.399a.484.484 0 0 0-.49-.478c-.27 0-.49.214-.49.478v4.009l-1.28-1.25a.499.499 0 0 0-.693 0 .47.47 0 0 0 0 .677l2.117 2.065a.499.499 0 0 0 .693 0l2.116-2.065a.47.47 0 0 0 0-.676.499.499 0 0 0-.693 0l-1.28 1.249V5.399Z"
39
+ }),
40
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
41
+ fillRule: "evenodd",
42
+ d: "M1.94 12.7c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 3.3c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 5.65c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 10.35c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 8c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55Z",
43
+ clipRule: "evenodd"
44
+ })
45
+ ]
46
+ });
47
+ }
48
+ );
49
+ ScrollIcon.displayName = "ScrollIcon";
@@ -34,7 +34,6 @@ const UnlinkedIcon = (0, import_react.forwardRef)(
34
34
  ...props,
35
35
  ref: forwardedRef,
36
36
  children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
- fill: "#11181C",
38
37
  fillRule: "evenodd",
39
38
  d: "M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776Z",
40
39
  clipRule: "evenodd"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.20.0",
3
+ "version": "0.22.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@radix-ui/react-icons": "^1.1.0",
26
26
  "react": "^17.0.2",
27
- "@webstudio-is/css-vars": "^0.20.0"
27
+ "@webstudio-is/css-vars": "^0.22.0"
28
28
  },
29
29
  "module": "./lib/index.js",
30
30
  "exports": {
@@ -0,0 +1,15 @@
1
+ // Generated from icons/auto-scroll.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const AutoScrollIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path d="M2.375 3.302c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM2.375 12.698c0-.305.28-.552.625-.552h10c.345 0 .625.247.625.552 0 .305-.28.552-.625.552H3c-.345 0-.625-.247-.625-.552ZM11.23 5.429c0-.26-.211-.47-.473-.47a.472.472 0 0 0-.474.47v3.946l-1.238-1.23a.476.476 0 0 0-.67 0 .468.468 0 0 0 0 .666l2.047 2.033a.476.476 0 0 0 .67 0L13.14 8.81a.468.468 0 0 0 0-.666.476.476 0 0 0-.67 0l-1.238 1.23V5.429Z" /><path fillRule="evenodd" d="M5.487 4.965a.749.749 0 0 1 .262.345c.037.087.075.2.115.317l1.629 4.825a.482.482 0 0 1-.913.304l-.581-1.722H4.272l-.58 1.722a.482.482 0 0 1-.913-.304l1.623-4.81.005-.015c.04-.117.078-.23.114-.316l.001-.001c.028-.067.1-.237.262-.345a.631.631 0 0 1 .703 0Zm-.892 3.113h1.081l-.54-1.6-.54 1.6Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ AutoScrollIcon.displayName = "AutoScrollIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/eyecon-closed.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const EyeconClosedIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path d="M2.209 7.594a.55.55 0 0 1 .757.175 6.463 6.463 0 0 0 1.36 1.562A5.708 5.708 0 0 0 8 10.653c2.146 0 3.944-1.14 5.034-2.884a.55.55 0 0 1 .933.583c-.323.516-.702.99-1.13 1.41l.832.831a.55.55 0 1 1-.778.778l-.899-.898a6.815 6.815 0 0 1-1.889.954l.314 1.172a.55.55 0 0 1-1.062.284l-.323-1.206a6.992 6.992 0 0 1-2.063 0l-.323 1.206a.55.55 0 1 1-1.062-.284l.314-1.171a6.812 6.812 0 0 1-1.89-.955l-.897.898a.55.55 0 0 1-.778-.777l.83-.831a7.665 7.665 0 0 1-1.13-1.411.55.55 0 0 1 .176-.758Z" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ EyeconClosedIcon.displayName = "EyeconClosedIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/eyecon-open.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const EyeconOpenIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path d="M8 9.849A1.849 1.849 0 1 0 8 6.15 1.849 1.849 0 0 0 8 9.85Z" /><path fillRule="evenodd" d="M2.132 8.458a.857.857 0 0 1 0-.915A6.927 6.927 0 0 1 8 4.303a6.927 6.927 0 0 1 5.868 3.24.857.857 0 0 1 0 .915A6.927 6.927 0 0 1 8 11.698a6.927 6.927 0 0 1-5.868-3.24ZM8 10.698A5.926 5.926 0 0 1 3.027 8 5.926 5.926 0 0 1 8 5.303 5.926 5.926 0 0 1 12.973 8 5.926 5.926 0 0 1 8 10.697Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ EyeconOpenIcon.displayName = "EyeconOpenIcon";
@@ -1,4 +1,8 @@
1
+ export * from "./auto-scroll";
2
+ export * from "./eyecon-closed";
3
+ export * from "./eyecon-open";
1
4
  export * from "./linked";
5
+ export * from "./scroll";
2
6
  export * from "./subscript";
3
7
  export * from "./superscript";
4
8
  export * from "./unlinked";
@@ -7,7 +7,7 @@ import { IconProps } from "../types";
7
7
  export const LinkedIcon = forwardRef<SVGSVGElement, IconProps>(
8
8
  ({ color = "currentColor", ...props }, forwardedRef) => {
9
9
  return (
10
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path fill="#11181C" fillRule="evenodd" d="M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776ZM5.233 8a.7.7 0 0 1 .7-.7h4.133a.7.7 0 1 1 0 1.4H5.933a.7.7 0 0 1-.7-.7Z" clipRule="evenodd" /></svg>
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776ZM5.233 8a.7.7 0 0 1 .7-.7h4.133a.7.7 0 1 1 0 1.4H5.933a.7.7 0 0 1-.7-.7Z" clipRule="evenodd" /></svg>
11
11
  );
12
12
  }
13
13
  );
@@ -0,0 +1,15 @@
1
+ // Generated from icons/scroll.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const ScrollIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path d="M10.953 5.399a.484.484 0 0 0-.49-.478c-.27 0-.49.214-.49.478v4.009l-1.28-1.25a.499.499 0 0 0-.693 0 .47.47 0 0 0 0 .677l2.117 2.065a.499.499 0 0 0 .693 0l2.116-2.065a.47.47 0 0 0 0-.676.499.499 0 0 0-.693 0l-1.28 1.249V5.399Z" /><path fillRule="evenodd" d="M1.94 12.7c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 3.3c0 .304.277.55.618.55h10.894c.341 0 .618-.246.618-.55 0-.304-.277-.55-.618-.55H2.558c-.341 0-.618.246-.618.55ZM1.94 5.65c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 10.35c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55ZM1.94 8c0 .304.26.55.582.55h3.796c.321 0 .582-.246.582-.55 0-.304-.26-.55-.582-.55H2.522c-.321 0-.582.246-.582.55Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ ScrollIcon.displayName = "ScrollIcon";
@@ -7,7 +7,7 @@ import { IconProps } from "../types";
7
7
  export const UnlinkedIcon = forwardRef<SVGSVGElement, IconProps>(
8
8
  ({ color = "currentColor", ...props }, forwardedRef) => {
9
9
  return (
10
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path fill="#11181C" fillRule="evenodd" d="M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776Z" clipRule="evenodd" /></svg>
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16" fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M11.223 6.08h-1.142a.7.7 0 0 1 0-1.4h1.142c1.952 0 3.7 1.4 3.7 3.32s-1.748 3.32-3.7 3.32h-1.142a.7.7 0 0 1 0-1.4h1.142c1.363 0 2.3-.946 2.3-1.92s-.937-1.92-2.3-1.92Zm-6.447 0c-1.363 0-2.3.946-2.3 1.92 0 .975.937 1.92 2.3 1.92h1.142a.7.7 0 0 1 0 1.4H4.776c-1.952 0-3.7-1.4-3.7-3.32s1.748-3.32 3.7-3.32h1.142a.7.7 0 1 1 0 1.4H4.776Z" clipRule="evenodd" /></svg>
11
11
  );
12
12
  }
13
13
  );
@@ -34,7 +34,7 @@ export const Icons = () => {
34
34
  textAlign: "center",
35
35
  wordWrap: "break-word",
36
36
  width: "100%",
37
- fontSize: "$fontSize$4",
37
+ fontSize: "14px",
38
38
  color: "#5a5a5a",
39
39
  }}
40
40
  >