@webstudio-is/icons 0.63.0 → 0.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/__generated__/bug.js +14 -0
- package/lib/__generated__/index.js +1 -0
- package/lib/cjs/__generated__/bug.js +34 -0
- package/lib/cjs/__generated__/index.js +1 -0
- package/lib/types/__generated__/bug.d.ts +3 -0
- package/lib/types/__generated__/index.d.ts +1 -0
- package/package.json +2 -2
- package/src/__generated__/bug.tsx +15 -0
- package/src/__generated__/index.ts +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const BugIcon = forwardRef(
|
|
4
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
5
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 22 22", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "M13.294 9.416H8.703a.75.75 0 0 0 0 1.5h4.592a.75.75 0 0 0 0-1.5ZM8.702 12.934h4.592a.75.75 0 0 1 0 1.5H8.703a.75.75 0 0 1 0-1.5Z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M16.768 7.678a6.274 6.274 0 0 0-2.964-3.174l1.39-1.39a.75.75 0 1 0-1.06-1.061l-1.909 1.909a6.28 6.28 0 0 0-2.453.001l-1.91-1.91a.75.75 0 0 0-1.06 1.06l1.392 1.394a6.274 6.274 0 0 0-2.959 3.17H2.564a.75.75 0 0 0 0 1.5h2.254a6.302 6.302 0 0 0-.066.915v1.082H2.564a.75.75 0 0 0 0 1.5h2.188v1.084c0 .312.023.62.067.92H2.564a.75.75 0 0 0 0 1.5h2.674a6.252 6.252 0 0 0 11.528 0h2.67a.75.75 0 0 0 0-1.5h-2.251c.044-.3.067-.608.067-.92v-1.084h2.184a.75.75 0 0 0 0-1.5h-2.184v-1.082c0-.31-.023-.616-.066-.914h2.25a.75.75 0 0 0 0-1.5h-2.668Zm-5.766-2.336a4.75 4.75 0 0 0-4.75 4.75v3.666a4.75 4.75 0 1 0 9.5 0v-3.666a4.75 4.75 0 0 0-4.75-4.75Z", clipRule: "evenodd" })
|
|
8
|
+
] });
|
|
9
|
+
}
|
|
10
|
+
);
|
|
11
|
+
BugIcon.displayName = "BugIcon";
|
|
12
|
+
export {
|
|
13
|
+
BugIcon
|
|
14
|
+
};
|
|
@@ -36,6 +36,7 @@ export * from "./border-width-top";
|
|
|
36
36
|
export * from "./box";
|
|
37
37
|
export * from "./bp-star-off";
|
|
38
38
|
export * from "./bp-star-on";
|
|
39
|
+
export * from "./bug";
|
|
39
40
|
export * from "./button-element";
|
|
40
41
|
export * from "./checkbox-checked-filled";
|
|
41
42
|
export * from "./checkbox-checked";
|
|
@@ -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 bug_exports = {};
|
|
20
|
+
__export(bug_exports, {
|
|
21
|
+
BugIcon: () => BugIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(bug_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const BugIcon = (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 22 22", width: size, height: size, fill: color, ...props, ref: forwardedRef, children: [
|
|
29
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { d: "M13.294 9.416H8.703a.75.75 0 0 0 0 1.5h4.592a.75.75 0 0 0 0-1.5ZM8.702 12.934h4.592a.75.75 0 0 1 0 1.5H8.703a.75.75 0 0 1 0-1.5Z" }),
|
|
30
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fillRule: "evenodd", d: "M16.768 7.678a6.274 6.274 0 0 0-2.964-3.174l1.39-1.39a.75.75 0 1 0-1.06-1.061l-1.909 1.909a6.28 6.28 0 0 0-2.453.001l-1.91-1.91a.75.75 0 0 0-1.06 1.06l1.392 1.394a6.274 6.274 0 0 0-2.959 3.17H2.564a.75.75 0 0 0 0 1.5h2.254a6.302 6.302 0 0 0-.066.915v1.082H2.564a.75.75 0 0 0 0 1.5h2.188v1.084c0 .312.023.62.067.92H2.564a.75.75 0 0 0 0 1.5h2.674a6.252 6.252 0 0 0 11.528 0h2.67a.75.75 0 0 0 0-1.5h-2.251c.044-.3.067-.608.067-.92v-1.084h2.184a.75.75 0 0 0 0-1.5h-2.184v-1.082c0-.31-.023-.616-.066-.914h2.25a.75.75 0 0 0 0-1.5h-2.668Zm-5.766-2.336a4.75 4.75 0 0 0-4.75 4.75v3.666a4.75 4.75 0 1 0 9.5 0v-3.666a4.75 4.75 0 0 0-4.75-4.75Z", clipRule: "evenodd" })
|
|
31
|
+
] });
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
BugIcon.displayName = "BugIcon";
|
|
@@ -53,6 +53,7 @@ __reExport(generated_exports, require("./border-width-top"), module.exports);
|
|
|
53
53
|
__reExport(generated_exports, require("./box"), module.exports);
|
|
54
54
|
__reExport(generated_exports, require("./bp-star-off"), module.exports);
|
|
55
55
|
__reExport(generated_exports, require("./bp-star-on"), module.exports);
|
|
56
|
+
__reExport(generated_exports, require("./bug"), module.exports);
|
|
56
57
|
__reExport(generated_exports, require("./button-element"), module.exports);
|
|
57
58
|
__reExport(generated_exports, require("./checkbox-checked-filled"), module.exports);
|
|
58
59
|
__reExport(generated_exports, require("./checkbox-checked"), module.exports);
|
|
@@ -36,6 +36,7 @@ export * from "./border-width-top";
|
|
|
36
36
|
export * from "./box";
|
|
37
37
|
export * from "./bp-star-off";
|
|
38
38
|
export * from "./bp-star-on";
|
|
39
|
+
export * from "./bug";
|
|
39
40
|
export * from "./button-element";
|
|
40
41
|
export * from "./checkbox-checked-filled";
|
|
41
42
|
export * from "./checkbox-checked";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.0",
|
|
4
4
|
"description": "Webstudio Icons",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"react-dom": "^18.2.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@webstudio-is/css-vars": "^0.
|
|
25
|
+
"@webstudio-is/css-vars": "^0.64.0"
|
|
26
26
|
},
|
|
27
27
|
"module": "./lib/index.js",
|
|
28
28
|
"exports": {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/bug.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const BugIcon = forwardRef<SVGSVGElement, IconProps>(
|
|
8
|
+
({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
|
|
9
|
+
return (
|
|
10
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22" width={size} height={size} fill={color} {...props} ref={forwardedRef}><path d="M13.294 9.416H8.703a.75.75 0 0 0 0 1.5h4.592a.75.75 0 0 0 0-1.5ZM8.702 12.934h4.592a.75.75 0 0 1 0 1.5H8.703a.75.75 0 0 1 0-1.5Z" /><path fillRule="evenodd" d="M16.768 7.678a6.274 6.274 0 0 0-2.964-3.174l1.39-1.39a.75.75 0 1 0-1.06-1.061l-1.909 1.909a6.28 6.28 0 0 0-2.453.001l-1.91-1.91a.75.75 0 0 0-1.06 1.06l1.392 1.394a6.274 6.274 0 0 0-2.959 3.17H2.564a.75.75 0 0 0 0 1.5h2.254a6.302 6.302 0 0 0-.066.915v1.082H2.564a.75.75 0 0 0 0 1.5h2.188v1.084c0 .312.023.62.067.92H2.564a.75.75 0 0 0 0 1.5h2.674a6.252 6.252 0 0 0 11.528 0h2.67a.75.75 0 0 0 0-1.5h-2.251c.044-.3.067-.608.067-.92v-1.084h2.184a.75.75 0 0 0 0-1.5h-2.184v-1.082c0-.31-.023-.616-.066-.914h2.25a.75.75 0 0 0 0-1.5h-2.668Zm-5.766-2.336a4.75 4.75 0 0 0-4.75 4.75v3.666a4.75 4.75 0 1 0 9.5 0v-3.666a4.75 4.75 0 0 0-4.75-4.75Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
BugIcon.displayName = "BugIcon";
|
|
@@ -36,6 +36,7 @@ export * from "./border-width-top";
|
|
|
36
36
|
export * from "./box";
|
|
37
37
|
export * from "./bp-star-off";
|
|
38
38
|
export * from "./bp-star-on";
|
|
39
|
+
export * from "./bug";
|
|
39
40
|
export * from "./button-element";
|
|
40
41
|
export * from "./checkbox-checked-filled";
|
|
41
42
|
export * from "./checkbox-checked";
|