@webstudio-is/icons 0.52.0 → 0.54.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__/bp-star-off.js +14 -0
- package/lib/__generated__/bp-star-on.js +14 -0
- package/lib/__generated__/index.js +2 -0
- package/lib/cjs/__generated__/bp-star-off.js +34 -0
- package/lib/cjs/__generated__/bp-star-on.js +34 -0
- package/lib/cjs/__generated__/index.js +2 -0
- package/lib/types/__generated__/bp-star-off.d.ts +3 -0
- package/lib/types/__generated__/bp-star-on.d.ts +3 -0
- package/lib/types/__generated__/index.d.ts +2 -0
- package/package.json +3 -3
- package/src/__generated__/bp-star-off.tsx +15 -0
- package/src/__generated__/bp-star-on.tsx +15 -0
- package/src/__generated__/index.ts +2 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const BpStarOffIcon = 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", { fill: "#3E3E3E", d: "M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { fill: "#8D949A", fillRule: "evenodd", d: "M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z", clipRule: "evenodd" })
|
|
8
|
+
] });
|
|
9
|
+
}
|
|
10
|
+
);
|
|
11
|
+
BpStarOffIcon.displayName = "BpStarOffIcon";
|
|
12
|
+
export {
|
|
13
|
+
BpStarOffIcon
|
|
14
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
const BpStarOnIcon = 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", { fill: "#707375", d: "M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z", clipRule: "evenodd" })
|
|
8
|
+
] });
|
|
9
|
+
}
|
|
10
|
+
);
|
|
11
|
+
BpStarOnIcon.displayName = "BpStarOnIcon";
|
|
12
|
+
export {
|
|
13
|
+
BpStarOnIcon
|
|
14
|
+
};
|
|
@@ -17,6 +17,8 @@ export * from "./border-width-right";
|
|
|
17
17
|
export * from "./border-width-top";
|
|
18
18
|
export * from "./box-link";
|
|
19
19
|
export * from "./box";
|
|
20
|
+
export * from "./bp-star-off";
|
|
21
|
+
export * from "./bp-star-on";
|
|
20
22
|
export * from "./button-element";
|
|
21
23
|
export * from "./checkbox-checked-filled";
|
|
22
24
|
export * from "./checkbox-empty";
|
|
@@ -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 bp_star_off_exports = {};
|
|
20
|
+
__export(bp_star_off_exports, {
|
|
21
|
+
BpStarOffIcon: () => BpStarOffIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(bp_star_off_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const BpStarOffIcon = (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", { fill: "#3E3E3E", d: "M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" }),
|
|
30
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#8D949A", fillRule: "evenodd", d: "M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z", clipRule: "evenodd" })
|
|
31
|
+
] });
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
BpStarOffIcon.displayName = "BpStarOffIcon";
|
|
@@ -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 bp_star_on_exports = {};
|
|
20
|
+
__export(bp_star_on_exports, {
|
|
21
|
+
BpStarOnIcon: () => BpStarOnIcon
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(bp_star_on_exports);
|
|
24
|
+
var import_jsx_runtime = require("react/jsx-runtime");
|
|
25
|
+
var import_react = require("react");
|
|
26
|
+
const BpStarOnIcon = (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", { fill: "#707375", d: "M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" }),
|
|
30
|
+
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", { fill: "#fff", fillRule: "evenodd", d: "M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z", clipRule: "evenodd" })
|
|
31
|
+
] });
|
|
32
|
+
}
|
|
33
|
+
);
|
|
34
|
+
BpStarOnIcon.displayName = "BpStarOnIcon";
|
|
@@ -34,6 +34,8 @@ __reExport(generated_exports, require("./border-width-right"), module.exports);
|
|
|
34
34
|
__reExport(generated_exports, require("./border-width-top"), module.exports);
|
|
35
35
|
__reExport(generated_exports, require("./box-link"), module.exports);
|
|
36
36
|
__reExport(generated_exports, require("./box"), module.exports);
|
|
37
|
+
__reExport(generated_exports, require("./bp-star-off"), module.exports);
|
|
38
|
+
__reExport(generated_exports, require("./bp-star-on"), module.exports);
|
|
37
39
|
__reExport(generated_exports, require("./button-element"), module.exports);
|
|
38
40
|
__reExport(generated_exports, require("./checkbox-checked-filled"), module.exports);
|
|
39
41
|
__reExport(generated_exports, require("./checkbox-empty"), module.exports);
|
|
@@ -17,6 +17,8 @@ export * from "./border-width-right";
|
|
|
17
17
|
export * from "./border-width-top";
|
|
18
18
|
export * from "./box-link";
|
|
19
19
|
export * from "./box";
|
|
20
|
+
export * from "./bp-star-off";
|
|
21
|
+
export * from "./bp-star-on";
|
|
20
22
|
export * from "./button-element";
|
|
21
23
|
export * from "./checkbox-checked-filled";
|
|
22
24
|
export * from "./checkbox-empty";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.0",
|
|
4
4
|
"description": "Webstudio Icons",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"typescript": "5.0.3",
|
|
14
14
|
"@webstudio-is/scripts": "^0.0.0",
|
|
15
15
|
"@webstudio-is/storybook-config": "^0.0.0",
|
|
16
|
-
"@webstudio-is/tsconfig": "^1.0.
|
|
16
|
+
"@webstudio-is/tsconfig": "^1.0.3"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"react": "^17.0.2",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"react": "^17.0.2",
|
|
24
|
-
"@webstudio-is/css-vars": "^0.
|
|
24
|
+
"@webstudio-is/css-vars": "^0.54.0"
|
|
25
25
|
},
|
|
26
26
|
"module": "./lib/index.js",
|
|
27
27
|
"exports": {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/bp-star-off.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const BpStarOffIcon = 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 fill="#3E3E3E" d="M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" /><path fill="#8D949A" fillRule="evenodd" d="M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
BpStarOffIcon.displayName = "BpStarOffIcon";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Generated from icons/bp-star-on.svg
|
|
2
|
+
|
|
3
|
+
import { forwardRef } from "react";
|
|
4
|
+
import type { IconProps } from "../types";
|
|
5
|
+
|
|
6
|
+
// prettier-ignore
|
|
7
|
+
export const BpStarOnIcon = 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 fill="#707375" d="M10.467 4.612c.171-.347.257-.52.373-.576a.371.371 0 0 1 .32 0c.116.056.202.229.373.576l1.624 3.29c.05.102.075.153.112.193a.371.371 0 0 0 .116.084.81.81 0 0 0 .219.047l3.632.531c.383.056.574.084.662.178a.37.37 0 0 1 .099.304c-.017.127-.155.262-.432.532l-2.628 2.56a.809.809 0 0 0-.15.166.371.371 0 0 0-.043.136.815.815 0 0 0 .022.223l.62 3.615c.065.381.098.572.037.685a.371.371 0 0 1-.259.188c-.127.023-.298-.067-.64-.247l-3.247-1.708a.813.813 0 0 0-.205-.09.374.374 0 0 0-.143 0c-.054.01-.104.037-.206.09l-3.247 1.708c-.342.18-.513.27-.64.247a.371.371 0 0 1-.259-.188c-.061-.113-.028-.304.037-.685l.62-3.615a.812.812 0 0 0 .022-.223.371.371 0 0 0-.044-.136.81.81 0 0 0-.15-.167L4.436 9.77c-.276-.269-.415-.404-.432-.531a.371.371 0 0 1 .099-.304c.088-.094.28-.122.662-.178l3.633-.53a.812.812 0 0 0 .218-.048.371.371 0 0 0 .116-.084.812.812 0 0 0 .112-.193l1.624-3.29Z" /><path fill="#fff" fillRule="evenodd" d="M10.517 3.36c.306-.146.66-.146.966 0 .264.125.41.344.482.463.076.123.153.28.229.433l.011.024 1.588 3.216 3.577.523c.169.025.342.05.483.084.136.032.388.103.59.316.232.245.342.583.297.918-.038.29-.201.496-.292.602-.094.11-.22.232-.341.35l-2.588 2.521.61 3.56c.03.168.06.34.07.485.012.14.022.402-.117.659a1.121 1.121 0 0 1-.781.567 1.165 1.165 0 0 1-.664-.092c-.133-.055-.288-.137-.439-.216L11 16.091l-3.198 1.682c-.15.08-.306.161-.44.216-.129.054-.375.145-.663.092a1.121 1.121 0 0 1-.78-.567 1.166 1.166 0 0 1-.119-.66c.012-.144.042-.316.07-.484l.61-3.56-2.568-2.502-.019-.018c-.122-.119-.247-.241-.341-.35a1.166 1.166 0 0 1-.292-.603 1.121 1.121 0 0 1 .297-.918c.202-.213.454-.284.59-.316a5.764 5.764 0 0 1 .509-.088l3.551-.519L9.795 4.28l.011-.024c.076-.152.153-.31.229-.433.073-.12.218-.338.482-.464ZM11 5.226 9.516 8.234a1.422 1.422 0 0 1-.236.372 1.121 1.121 0 0 1-.349.253 1.422 1.422 0 0 1-.404.107c-.008 0-.016.002-.022.003l-3.32.485 2.401 2.339.016.015c.059.056.182.174.265.324.071.127.116.267.134.41.02.172-.01.339-.024.419a2.706 2.706 0 0 0-.004.022l-.566 3.303 2.967-1.56.02-.011c.072-.038.221-.119.39-.152a1.12 1.12 0 0 1 .432 0c.169.033.318.114.39.152l.02.01 2.967 1.561-.566-3.303-.004-.022c-.014-.08-.045-.247-.024-.418.018-.144.063-.284.133-.41.084-.151.207-.268.266-.325l.016-.015 2.401-2.34-3.32-.484-.022-.003c-.08-.012-.248-.035-.404-.107a1.123 1.123 0 0 1-.35-.254c-.116-.126-.19-.278-.225-.351l-.01-.02L11 5.227Z" clipRule="evenodd" /></svg>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
BpStarOnIcon.displayName = "BpStarOnIcon";
|
|
@@ -17,6 +17,8 @@ export * from "./border-width-right";
|
|
|
17
17
|
export * from "./border-width-top";
|
|
18
18
|
export * from "./box-link";
|
|
19
19
|
export * from "./box";
|
|
20
|
+
export * from "./bp-star-off";
|
|
21
|
+
export * from "./bp-star-on";
|
|
20
22
|
export * from "./button-element";
|
|
21
23
|
export * from "./checkbox-checked-filled";
|
|
22
24
|
export * from "./checkbox-empty";
|