@webstudio-is/icons 0.18.0 → 0.20.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.
@@ -1,2 +1,4 @@
1
+ export * from "./linked";
1
2
  export * from "./subscript";
2
3
  export * from "./superscript";
4
+ export * from "./unlinked";
@@ -0,0 +1,25 @@
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
+ fill: "#11181C",
15
+ fillRule: "evenodd",
16
+ 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
+ clipRule: "evenodd"
18
+ })
19
+ });
20
+ }
21
+ );
22
+ LinkedIcon.displayName = "LinkedIcon";
23
+ export {
24
+ LinkedIcon
25
+ };
@@ -0,0 +1,25 @@
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
+ fill: "#11181C",
15
+ fillRule: "evenodd",
16
+ 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
+ clipRule: "evenodd"
18
+ })
19
+ });
20
+ }
21
+ );
22
+ UnlinkedIcon.displayName = "UnlinkedIcon";
23
+ export {
24
+ UnlinkedIcon
25
+ };
@@ -15,5 +15,7 @@ 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("./linked"), module.exports);
18
19
  __reExport(generated_exports, require("./subscript"), module.exports);
19
20
  __reExport(generated_exports, require("./superscript"), module.exports);
21
+ __reExport(generated_exports, require("./unlinked"), module.exports);
@@ -0,0 +1,45 @@
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
+ fill: "#11181C",
38
+ fillRule: "evenodd",
39
+ 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
+ clipRule: "evenodd"
41
+ })
42
+ });
43
+ }
44
+ );
45
+ LinkedIcon.displayName = "LinkedIcon";
@@ -0,0 +1,45 @@
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
+ fill: "#11181C",
38
+ fillRule: "evenodd",
39
+ 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
+ clipRule: "evenodd"
41
+ })
42
+ });
43
+ }
44
+ );
45
+ 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,32 +1,21 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.18.0",
3
+ "version": "0.20.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
7
7
  "type": "module",
8
- "scripts": {
9
- "dev": "build-package --watch",
10
- "build": "build-package",
11
- "generate": "rm -fr src/__generated__ && NODE_OPTIONS='--loader=tsx' svgo-jsx svgo-jsx.config.ts",
12
- "typecheck": "tsc --noEmit",
13
- "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
14
- "checks": "yarn typecheck && yarn lint",
15
- "storybook:run": "start-storybook -p 6006",
16
- "storybook:build": "build-storybook",
17
- "publish-to-npm": "bash ../../bin/publish-to-npm.sh"
18
- },
19
8
  "devDependencies": {
20
9
  "@storybook/jest": "^0.0.10",
21
10
  "@storybook/react": "^6.5.14",
22
11
  "@storybook/testing-library": "^0.0.13",
23
12
  "@svgo/jsx": "^0.4.2",
24
13
  "@types/react": "^17.0.24",
25
- "@webstudio-is/scripts": "*",
26
- "@webstudio-is/storybook-config": "*",
27
- "@webstudio-is/tsconfig": "*",
28
14
  "tsx": "^3.9.0",
29
- "typescript": "4.7.4"
15
+ "typescript": "4.7.4",
16
+ "@webstudio-is/scripts": "^0.0.0",
17
+ "@webstudio-is/storybook-config": "^0.0.0",
18
+ "@webstudio-is/tsconfig": "^1.0.1"
30
19
  },
31
20
  "peerDependencies": {
32
21
  "react": "^17.0.2",
@@ -34,8 +23,8 @@
34
23
  },
35
24
  "dependencies": {
36
25
  "@radix-ui/react-icons": "^1.1.0",
37
- "@webstudio-is/css-vars": "*",
38
- "react": "^17.0.2"
26
+ "react": "^17.0.2",
27
+ "@webstudio-is/css-vars": "^0.20.0"
39
28
  },
40
29
  "module": "./lib/index.js",
41
30
  "exports": {
@@ -50,5 +39,15 @@
50
39
  ],
51
40
  "license": "MIT",
52
41
  "private": false,
53
- "sideEffects": false
54
- }
42
+ "sideEffects": false,
43
+ "scripts": {
44
+ "dev": "build-package --watch",
45
+ "build": "build-package",
46
+ "generate": "rm -fr src/__generated__ && NODE_OPTIONS='--loader=tsx' svgo-jsx svgo-jsx.config.ts",
47
+ "typecheck": "tsc --noEmit",
48
+ "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
49
+ "checks": "pnpm typecheck && pnpm lint",
50
+ "storybook:run": "start-storybook -p 6006",
51
+ "storybook:build": "build-storybook"
52
+ }
53
+ }
@@ -1,2 +1,4 @@
1
+ export * from "./linked";
1
2
  export * from "./subscript";
2
3
  export * from "./superscript";
4
+ 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 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>
11
+ );
12
+ }
13
+ );
14
+
15
+ LinkedIcon.displayName = "LinkedIcon";
@@ -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 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>
11
+ );
12
+ }
13
+ );
14
+
15
+ UnlinkedIcon.displayName = "UnlinkedIcon";
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";