@webstudio-is/icons 0.44.0 → 0.46.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,31 @@
1
+ import { jsx, jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const BoxLinkIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsxs("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: [
14
+ /* @__PURE__ */ jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M14.882 2H7.118c-.743 0-1.346 0-1.836.04-.504.041-.954.129-1.371.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.417.212.867.3 1.371.341.49.04 1.093.04 1.836.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.954-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.34-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.04-.505-.128-.954-.34-1.372a3.5 3.5 0 0 0-1.53-1.53c-.418-.212-.867-.3-1.372-.341C16.227 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.171.087-.4.15-.813.183-.421.034-.963.035-1.745.035h-7.7c-.783 0-1.324 0-1.745-.035-.413-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.035-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.033-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.962-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z",
17
+ clipRule: "evenodd"
18
+ }),
19
+ /* @__PURE__ */ jsx("path", {
20
+ fillRule: "evenodd",
21
+ d: "M14.466 7.539c-.57-.57-1.706-.597-2.546.244l-.733.732a.75.75 0 1 1-1.06-1.06l.733-.733c1.286-1.287 3.38-1.53 4.667-.244 1.287 1.287 1.043 3.38-.244 4.667l-.733.733a.75.75 0 0 1-1.06-1.06l.732-.733c.84-.84.815-1.976.244-2.546ZM12.86 9.146a.75.75 0 0 1 0 1.06l-2.652 2.653a.75.75 0 0 1-1.061-1.06l2.652-2.653a.75.75 0 0 1 1.061 0Zm-4.344.981a.75.75 0 0 1 0 1.06l-.732.734c-.84.84-.815 1.975-.244 2.546.57.57 1.706.596 2.546-.244l.732-.733a.75.75 0 0 1 1.061 1.06l-.733.733c-1.286 1.287-3.38 1.53-4.667.244s-1.043-3.38.244-4.667l.733-.733a.75.75 0 0 1 1.06 0Z",
22
+ clipRule: "evenodd"
23
+ })
24
+ ]
25
+ });
26
+ }
27
+ );
28
+ BoxLinkIcon.displayName = "BoxLinkIcon";
29
+ export {
30
+ BoxLinkIcon
31
+ };
@@ -0,0 +1,24 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from "react";
3
+ const BoxIcon = forwardRef(
4
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
5
+ return /* @__PURE__ */ jsx("svg", {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 22 22",
8
+ width: size,
9
+ height: size,
10
+ fill: color,
11
+ ...props,
12
+ ref: forwardedRef,
13
+ children: /* @__PURE__ */ jsx("path", {
14
+ fillRule: "evenodd",
15
+ d: "M14.882 2H7.118c-.743 0-1.346 0-1.835.04-.505.041-.954.129-1.372.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.418.212.867.3 1.372.341.489.04 1.092.04 1.835.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.955-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.341-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.041-.505-.129-.954-.341-1.372a3.5 3.5 0 0 0-1.53-1.53c-.417-.212-.867-.3-1.372-.341C16.228 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.17.087-.4.15-.813.183-.42.034-.963.035-1.745.035h-7.7c-.782 0-1.324 0-1.745-.035-.412-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.034-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.034-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.963-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z",
16
+ clipRule: "evenodd"
17
+ })
18
+ });
19
+ }
20
+ );
21
+ BoxIcon.displayName = "BoxIcon";
22
+ export {
23
+ BoxIcon
24
+ };
@@ -1,5 +1,7 @@
1
1
  export * from "./auto-scroll";
2
2
  export * from "./blockquote";
3
+ export * from "./box-link";
4
+ export * from "./box";
3
5
  export * from "./checkbox-checked-filled";
4
6
  export * from "./checkbox-empty";
5
7
  export * from "./checkbox-mixed-filled";
@@ -0,0 +1,51 @@
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 box_link_exports = {};
20
+ __export(box_link_exports, {
21
+ BoxLinkIcon: () => BoxLinkIcon
22
+ });
23
+ module.exports = __toCommonJS(box_link_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const BoxLinkIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: [
37
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
38
+ fillRule: "evenodd",
39
+ d: "M14.882 2H7.118c-.743 0-1.346 0-1.836.04-.504.041-.954.129-1.371.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.417.212.867.3 1.371.341.49.04 1.093.04 1.836.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.954-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.34-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.04-.505-.128-.954-.34-1.372a3.5 3.5 0 0 0-1.53-1.53c-.418-.212-.867-.3-1.372-.341C16.227 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.171.087-.4.15-.813.183-.421.034-.963.035-1.745.035h-7.7c-.783 0-1.324 0-1.745-.035-.413-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.035-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.033-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.962-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z",
40
+ clipRule: "evenodd"
41
+ }),
42
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
43
+ fillRule: "evenodd",
44
+ d: "M14.466 7.539c-.57-.57-1.706-.597-2.546.244l-.733.732a.75.75 0 1 1-1.06-1.06l.733-.733c1.286-1.287 3.38-1.53 4.667-.244 1.287 1.287 1.043 3.38-.244 4.667l-.733.733a.75.75 0 0 1-1.06-1.06l.732-.733c.84-.84.815-1.976.244-2.546ZM12.86 9.146a.75.75 0 0 1 0 1.06l-2.652 2.653a.75.75 0 0 1-1.061-1.06l2.652-2.653a.75.75 0 0 1 1.061 0Zm-4.344.981a.75.75 0 0 1 0 1.06l-.732.734c-.84.84-.815 1.975-.244 2.546.57.57 1.706.596 2.546-.244l.732-.733a.75.75 0 0 1 1.061 1.06l-.733.733c-1.286 1.287-3.38 1.53-4.667.244s-1.043-3.38.244-4.667l.733-.733a.75.75 0 0 1 1.06 0Z",
45
+ clipRule: "evenodd"
46
+ })
47
+ ]
48
+ });
49
+ }
50
+ );
51
+ BoxLinkIcon.displayName = "BoxLinkIcon";
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var box_exports = {};
20
+ __export(box_exports, {
21
+ BoxIcon: () => BoxIcon
22
+ });
23
+ module.exports = __toCommonJS(box_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_react = require("react");
26
+ const BoxIcon = (0, import_react.forwardRef)(
27
+ ({ color = "currentColor", size = 16, ...props }, forwardedRef) => {
28
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("svg", {
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ viewBox: "0 0 22 22",
31
+ width: size,
32
+ height: size,
33
+ fill: color,
34
+ ...props,
35
+ ref: forwardedRef,
36
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
37
+ fillRule: "evenodd",
38
+ d: "M14.882 2H7.118c-.743 0-1.346 0-1.835.04-.505.041-.954.129-1.372.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.418.212.867.3 1.372.341.489.04 1.092.04 1.835.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.955-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.341-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.041-.505-.129-.954-.341-1.372a3.5 3.5 0 0 0-1.53-1.53c-.417-.212-.867-.3-1.372-.341C16.228 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.17.087-.4.15-.813.183-.42.034-.963.035-1.745.035h-7.7c-.782 0-1.324 0-1.745-.035-.412-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.034-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.034-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.963-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z",
39
+ clipRule: "evenodd"
40
+ })
41
+ });
42
+ }
43
+ );
44
+ BoxIcon.displayName = "BoxIcon";
@@ -17,6 +17,8 @@ var generated_exports = {};
17
17
  module.exports = __toCommonJS(generated_exports);
18
18
  __reExport(generated_exports, require("./auto-scroll"), module.exports);
19
19
  __reExport(generated_exports, require("./blockquote"), module.exports);
20
+ __reExport(generated_exports, require("./box-link"), module.exports);
21
+ __reExport(generated_exports, require("./box"), module.exports);
20
22
  __reExport(generated_exports, require("./checkbox-checked-filled"), module.exports);
21
23
  __reExport(generated_exports, require("./checkbox-empty"), module.exports);
22
24
  __reExport(generated_exports, require("./checkbox-mixed-filled"), module.exports);
@@ -36,7 +36,6 @@ __export(legacy_exports, {
36
36
  PlusIcon: () => import_react_icons.PlusIcon,
37
37
  RocketIcon: () => import_react_icons.RocketIcon,
38
38
  Share1Icon: () => import_react_icons.Share1Icon,
39
- SquareIcon: () => import_react_icons.SquareIcon,
40
39
  TextIcon: () => import_react_icons.TextIcon,
41
40
  TriangleDownIcon: () => import_react_icons.TriangleDownIcon,
42
41
  TriangleRightIcon: () => import_react_icons.TriangleRightIcon
package/lib/legacy.js CHANGED
@@ -18,7 +18,6 @@ import {
18
18
  ButtonIcon,
19
19
  HeadingIcon,
20
20
  TextIcon,
21
- SquareIcon,
22
21
  CrossCircledIcon,
23
22
  CheckCircledIcon
24
23
  } from "@radix-ui/react-icons";
@@ -41,7 +40,6 @@ export {
41
40
  PlusIcon,
42
41
  RocketIcon,
43
42
  Share1Icon,
44
- SquareIcon,
45
43
  TextIcon,
46
44
  TriangleDownIcon,
47
45
  TriangleRightIcon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.44.0",
3
+ "version": "0.46.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
@@ -24,7 +24,7 @@
24
24
  "dependencies": {
25
25
  "@radix-ui/react-icons": "^1.1.0",
26
26
  "react": "^17.0.2",
27
- "@webstudio-is/css-vars": "^0.44.0"
27
+ "@webstudio-is/css-vars": "^0.46.0"
28
28
  },
29
29
  "module": "./lib/index.js",
30
30
  "exports": {
@@ -0,0 +1,15 @@
1
+ // Generated from icons/box-link.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const BoxLinkIcon = 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 fillRule="evenodd" d="M14.882 2H7.118c-.743 0-1.346 0-1.836.04-.504.041-.954.129-1.371.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.417.212.867.3 1.371.341.49.04 1.093.04 1.836.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.954-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.34-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.04-.505-.128-.954-.34-1.372a3.5 3.5 0 0 0-1.53-1.53c-.418-.212-.867-.3-1.372-.341C16.227 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.171.087-.4.15-.813.183-.421.034-.963.035-1.745.035h-7.7c-.783 0-1.324 0-1.745-.035-.413-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.035-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.033-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.962-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z" clipRule="evenodd" /><path fillRule="evenodd" d="M14.466 7.539c-.57-.57-1.706-.597-2.546.244l-.733.732a.75.75 0 1 1-1.06-1.06l.733-.733c1.286-1.287 3.38-1.53 4.667-.244 1.287 1.287 1.043 3.38-.244 4.667l-.733.733a.75.75 0 0 1-1.06-1.06l.732-.733c.84-.84.815-1.976.244-2.546ZM12.86 9.146a.75.75 0 0 1 0 1.06l-2.652 2.653a.75.75 0 0 1-1.061-1.06l2.652-2.653a.75.75 0 0 1 1.061 0Zm-4.344.981a.75.75 0 0 1 0 1.06l-.732.734c-.84.84-.815 1.975-.244 2.546.57.57 1.706.596 2.546-.244l.732-.733a.75.75 0 0 1 1.061 1.06l-.733.733c-1.286 1.287-3.38 1.53-4.667.244s-1.043-3.38.244-4.667l.733-.733a.75.75 0 0 1 1.06 0Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ BoxLinkIcon.displayName = "BoxLinkIcon";
@@ -0,0 +1,15 @@
1
+ // Generated from icons/box.svg
2
+
3
+ import { forwardRef } from "react";
4
+ import type { IconProps } from "../types";
5
+
6
+ // prettier-ignore
7
+ export const BoxIcon = 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 fillRule="evenodd" d="M14.882 2H7.118c-.743 0-1.346 0-1.835.04-.505.041-.954.129-1.372.341a3.5 3.5 0 0 0-1.53 1.53c-.212.418-.3.867-.341 1.372C2 5.772 2 6.375 2 7.118v7.764c0 .743 0 1.346.04 1.835.041.505.129.955.341 1.372a3.5 3.5 0 0 0 1.53 1.53c.418.212.867.3 1.372.341.489.04 1.092.04 1.835.04h7.764c.743 0 1.346 0 1.835-.04.505-.041.955-.129 1.372-.341a3.5 3.5 0 0 0 1.53-1.53c.212-.417.3-.867.341-1.372.04-.489.04-1.092.04-1.835V7.118c0-.743 0-1.346-.04-1.835-.041-.505-.129-.954-.341-1.372a3.5 3.5 0 0 0-1.53-1.53c-.417-.212-.867-.3-1.372-.341C16.228 2 15.625 2 14.882 2Zm1.713 1.535c.412.034.642.096.813.183a2 2 0 0 1 .874.874c.087.17.15.4.183.813.034.42.035.963.035 1.745v7.7c0 .782 0 1.324-.035 1.745-.034.412-.096.642-.183.813a2 2 0 0 1-.874.874c-.17.087-.4.15-.813.183-.42.034-.963.035-1.745.035h-7.7c-.782 0-1.324 0-1.745-.035-.412-.034-.642-.096-.813-.183a2 2 0 0 1-.874-.874c-.087-.17-.15-.4-.183-.813-.034-.42-.035-.963-.035-1.745v-7.7c0-.782 0-1.324.035-1.745.034-.412.096-.642.183-.813a2 2 0 0 1 .874-.874c.17-.087.4-.15.813-.183.42-.034.963-.035 1.745-.035h7.7c.782 0 1.324 0 1.745.035Z" clipRule="evenodd" /></svg>
11
+ );
12
+ }
13
+ );
14
+
15
+ BoxIcon.displayName = "BoxIcon";
@@ -1,5 +1,7 @@
1
1
  export * from "./auto-scroll";
2
2
  export * from "./blockquote";
3
+ export * from "./box-link";
4
+ export * from "./box";
3
5
  export * from "./checkbox-checked-filled";
4
6
  export * from "./checkbox-empty";
5
7
  export * from "./checkbox-mixed-filled";
package/src/legacy.ts CHANGED
@@ -18,7 +18,6 @@ export {
18
18
  ButtonIcon,
19
19
  HeadingIcon,
20
20
  TextIcon,
21
- SquareIcon,
22
21
  CrossCircledIcon,
23
22
  CheckCircledIcon,
24
23
  } from "@radix-ui/react-icons";