@webstudio-is/icons 0.19.0 → 0.21.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,2 +1,8 @@
1
+ export * from "./auto-scroll";
2
+ export * from "./eyecon-closed";
3
+ export * from "./eyecon-open";
4
+ export * from "./linked";
5
+ export * from "./scroll";
1
6
  export * from "./subscript";
2
7
  export * from "./superscript";
8
+ export * from "./unlinked";
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const LinkedIcon = 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
+ fillRule: "evenodd",
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",
16
+ clipRule: "evenodd"
17
+ })
18
+ });
19
+ }
20
+ );
21
+ LinkedIcon.displayName = "LinkedIcon";
22
+ export {
23
+ LinkedIcon
24
+ };
@@ -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
+ };
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const UnlinkedIcon = 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
+ fillRule: "evenodd",
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",
16
+ clipRule: "evenodd"
17
+ })
18
+ });
19
+ }
20
+ );
21
+ UnlinkedIcon.displayName = "UnlinkedIcon";
22
+ export {
23
+ UnlinkedIcon
24
+ };
@@ -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,5 +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);
21
+ __reExport(generated_exports, require("./linked"), module.exports);
22
+ __reExport(generated_exports, require("./scroll"), module.exports);
18
23
  __reExport(generated_exports, require("./subscript"), module.exports);
19
24
  __reExport(generated_exports, require("./superscript"), module.exports);
25
+ __reExport(generated_exports, require("./unlinked"), module.exports);
@@ -0,0 +1,44 @@
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 linked_exports = {};
20
+ __export(linked_exports, {
21
+ LinkedIcon: () => LinkedIcon
22
+ });
23
+ module.exports = __toCommonJS(linked_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const LinkedIcon = (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
+ fillRule: "evenodd",
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",
39
+ clipRule: "evenodd"
40
+ })
41
+ });
42
+ }
43
+ );
44
+ LinkedIcon.displayName = "LinkedIcon";
@@ -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";
@@ -0,0 +1,44 @@
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 unlinked_exports = {};
20
+ __export(unlinked_exports, {
21
+ UnlinkedIcon: () => UnlinkedIcon
22
+ });
23
+ module.exports = __toCommonJS(unlinked_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const UnlinkedIcon = (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
+ fillRule: "evenodd",
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",
39
+ clipRule: "evenodd"
40
+ })
41
+ });
42
+ }
43
+ );
44
+ UnlinkedIcon.displayName = "UnlinkedIcon";
package/lib/cjs/index.cjs CHANGED
@@ -58,8 +58,6 @@ __reExport(src_exports, require("./justify-items-space-between"), module.exports
58
58
  __reExport(src_exports, require("./justify-items-start"), module.exports);
59
59
  __reExport(src_exports, require("./gap-row"), module.exports);
60
60
  __reExport(src_exports, require("./gap-column"), module.exports);
61
- __reExport(src_exports, require("./lock-open"), module.exports);
62
- __reExport(src_exports, require("./lock-close"), module.exports);
63
61
  __reExport(src_exports, require("./aspect-ratio"), module.exports);
64
62
  __reExport(src_exports, require("./cloud"), module.exports);
65
63
  __reExport(src_exports, require("./trash"), module.exports);
package/lib/index.js CHANGED
@@ -41,8 +41,6 @@ export * from "./justify-items-space-between";
41
41
  export * from "./justify-items-start";
42
42
  export * from "./gap-row";
43
43
  export * from "./gap-column";
44
- export * from "./lock-open";
45
- export * from "./lock-close";
46
44
  export * from "./aspect-ratio";
47
45
  export * from "./cloud";
48
46
  export * from "./trash";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.19.0",
3
+ "version": "0.21.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.19.0"
27
+ "@webstudio-is/css-vars": "^0.21.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,2 +1,8 @@
1
+ export * from "./auto-scroll";
2
+ export * from "./eyecon-closed";
3
+ export * from "./eyecon-open";
4
+ export * from "./linked";
5
+ export * from "./scroll";
1
6
  export * from "./subscript";
2
7
  export * from "./superscript";
8
+ export * from "./unlinked";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/linked.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const LinkedIcon = 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 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
+ );
12
+ }
13
+ );
14
+
15
+ LinkedIcon.displayName = "LinkedIcon";
@@ -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";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/unlinked.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const UnlinkedIcon = 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 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
+ );
12
+ }
13
+ );
14
+
15
+ UnlinkedIcon.displayName = "UnlinkedIcon";
@@ -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
  >
package/src/index.ts CHANGED
@@ -41,8 +41,6 @@ export * from "./justify-items-space-between";
41
41
  export * from "./justify-items-start";
42
42
  export * from "./gap-row";
43
43
  export * from "./gap-column";
44
- export * from "./lock-open";
45
- export * from "./lock-close";
46
44
  export * from "./aspect-ratio";
47
45
  export * from "./cloud";
48
46
  export * from "./trash";
@@ -1,75 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
- mod
23
- ));
24
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
- var lock_close_exports = {};
26
- __export(lock_close_exports, {
27
- LockCloseIcon: () => LockCloseIcon
28
- });
29
- module.exports = __toCommonJS(lock_close_exports);
30
- var import_jsx_runtime = require("react/jsx-runtime");
31
- var React = __toESM(require("react"), 1);
32
- const LockCloseIcon = React.forwardRef(
33
- ({ color = "currentColor", ...props }, forwardedRef) => {
34
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
35
- width: "8",
36
- height: "10",
37
- viewBox: "0 0 8 10",
38
- fill: "none",
39
- xmlns: "http://www.w3.org/2000/svg",
40
- ...props,
41
- ref: forwardedRef,
42
- children: [
43
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", {
44
- clipPath: "url(#clip0_561_9202)",
45
- children: [
46
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", {
47
- width: "8",
48
- height: "9",
49
- transform: "translate(0 0.5)",
50
- fill: "none"
51
- }),
52
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
53
- fillRule: "evenodd",
54
- clipRule: "evenodd",
55
- d: "M1.14286 4.4375V3.3125C1.14286 2.56658 1.44388 1.85121 1.97969 1.32376C2.51551 0.796316 3.24224 0.5 4 0.5C4.75776 0.5 5.48449 0.796316 6.02031 1.32376C6.55612 1.85121 6.85714 2.56658 6.85714 3.3125V4.4375C7.16025 4.4375 7.45094 4.55603 7.66527 4.767C7.87959 4.97798 8 5.26413 8 5.5625V8.375C8 8.67337 7.87959 8.95952 7.66527 9.1705C7.45094 9.38147 7.16025 9.5 6.85714 9.5H1.14286C0.839753 9.5 0.549062 9.38147 0.334735 9.1705C0.120408 8.95952 0 8.67337 0 8.375V5.5625C0 5.26413 0.120408 4.97798 0.334735 4.767C0.549062 4.55603 0.839753 4.4375 1.14286 4.4375ZM5.71429 3.3125V4.4375H2.28571V3.3125C2.28571 2.86495 2.46633 2.43572 2.78782 2.11926C3.10931 1.80279 3.54534 1.625 4 1.625C4.45466 1.625 4.89069 1.80279 5.21218 2.11926C5.53367 2.43572 5.71429 2.86495 5.71429 3.3125Z",
56
- fill: color
57
- })
58
- ]
59
- }),
60
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", {
61
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("clipPath", {
62
- id: "clip0_561_9202",
63
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", {
64
- width: "8",
65
- height: "9",
66
- fill: "none",
67
- transform: "translate(0 0.5)"
68
- })
69
- })
70
- })
71
- ]
72
- });
73
- }
74
- );
75
- LockCloseIcon.displayName = "LockCloseIcon";
@@ -1,73 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
- mod
23
- ));
24
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
25
- var lock_open_exports = {};
26
- __export(lock_open_exports, {
27
- LockOpenIcon: () => LockOpenIcon
28
- });
29
- module.exports = __toCommonJS(lock_open_exports);
30
- var import_jsx_runtime = require("react/jsx-runtime");
31
- var React = __toESM(require("react"), 1);
32
- const LockOpenIcon = React.forwardRef(
33
- ({ color = "currentColor", ...props }, forwardedRef) => {
34
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
35
- width: "8",
36
- height: "10",
37
- viewBox: "0 0 8 10",
38
- fill: "none",
39
- xmlns: "http://www.w3.org/2000/svg",
40
- ...props,
41
- ref: forwardedRef,
42
- children: [
43
- /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", {
44
- clipPath: "url(#clip0_561_9202)",
45
- children: [
46
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", {
47
- width: "8",
48
- height: "9",
49
- transform: "translate(0 0.5)",
50
- fill: "none"
51
- }),
52
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
53
- d: "M4 0.5C3.24224 0.5 2.51551 0.80102 1.97969 1.33684C1.44388 1.87266 1.14286 2.59938 1.14286 3.35714V4.5C0.839753 4.5 0.549062 4.62041 0.334735 4.83474C0.120408 5.04906 0 5.33975 0 5.64286V8.5C0 8.8031 0.120408 9.09379 0.334735 9.30812C0.549062 9.52245 0.839753 9.64286 1.14286 9.64286H6.85714C7.16025 9.64286 7.45094 9.52245 7.66527 9.30812C7.87959 9.09379 8 8.8031 8 8.5V5.64286C8 5.33975 7.87959 5.04906 7.66527 4.83474C7.45094 4.62041 7.16025 4.5 6.85714 4.5H2.28571V3.35714C2.28557 2.9398 2.43768 2.53673 2.71352 2.22353C2.98936 1.91034 3.36998 1.70852 3.784 1.65594C4.19802 1.60335 4.61701 1.70361 4.96239 1.9379C5.30776 2.1722 5.5558 2.52444 5.66 2.92857C5.69789 3.07535 5.79253 3.20107 5.92311 3.27806C5.98777 3.31619 6.0593 3.3412 6.13362 3.35168C6.20795 3.36216 6.28361 3.3579 6.35629 3.33914C6.42896 3.32038 6.49723 3.28749 6.5572 3.24235C6.61717 3.1972 6.66765 3.14069 6.70578 3.07603C6.7439 3.01138 6.76892 2.93984 6.7794 2.86552C6.78988 2.7912 6.78562 2.71553 6.76686 2.64286C6.60831 2.02958 6.25053 1.48634 5.74972 1.09848C5.24891 0.710614 4.63344 0.500099 4 0.5V0.5Z",
54
- fill: color
55
- })
56
- ]
57
- }),
58
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("defs", {
59
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("clipPath", {
60
- id: "clip0_561_9202",
61
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("rect", {
62
- width: "8",
63
- height: "9",
64
- fill: "none",
65
- transform: "translate(0 0.5)"
66
- })
67
- })
68
- })
69
- ]
70
- });
71
- }
72
- );
73
- LockOpenIcon.displayName = "LockOpenIcon";
package/lib/lock-close.js DELETED
@@ -1,49 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import * as React from "react";
3
- const LockCloseIcon = React.forwardRef(
4
- ({ color = "currentColor", ...props }, forwardedRef) => {
5
- return /* @__PURE__ */ jsxs("svg", {
6
- width: "8",
7
- height: "10",
8
- viewBox: "0 0 8 10",
9
- fill: "none",
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ...props,
12
- ref: forwardedRef,
13
- children: [
14
- /* @__PURE__ */ jsxs("g", {
15
- clipPath: "url(#clip0_561_9202)",
16
- children: [
17
- /* @__PURE__ */ jsx("rect", {
18
- width: "8",
19
- height: "9",
20
- transform: "translate(0 0.5)",
21
- fill: "none"
22
- }),
23
- /* @__PURE__ */ jsx("path", {
24
- fillRule: "evenodd",
25
- clipRule: "evenodd",
26
- d: "M1.14286 4.4375V3.3125C1.14286 2.56658 1.44388 1.85121 1.97969 1.32376C2.51551 0.796316 3.24224 0.5 4 0.5C4.75776 0.5 5.48449 0.796316 6.02031 1.32376C6.55612 1.85121 6.85714 2.56658 6.85714 3.3125V4.4375C7.16025 4.4375 7.45094 4.55603 7.66527 4.767C7.87959 4.97798 8 5.26413 8 5.5625V8.375C8 8.67337 7.87959 8.95952 7.66527 9.1705C7.45094 9.38147 7.16025 9.5 6.85714 9.5H1.14286C0.839753 9.5 0.549062 9.38147 0.334735 9.1705C0.120408 8.95952 0 8.67337 0 8.375V5.5625C0 5.26413 0.120408 4.97798 0.334735 4.767C0.549062 4.55603 0.839753 4.4375 1.14286 4.4375ZM5.71429 3.3125V4.4375H2.28571V3.3125C2.28571 2.86495 2.46633 2.43572 2.78782 2.11926C3.10931 1.80279 3.54534 1.625 4 1.625C4.45466 1.625 4.89069 1.80279 5.21218 2.11926C5.53367 2.43572 5.71429 2.86495 5.71429 3.3125Z",
27
- fill: color
28
- })
29
- ]
30
- }),
31
- /* @__PURE__ */ jsx("defs", {
32
- children: /* @__PURE__ */ jsx("clipPath", {
33
- id: "clip0_561_9202",
34
- children: /* @__PURE__ */ jsx("rect", {
35
- width: "8",
36
- height: "9",
37
- fill: "none",
38
- transform: "translate(0 0.5)"
39
- })
40
- })
41
- })
42
- ]
43
- });
44
- }
45
- );
46
- LockCloseIcon.displayName = "LockCloseIcon";
47
- export {
48
- LockCloseIcon
49
- };
package/lib/lock-open.js DELETED
@@ -1,47 +0,0 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
2
- import * as React from "react";
3
- const LockOpenIcon = React.forwardRef(
4
- ({ color = "currentColor", ...props }, forwardedRef) => {
5
- return /* @__PURE__ */ jsxs("svg", {
6
- width: "8",
7
- height: "10",
8
- viewBox: "0 0 8 10",
9
- fill: "none",
10
- xmlns: "http://www.w3.org/2000/svg",
11
- ...props,
12
- ref: forwardedRef,
13
- children: [
14
- /* @__PURE__ */ jsxs("g", {
15
- clipPath: "url(#clip0_561_9202)",
16
- children: [
17
- /* @__PURE__ */ jsx("rect", {
18
- width: "8",
19
- height: "9",
20
- transform: "translate(0 0.5)",
21
- fill: "none"
22
- }),
23
- /* @__PURE__ */ jsx("path", {
24
- d: "M4 0.5C3.24224 0.5 2.51551 0.80102 1.97969 1.33684C1.44388 1.87266 1.14286 2.59938 1.14286 3.35714V4.5C0.839753 4.5 0.549062 4.62041 0.334735 4.83474C0.120408 5.04906 0 5.33975 0 5.64286V8.5C0 8.8031 0.120408 9.09379 0.334735 9.30812C0.549062 9.52245 0.839753 9.64286 1.14286 9.64286H6.85714C7.16025 9.64286 7.45094 9.52245 7.66527 9.30812C7.87959 9.09379 8 8.8031 8 8.5V5.64286C8 5.33975 7.87959 5.04906 7.66527 4.83474C7.45094 4.62041 7.16025 4.5 6.85714 4.5H2.28571V3.35714C2.28557 2.9398 2.43768 2.53673 2.71352 2.22353C2.98936 1.91034 3.36998 1.70852 3.784 1.65594C4.19802 1.60335 4.61701 1.70361 4.96239 1.9379C5.30776 2.1722 5.5558 2.52444 5.66 2.92857C5.69789 3.07535 5.79253 3.20107 5.92311 3.27806C5.98777 3.31619 6.0593 3.3412 6.13362 3.35168C6.20795 3.36216 6.28361 3.3579 6.35629 3.33914C6.42896 3.32038 6.49723 3.28749 6.5572 3.24235C6.61717 3.1972 6.66765 3.14069 6.70578 3.07603C6.7439 3.01138 6.76892 2.93984 6.7794 2.86552C6.78988 2.7912 6.78562 2.71553 6.76686 2.64286C6.60831 2.02958 6.25053 1.48634 5.74972 1.09848C5.24891 0.710614 4.63344 0.500099 4 0.5V0.5Z",
25
- fill: color
26
- })
27
- ]
28
- }),
29
- /* @__PURE__ */ jsx("defs", {
30
- children: /* @__PURE__ */ jsx("clipPath", {
31
- id: "clip0_561_9202",
32
- children: /* @__PURE__ */ jsx("rect", {
33
- width: "8",
34
- height: "9",
35
- fill: "none",
36
- transform: "translate(0 0.5)"
37
- })
38
- })
39
- })
40
- ]
41
- });
42
- }
43
- );
44
- LockOpenIcon.displayName = "LockOpenIcon";
45
- export {
46
- LockOpenIcon
47
- };
@@ -1,39 +0,0 @@
1
- import * as React from "react";
2
- import { IconProps } from "./types";
3
-
4
- export const LockCloseIcon = React.forwardRef<SVGSVGElement, IconProps>(
5
- ({ color = "currentColor", ...props }, forwardedRef) => {
6
- return (
7
- <svg
8
- width="8"
9
- height="10"
10
- viewBox="0 0 8 10"
11
- fill="none"
12
- xmlns="http://www.w3.org/2000/svg"
13
- {...props}
14
- ref={forwardedRef}
15
- >
16
- <g clipPath="url(#clip0_561_9202)">
17
- <rect width="8" height="9" transform="translate(0 0.5)" fill="none" />
18
- <path
19
- fillRule="evenodd"
20
- clipRule="evenodd"
21
- d="M1.14286 4.4375V3.3125C1.14286 2.56658 1.44388 1.85121 1.97969 1.32376C2.51551 0.796316 3.24224 0.5 4 0.5C4.75776 0.5 5.48449 0.796316 6.02031 1.32376C6.55612 1.85121 6.85714 2.56658 6.85714 3.3125V4.4375C7.16025 4.4375 7.45094 4.55603 7.66527 4.767C7.87959 4.97798 8 5.26413 8 5.5625V8.375C8 8.67337 7.87959 8.95952 7.66527 9.1705C7.45094 9.38147 7.16025 9.5 6.85714 9.5H1.14286C0.839753 9.5 0.549062 9.38147 0.334735 9.1705C0.120408 8.95952 0 8.67337 0 8.375V5.5625C0 5.26413 0.120408 4.97798 0.334735 4.767C0.549062 4.55603 0.839753 4.4375 1.14286 4.4375ZM5.71429 3.3125V4.4375H2.28571V3.3125C2.28571 2.86495 2.46633 2.43572 2.78782 2.11926C3.10931 1.80279 3.54534 1.625 4 1.625C4.45466 1.625 4.89069 1.80279 5.21218 2.11926C5.53367 2.43572 5.71429 2.86495 5.71429 3.3125Z"
22
- fill={color}
23
- />
24
- </g>
25
- <defs>
26
- <clipPath id="clip0_561_9202">
27
- <rect
28
- width="8"
29
- height="9"
30
- fill="none"
31
- transform="translate(0 0.5)"
32
- />
33
- </clipPath>
34
- </defs>
35
- </svg>
36
- );
37
- }
38
- );
39
- LockCloseIcon.displayName = "LockCloseIcon";
package/src/lock-open.tsx DELETED
@@ -1,37 +0,0 @@
1
- import * as React from "react";
2
- import { IconProps } from "./types";
3
-
4
- export const LockOpenIcon = React.forwardRef<SVGSVGElement, IconProps>(
5
- ({ color = "currentColor", ...props }, forwardedRef) => {
6
- return (
7
- <svg
8
- width="8"
9
- height="10"
10
- viewBox="0 0 8 10"
11
- fill="none"
12
- xmlns="http://www.w3.org/2000/svg"
13
- {...props}
14
- ref={forwardedRef}
15
- >
16
- <g clipPath="url(#clip0_561_9202)">
17
- <rect width="8" height="9" transform="translate(0 0.5)" fill="none" />
18
- <path
19
- d="M4 0.5C3.24224 0.5 2.51551 0.80102 1.97969 1.33684C1.44388 1.87266 1.14286 2.59938 1.14286 3.35714V4.5C0.839753 4.5 0.549062 4.62041 0.334735 4.83474C0.120408 5.04906 0 5.33975 0 5.64286V8.5C0 8.8031 0.120408 9.09379 0.334735 9.30812C0.549062 9.52245 0.839753 9.64286 1.14286 9.64286H6.85714C7.16025 9.64286 7.45094 9.52245 7.66527 9.30812C7.87959 9.09379 8 8.8031 8 8.5V5.64286C8 5.33975 7.87959 5.04906 7.66527 4.83474C7.45094 4.62041 7.16025 4.5 6.85714 4.5H2.28571V3.35714C2.28557 2.9398 2.43768 2.53673 2.71352 2.22353C2.98936 1.91034 3.36998 1.70852 3.784 1.65594C4.19802 1.60335 4.61701 1.70361 4.96239 1.9379C5.30776 2.1722 5.5558 2.52444 5.66 2.92857C5.69789 3.07535 5.79253 3.20107 5.92311 3.27806C5.98777 3.31619 6.0593 3.3412 6.13362 3.35168C6.20795 3.36216 6.28361 3.3579 6.35629 3.33914C6.42896 3.32038 6.49723 3.28749 6.5572 3.24235C6.61717 3.1972 6.66765 3.14069 6.70578 3.07603C6.7439 3.01138 6.76892 2.93984 6.7794 2.86552C6.78988 2.7912 6.78562 2.71553 6.76686 2.64286C6.60831 2.02958 6.25053 1.48634 5.74972 1.09848C5.24891 0.710614 4.63344 0.500099 4 0.5V0.5Z"
20
- fill={color}
21
- />
22
- </g>
23
- <defs>
24
- <clipPath id="clip0_561_9202">
25
- <rect
26
- width="8"
27
- height="9"
28
- fill="none"
29
- transform="translate(0 0.5)"
30
- />
31
- </clipPath>
32
- </defs>
33
- </svg>
34
- );
35
- }
36
- );
37
- LockOpenIcon.displayName = "LockOpenIcon";