@webstudio-is/icons 0.68.0 → 0.70.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,14 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const CheckCircleIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
6
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M8 1.983a6.017 6.017 0 1 0 0 12.033A6.017 6.017 0 0 0 8 1.983ZM.683 8a7.317 7.317 0 1 1 14.634 0A7.317 7.317 0 0 1 .683 8Z", clipRule: "evenodd" }),
7
+ /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M11.566 5.357a.8.8 0 0 1 0 1.132l-4.154 4.153a.8.8 0 0 1-1.132 0L4.434 8.796a.8.8 0 1 1 1.132-1.131l1.28 1.28 3.588-3.588a.8.8 0 0 1 1.132 0Z", clipRule: "evenodd" })
8
+ ] });
9
+ }
10
+ );
11
+ CheckCircleIcon.displayName = "CheckCircleIcon";
12
+ export {
13
+ CheckCircleIcon
14
+ };
@@ -0,0 +1,11 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const CopyIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M7.495 1.35h4.61c.315 0 .59 0 .816.019.24.02.484.063.719.183.348.177.631.46.808.808.12.235.164.479.184.719.018.227.018.501.018.816v4.61c0 .315 0 .59-.018.816-.02.24-.064.484-.184.719a1.85 1.85 0 0 1-.808.809c-.235.12-.479.163-.719.183-.227.018-.501.018-.816.018H11.05v1.055c0 .315 0 .59-.019.816-.02.24-.063.484-.183.719a1.85 1.85 0 0 1-.808.808c-.235.12-.479.164-.719.184-.227.018-.501.018-.816.018h-4.61c-.315 0-.59 0-.816-.018a1.883 1.883 0 0 1-.719-.184 1.85 1.85 0 0 1-.808-.808 1.882 1.882 0 0 1-.184-.719 10.757 10.757 0 0 1-.018-.816v-4.61c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019H4.95V3.895c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019ZM3.92 6.25c-.347 0-.568 0-.735.014a.643.643 0 0 0-.235.046.55.55 0 0 0-.24.24.643.643 0 0 0-.046.235c-.014.167-.014.388-.014.735v4.56c0 .347 0 .568.014.735.013.16.035.213.046.235a.55.55 0 0 0 .24.24c.022.011.075.033.235.046.167.014.388.014.735.014h4.56c.347 0 .568 0 .735-.014a.645.645 0 0 0 .235-.046.55.55 0 0 0 .24-.24.643.643 0 0 0 .046-.235c.013-.167.014-.388.014-.735V7.52c0-.347 0-.568-.014-.735a.643.643 0 0 0-.046-.235.55.55 0 0 0-.24-.24.643.643 0 0 0-.235-.046 10.166 10.166 0 0 0-.735-.014H3.92Zm7.13 3.5V7.495c0-.315 0-.59-.019-.816a1.883 1.883 0 0 0-.183-.719 1.85 1.85 0 0 0-.808-.808 1.882 1.882 0 0 0-.719-.183c-.227-.019-.501-.019-.816-.019H6.25V3.92c0-.347 0-.568.014-.735a.643.643 0 0 1 .046-.235.55.55 0 0 1 .24-.24.643.643 0 0 1 .235-.046c.167-.013.388-.014.735-.014h4.56c.347 0 .568 0 .735.014.16.013.213.035.235.046a.55.55 0 0 1 .24.24c.011.022.033.075.046.235.014.167.014.388.014.735v4.56c0 .347 0 .568-.014.735-.013.16-.035.213-.046.235a.55.55 0 0 1-.24.24.644.644 0 0 1-.235.046c-.167.014-.388.014-.735.014h-1.03Z", clipRule: "evenodd" }) });
6
+ }
7
+ );
8
+ CopyIcon.displayName = "CopyIcon";
9
+ export {
10
+ CopyIcon
11
+ };
@@ -38,6 +38,7 @@ export * from "./bp-star-off";
38
38
  export * from "./bp-star-on";
39
39
  export * from "./bug";
40
40
  export * from "./button-element";
41
+ export * from "./check-circle";
41
42
  export * from "./checkbox-checked-filled";
42
43
  export * from "./checkbox-checked";
43
44
  export * from "./checkbox-empty";
@@ -52,6 +53,7 @@ export * from "./chevron-filled-right";
52
53
  export * from "./chevron-filled-up";
53
54
  export * from "./code-text";
54
55
  export * from "./commit";
56
+ export * from "./copy";
55
57
  export * from "./dash-border";
56
58
  export * from "./dash";
57
59
  export * from "./dashed-border";
@@ -101,6 +103,7 @@ export * from "./play";
101
103
  export * from "./plus";
102
104
  export * from "./radio-checked";
103
105
  export * from "./radio-unchecked";
106
+ export * from "./refresh";
104
107
  export * from "./repeat-column";
105
108
  export * from "./repeat-grid";
106
109
  export * from "./repeat-row";
@@ -0,0 +1,11 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const RefreshIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M11.812 4.737A5.018 5.018 0 0 0 3.01 7.473a.65.65 0 1 1-1.293-.137A6.318 6.318 0 0 1 12.962 4.09l.081-.302a.65.65 0 0 1 1.256.336l-.488 1.822a.65.65 0 0 1-.796.46l-1.822-.489a.65.65 0 1 1 .337-1.256l.282.076Zm1.892 3.212a.65.65 0 0 1 .578.715A6.318 6.318 0 0 1 3.038 11.91l-.081.302a.65.65 0 1 1-1.256-.336l.488-1.822a.65.65 0 0 1 .796-.46l1.822.489a.65.65 0 1 1-.337 1.255l-.282-.075a5.018 5.018 0 0 0 8.801-2.736.65.65 0 0 1 .715-.578Z", clipRule: "evenodd" }) });
6
+ }
7
+ );
8
+ RefreshIcon.displayName = "RefreshIcon";
9
+ export {
10
+ RefreshIcon
11
+ };
@@ -0,0 +1,34 @@
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 check_circle_exports = {};
20
+ __export(check_circle_exports, {
21
+ CheckCircleIcon: () => CheckCircleIcon
22
+ });
23
+ module.exports = __toCommonJS(check_circle_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const CheckCircleIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
29
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M8 1.983a6.017 6.017 0 1 0 0 12.033A6.017 6.017 0 0 0 8 1.983ZM.683 8a7.317 7.317 0 1 1 14.634 0A7.317 7.317 0 0 1 .683 8Z", clipRule: "evenodd" }),
30
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M11.566 5.357a.8.8 0 0 1 0 1.132l-4.154 4.153a.8.8 0 0 1-1.132 0L4.434 8.796a.8.8 0 1 1 1.132-1.131l1.28 1.28 3.588-3.588a.8.8 0 0 1 1.132 0Z", clipRule: "evenodd" })
31
+ ] });
32
+ }
33
+ );
34
+ CheckCircleIcon.displayName = "CheckCircleIcon";
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var copy_exports = {};
20
+ __export(copy_exports, {
21
+ CopyIcon: () => CopyIcon
22
+ });
23
+ module.exports = __toCommonJS(copy_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const CopyIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M7.495 1.35h4.61c.315 0 .59 0 .816.019.24.02.484.063.719.183.348.177.631.46.808.808.12.235.164.479.184.719.018.227.018.501.018.816v4.61c0 .315 0 .59-.018.816-.02.24-.064.484-.184.719a1.85 1.85 0 0 1-.808.809c-.235.12-.479.163-.719.183-.227.018-.501.018-.816.018H11.05v1.055c0 .315 0 .59-.019.816-.02.24-.063.484-.183.719a1.85 1.85 0 0 1-.808.808c-.235.12-.479.164-.719.184-.227.018-.501.018-.816.018h-4.61c-.315 0-.59 0-.816-.018a1.883 1.883 0 0 1-.719-.184 1.85 1.85 0 0 1-.808-.808 1.882 1.882 0 0 1-.184-.719 10.757 10.757 0 0 1-.018-.816v-4.61c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019H4.95V3.895c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019ZM3.92 6.25c-.347 0-.568 0-.735.014a.643.643 0 0 0-.235.046.55.55 0 0 0-.24.24.643.643 0 0 0-.046.235c-.014.167-.014.388-.014.735v4.56c0 .347 0 .568.014.735.013.16.035.213.046.235a.55.55 0 0 0 .24.24c.022.011.075.033.235.046.167.014.388.014.735.014h4.56c.347 0 .568 0 .735-.014a.645.645 0 0 0 .235-.046.55.55 0 0 0 .24-.24.643.643 0 0 0 .046-.235c.013-.167.014-.388.014-.735V7.52c0-.347 0-.568-.014-.735a.643.643 0 0 0-.046-.235.55.55 0 0 0-.24-.24.643.643 0 0 0-.235-.046 10.166 10.166 0 0 0-.735-.014H3.92Zm7.13 3.5V7.495c0-.315 0-.59-.019-.816a1.883 1.883 0 0 0-.183-.719 1.85 1.85 0 0 0-.808-.808 1.882 1.882 0 0 0-.719-.183c-.227-.019-.501-.019-.816-.019H6.25V3.92c0-.347 0-.568.014-.735a.643.643 0 0 1 .046-.235.55.55 0 0 1 .24-.24.643.643 0 0 1 .235-.046c.167-.013.388-.014.735-.014h4.56c.347 0 .568 0 .735.014.16.013.213.035.235.046a.55.55 0 0 1 .24.24c.011.022.033.075.046.235.014.167.014.388.014.735v4.56c0 .347 0 .568-.014.735-.013.16-.035.213-.046.235a.55.55 0 0 1-.24.24.644.644 0 0 1-.235.046c-.167.014-.388.014-.735.014h-1.03Z", clipRule: "evenodd" }) });
29
+ }
30
+ );
31
+ CopyIcon.displayName = "CopyIcon";
@@ -55,6 +55,7 @@ __reExport(generated_exports, require("./bp-star-off"), module.exports);
55
55
  __reExport(generated_exports, require("./bp-star-on"), module.exports);
56
56
  __reExport(generated_exports, require("./bug"), module.exports);
57
57
  __reExport(generated_exports, require("./button-element"), module.exports);
58
+ __reExport(generated_exports, require("./check-circle"), module.exports);
58
59
  __reExport(generated_exports, require("./checkbox-checked-filled"), module.exports);
59
60
  __reExport(generated_exports, require("./checkbox-checked"), module.exports);
60
61
  __reExport(generated_exports, require("./checkbox-empty"), module.exports);
@@ -69,6 +70,7 @@ __reExport(generated_exports, require("./chevron-filled-right"), module.exports)
69
70
  __reExport(generated_exports, require("./chevron-filled-up"), module.exports);
70
71
  __reExport(generated_exports, require("./code-text"), module.exports);
71
72
  __reExport(generated_exports, require("./commit"), module.exports);
73
+ __reExport(generated_exports, require("./copy"), module.exports);
72
74
  __reExport(generated_exports, require("./dash-border"), module.exports);
73
75
  __reExport(generated_exports, require("./dash"), module.exports);
74
76
  __reExport(generated_exports, require("./dashed-border"), module.exports);
@@ -118,6 +120,7 @@ __reExport(generated_exports, require("./play"), module.exports);
118
120
  __reExport(generated_exports, require("./plus"), module.exports);
119
121
  __reExport(generated_exports, require("./radio-checked"), module.exports);
120
122
  __reExport(generated_exports, require("./radio-unchecked"), module.exports);
123
+ __reExport(generated_exports, require("./refresh"), module.exports);
121
124
  __reExport(generated_exports, require("./repeat-column"), module.exports);
122
125
  __reExport(generated_exports, require("./repeat-grid"), module.exports);
123
126
  __reExport(generated_exports, require("./repeat-row"), module.exports);
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var refresh_exports = {};
20
+ __export(refresh_exports, {
21
+ RefreshIcon: () => RefreshIcon
22
+ });
23
+ module.exports = __toCommonJS(refresh_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const RefreshIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 16 16", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M11.812 4.737A5.018 5.018 0 0 0 3.01 7.473a.65.65 0 1 1-1.293-.137A6.318 6.318 0 0 1 12.962 4.09l.081-.302a.65.65 0 0 1 1.256.336l-.488 1.822a.65.65 0 0 1-.796.46l-1.822-.489a.65.65 0 1 1 .337-1.256l.282.076Zm1.892 3.212a.65.65 0 0 1 .578.715A6.318 6.318 0 0 1 3.038 11.91l-.081.302a.65.65 0 1 1-1.256-.336l.488-1.822a.65.65 0 0 1 .796-.46l1.822.489a.65.65 0 1 1-.337 1.255l-.282-.075a5.018 5.018 0 0 0 8.801-2.736.65.65 0 0 1 .715-.578Z", clipRule: "evenodd" }) });
29
+ }
30
+ );
31
+ RefreshIcon.displayName = "RefreshIcon";
package/lib/cjs/index.js CHANGED
@@ -32,7 +32,6 @@ __reExport(src_exports, require("./trash"), module.exports);
32
32
  __reExport(src_exports, require("./size"), module.exports);
33
33
  __reExport(src_exports, require("./upload"), module.exports);
34
34
  __reExport(src_exports, require("./gear"), module.exports);
35
- __reExport(src_exports, require("./copy"), module.exports);
36
35
  __reExport(src_exports, require("./new-page"), module.exports);
37
36
  __reExport(src_exports, require("./new-folder"), module.exports);
38
37
  __reExport(src_exports, require("./chevron-double-up"), module.exports);
package/lib/index.js CHANGED
@@ -15,7 +15,6 @@ export * from "./trash";
15
15
  export * from "./size";
16
16
  export * from "./upload";
17
17
  export * from "./gear";
18
- export * from "./copy";
19
18
  export * from "./new-page";
20
19
  export * from "./new-folder";
21
20
  export * from "./chevron-double-up";
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const CheckCircleIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const CopyIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -38,6 +38,7 @@ export * from "./bp-star-off";
38
38
  export * from "./bp-star-on";
39
39
  export * from "./bug";
40
40
  export * from "./button-element";
41
+ export * from "./check-circle";
41
42
  export * from "./checkbox-checked-filled";
42
43
  export * from "./checkbox-checked";
43
44
  export * from "./checkbox-empty";
@@ -52,6 +53,7 @@ export * from "./chevron-filled-right";
52
53
  export * from "./chevron-filled-up";
53
54
  export * from "./code-text";
54
55
  export * from "./commit";
56
+ export * from "./copy";
55
57
  export * from "./dash-border";
56
58
  export * from "./dash";
57
59
  export * from "./dashed-border";
@@ -101,6 +103,7 @@ export * from "./play";
101
103
  export * from "./plus";
102
104
  export * from "./radio-checked";
103
105
  export * from "./radio-unchecked";
106
+ export * from "./refresh";
104
107
  export * from "./repeat-column";
105
108
  export * from "./repeat-grid";
106
109
  export * from "./repeat-row";
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import type { IconProps } from "../types";
3
+ export declare const RefreshIcon: import("react").ForwardRefExoticComponent<IconProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -15,7 +15,6 @@ export * from "./trash";
15
15
  export * from "./size";
16
16
  export * from "./upload";
17
17
  export * from "./gear";
18
- export * from "./copy";
19
18
  export * from "./new-page";
20
19
  export * from "./new-folder";
21
20
  export * from "./chevron-double-up";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.68.0",
3
+ "version": "0.70.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -23,7 +23,7 @@
23
23
  "react-dom": "^18.2.0"
24
24
  },
25
25
  "dependencies": {
26
- "@webstudio-is/css-vars": "^0.68.0"
26
+ "@webstudio-is/css-vars": "^0.70.0"
27
27
  },
28
28
  "module": "./lib/index.js",
29
29
  "exports": {
@@ -0,0 +1,15 @@
1
+ // Generated from icons/check-circle.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const CheckCircleIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M8 1.983a6.017 6.017 0 1 0 0 12.033A6.017 6.017 0 0 0 8 1.983ZM.683 8a7.317 7.317 0 1 1 14.634 0A7.317 7.317 0 0 1 .683 8Z" clipRule="evenodd" /><path fillRule="evenodd" d="M11.566 5.357a.8.8 0 0 1 0 1.132l-4.154 4.153a.8.8 0 0 1-1.132 0L4.434 8.796a.8.8 0 1 1 1.132-1.131l1.28 1.28 3.588-3.588a.8.8 0 0 1 1.132 0Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ CheckCircleIcon.displayName = "CheckCircleIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/copy.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const CopyIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M7.495 1.35h4.61c.315 0 .59 0 .816.019.24.02.484.063.719.183.348.177.631.46.808.808.12.235.164.479.184.719.018.227.018.501.018.816v4.61c0 .315 0 .59-.018.816-.02.24-.064.484-.184.719a1.85 1.85 0 0 1-.808.809c-.235.12-.479.163-.719.183-.227.018-.501.018-.816.018H11.05v1.055c0 .315 0 .59-.019.816-.02.24-.063.484-.183.719a1.85 1.85 0 0 1-.808.808c-.235.12-.479.164-.719.184-.227.018-.501.018-.816.018h-4.61c-.315 0-.59 0-.816-.018a1.883 1.883 0 0 1-.719-.184 1.85 1.85 0 0 1-.808-.808 1.882 1.882 0 0 1-.184-.719 10.757 10.757 0 0 1-.018-.816v-4.61c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019H4.95V3.895c0-.315 0-.59.018-.816.02-.24.064-.484.184-.719a1.85 1.85 0 0 1 .808-.808c.235-.12.479-.164.719-.183.227-.019.501-.019.816-.019ZM3.92 6.25c-.347 0-.568 0-.735.014a.643.643 0 0 0-.235.046.55.55 0 0 0-.24.24.643.643 0 0 0-.046.235c-.014.167-.014.388-.014.735v4.56c0 .347 0 .568.014.735.013.16.035.213.046.235a.55.55 0 0 0 .24.24c.022.011.075.033.235.046.167.014.388.014.735.014h4.56c.347 0 .568 0 .735-.014a.645.645 0 0 0 .235-.046.55.55 0 0 0 .24-.24.643.643 0 0 0 .046-.235c.013-.167.014-.388.014-.735V7.52c0-.347 0-.568-.014-.735a.643.643 0 0 0-.046-.235.55.55 0 0 0-.24-.24.643.643 0 0 0-.235-.046 10.166 10.166 0 0 0-.735-.014H3.92Zm7.13 3.5V7.495c0-.315 0-.59-.019-.816a1.883 1.883 0 0 0-.183-.719 1.85 1.85 0 0 0-.808-.808 1.882 1.882 0 0 0-.719-.183c-.227-.019-.501-.019-.816-.019H6.25V3.92c0-.347 0-.568.014-.735a.643.643 0 0 1 .046-.235.55.55 0 0 1 .24-.24.643.643 0 0 1 .235-.046c.167-.013.388-.014.735-.014h4.56c.347 0 .568 0 .735.014.16.013.213.035.235.046a.55.55 0 0 1 .24.24c.011.022.033.075.046.235.014.167.014.388.014.735v4.56c0 .347 0 .568-.014.735-.013.16-.035.213-.046.235a.55.55 0 0 1-.24.24.644.644 0 0 1-.235.046c-.167.014-.388.014-.735.014h-1.03Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ CopyIcon.displayName = "CopyIcon";
@@ -38,6 +38,7 @@ export * from "./bp-star-off";
38
38
  export * from "./bp-star-on";
39
39
  export * from "./bug";
40
40
  export * from "./button-element";
41
+ export * from "./check-circle";
41
42
  export * from "./checkbox-checked-filled";
42
43
  export * from "./checkbox-checked";
43
44
  export * from "./checkbox-empty";
@@ -52,6 +53,7 @@ export * from "./chevron-filled-right";
52
53
  export * from "./chevron-filled-up";
53
54
  export * from "./code-text";
54
55
  export * from "./commit";
56
+ export * from "./copy";
55
57
  export * from "./dash-border";
56
58
  export * from "./dash";
57
59
  export * from "./dashed-border";
@@ -101,6 +103,7 @@ export * from "./play";
101
103
  export * from "./plus";
102
104
  export * from "./radio-checked";
103
105
  export * from "./radio-unchecked";
106
+ export * from "./refresh";
104
107
  export * from "./repeat-column";
105
108
  export * from "./repeat-grid";
106
109
  export * from "./repeat-row";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/refresh.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const RefreshIcon = forwardRef<SVGSVGElement, IconProps>(
8
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
9
+ return (
10
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path fillRule="evenodd" d="M11.812 4.737A5.018 5.018 0 0 0 3.01 7.473a.65.65 0 1 1-1.293-.137A6.318 6.318 0 0 1 12.962 4.09l.081-.302a.65.65 0 0 1 1.256.336l-.488 1.822a.65.65 0 0 1-.796.46l-1.822-.489a.65.65 0 1 1 .337-1.256l.282.076Zm1.892 3.212a.65.65 0 0 1 .578.715A6.318 6.318 0 0 1 3.038 11.91l-.081.302a.65.65 0 1 1-1.256-.336l.488-1.822a.65.65 0 0 1 .796-.46l1.822.489a.65.65 0 1 1-.337 1.255l-.282-.075a5.018 5.018 0 0 0 8.801-2.736.65.65 0 0 1 .715-.578Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ RefreshIcon.displayName = "RefreshIcon";
package/src/index.ts CHANGED
@@ -15,7 +15,6 @@ export * from "./trash";
15
15
  export * from "./size";
16
16
  export * from "./upload";
17
17
  export * from "./gear";
18
- export * from "./copy";
19
18
  export * from "./new-page";
20
19
  export * from "./new-folder";
21
20
  export * from "./chevron-double-up";
package/lib/cjs/copy.js DELETED
@@ -1,62 +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
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var copy_exports = {};
30
- __export(copy_exports, {
31
- CopyIcon: () => CopyIcon
32
- });
33
- module.exports = __toCommonJS(copy_exports);
34
- var import_jsx_runtime = require("react/jsx-runtime");
35
- var React = __toESM(require("react"), 1);
36
- const CopyIcon = React.forwardRef(
37
- ({ color = "currentColor", ...props }, forwardedRef) => {
38
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
39
- "svg",
40
- {
41
- width: "16",
42
- height: "16",
43
- viewBox: "0 0 16 16",
44
- fill: "none",
45
- xmlns: "http://www.w3.org/2000/svg",
46
- ...props,
47
- ref: forwardedRef,
48
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
49
- "path",
50
- {
51
- d: "M5.6 5.6V3.92C5.6 3.24794 5.6 2.91191 5.73079 2.65521C5.84584 2.42942 6.02942 2.24584 6.25521 2.13079C6.51191 2 6.84794 2 7.52 2H12.08C12.7521 2 13.0881 2 13.3448 2.13079C13.5706 2.24584 13.7542 2.42942 13.8692 2.65521C14 2.91191 14 3.24794 14 3.92V8.48C14 9.15206 14 9.4881 13.8692 9.74479C13.7542 9.97058 13.5706 10.1542 13.3448 10.2692C13.0881 10.4 12.7521 10.4 12.08 10.4H10.4M3.92 14H8.48C9.15206 14 9.48809 14 9.74479 13.8692C9.97058 13.7542 10.1542 13.5706 10.2692 13.3448C10.4 13.0881 10.4 12.7521 10.4 12.08V7.52C10.4 6.84794 10.4 6.51191 10.2692 6.25521C10.1542 6.02942 9.97058 5.84584 9.74479 5.73079C9.48809 5.6 9.15206 5.6 8.48 5.6H3.92C3.24794 5.6 2.91191 5.6 2.65521 5.73079C2.42942 5.84584 2.24584 6.02942 2.13079 6.25521C2 6.51191 2 6.84794 2 7.52V12.08C2 12.7521 2 13.0881 2.13079 13.3448C2.24584 13.5706 2.42942 13.7542 2.65521 13.8692C2.91191 14 3.24794 14 3.92 14Z",
52
- stroke: color,
53
- strokeWidth: "1.3",
54
- strokeLinecap: "round",
55
- strokeLinejoin: "round"
56
- }
57
- )
58
- }
59
- );
60
- }
61
- );
62
- CopyIcon.displayName = "CopyIcon";
package/lib/copy.js DELETED
@@ -1,32 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import * as React from "react";
3
- const CopyIcon = React.forwardRef(
4
- ({ color = "currentColor", ...props }, forwardedRef) => {
5
- return /* @__PURE__ */ jsx(
6
- "svg",
7
- {
8
- width: "16",
9
- height: "16",
10
- viewBox: "0 0 16 16",
11
- fill: "none",
12
- xmlns: "http://www.w3.org/2000/svg",
13
- ...props,
14
- ref: forwardedRef,
15
- children: /* @__PURE__ */ jsx(
16
- "path",
17
- {
18
- d: "M5.6 5.6V3.92C5.6 3.24794 5.6 2.91191 5.73079 2.65521C5.84584 2.42942 6.02942 2.24584 6.25521 2.13079C6.51191 2 6.84794 2 7.52 2H12.08C12.7521 2 13.0881 2 13.3448 2.13079C13.5706 2.24584 13.7542 2.42942 13.8692 2.65521C14 2.91191 14 3.24794 14 3.92V8.48C14 9.15206 14 9.4881 13.8692 9.74479C13.7542 9.97058 13.5706 10.1542 13.3448 10.2692C13.0881 10.4 12.7521 10.4 12.08 10.4H10.4M3.92 14H8.48C9.15206 14 9.48809 14 9.74479 13.8692C9.97058 13.7542 10.1542 13.5706 10.2692 13.3448C10.4 13.0881 10.4 12.7521 10.4 12.08V7.52C10.4 6.84794 10.4 6.51191 10.2692 6.25521C10.1542 6.02942 9.97058 5.84584 9.74479 5.73079C9.48809 5.6 9.15206 5.6 8.48 5.6H3.92C3.24794 5.6 2.91191 5.6 2.65521 5.73079C2.42942 5.84584 2.24584 6.02942 2.13079 6.25521C2 6.51191 2 6.84794 2 7.52V12.08C2 12.7521 2 13.0881 2.13079 13.3448C2.24584 13.5706 2.42942 13.7542 2.65521 13.8692C2.91191 14 3.24794 14 3.92 14Z",
19
- stroke: color,
20
- strokeWidth: "1.3",
21
- strokeLinecap: "round",
22
- strokeLinejoin: "round"
23
- }
24
- )
25
- }
26
- );
27
- }
28
- );
29
- CopyIcon.displayName = "CopyIcon";
30
- export {
31
- CopyIcon
32
- };
@@ -1,3 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
- export declare const CopyIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
package/src/copy.tsx DELETED
@@ -1,28 +0,0 @@
1
- import * as React from "react";
2
- import type { IconProps } from "./types";
3
-
4
- export const CopyIcon = React.forwardRef<SVGSVGElement, IconProps>(
5
- ({ color = "currentColor", ...props }, forwardedRef) => {
6
- return (
7
- <svg
8
- width="16"
9
- height="16"
10
- viewBox="0 0 16 16"
11
- fill="none"
12
- xmlns="http://www.w3.org/2000/svg"
13
- {...props}
14
- ref={forwardedRef}
15
- >
16
- <path
17
- d="M5.6 5.6V3.92C5.6 3.24794 5.6 2.91191 5.73079 2.65521C5.84584 2.42942 6.02942 2.24584 6.25521 2.13079C6.51191 2 6.84794 2 7.52 2H12.08C12.7521 2 13.0881 2 13.3448 2.13079C13.5706 2.24584 13.7542 2.42942 13.8692 2.65521C14 2.91191 14 3.24794 14 3.92V8.48C14 9.15206 14 9.4881 13.8692 9.74479C13.7542 9.97058 13.5706 10.1542 13.3448 10.2692C13.0881 10.4 12.7521 10.4 12.08 10.4H10.4M3.92 14H8.48C9.15206 14 9.48809 14 9.74479 13.8692C9.97058 13.7542 10.1542 13.5706 10.2692 13.3448C10.4 13.0881 10.4 12.7521 10.4 12.08V7.52C10.4 6.84794 10.4 6.51191 10.2692 6.25521C10.1542 6.02942 9.97058 5.84584 9.74479 5.73079C9.48809 5.6 9.15206 5.6 8.48 5.6H3.92C3.24794 5.6 2.91191 5.6 2.65521 5.73079C2.42942 5.84584 2.24584 6.02942 2.13079 6.25521C2 6.51191 2 6.84794 2 7.52V12.08C2 12.7521 2 13.0881 2.13079 13.3448C2.24584 13.5706 2.42942 13.7542 2.65521 13.8692C2.91191 14 3.24794 14 3.92 14Z"
18
- stroke={color}
19
- strokeWidth="1.3"
20
- strokeLinecap="round"
21
- strokeLinejoin="round"
22
- />
23
- </svg>
24
- );
25
- }
26
- );
27
-
28
- CopyIcon.displayName = "CopyIcon";