@hive-ui/icons 0.3.1 → 0.5.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,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/AgentIcon.d.ts
7
+ type AgentIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const AgentIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { AgentIcon, AgentIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/AgentIcon.tsx
5
+ const AgentIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `AgentIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[AgentIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M13.484 2.483a6.845 6.845 0 013.336 5.663c.492.106.941.389 1.252.813.333.454.473 1.023.388 1.58l-.414 2.738a2.105 2.105 0 01-2.477 1.768 6.831 6.831 0 01-3.943 2.427 1.842 1.842 0 01-3.493-.835 1.85 1.85 0 011.845-1.856 1.85 1.85 0 011.821 1.555 5.758 5.758 0 002.787-1.766 2.132 2.132 0 01-.709-1.927l.414-2.738a2.104 2.104 0 011.573-1.744l-.104.03a5.785 5.785 0 00-11.564-.013A2.1 2.1 0 015.708 9.9l.415 2.743a2.133 2.133 0 01-.388 1.58 2.105 2.105 0 01-3.78-.942l-.415-2.742a2.129 2.129 0 01.387-1.58c.302-.412.734-.69 1.21-.804a6.845 6.845 0 0110.347-5.673zM9.978 15.84a.79.79 0 00-.785.796c0 .44.353.795.785.795a.79.79 0 00.785-.795.79.79 0 00-.785-.796zM3.754 9.166a1.044 1.044 0 00-.971.42 1.069 1.069 0 00-.195.794l.416 2.746a1.044 1.044 0 001.875.47c.168-.229.238-.514.195-.794l-.416-2.748a1.044 1.044 0 00-.78-.865zm13.462.42a1.044 1.044 0 00-1.876.473l-.414 2.743c-.043.28.027.565.194.793a1.044 1.044 0 001.877-.473l.414-2.743a1.069 1.069 0 00-.195-.793z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ AgentIcon.displayName = "AgentIcon";
35
+ //#endregion
36
+ export { AgentIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/BlockquoteIcon.d.ts
7
+ type BlockquoteIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const BlockquoteIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { BlockquoteIcon, BlockquoteIconProps };
@@ -0,0 +1,37 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/BlockquoteIcon.tsx
5
+ const BlockquoteIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `BlockquoteIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[BlockquoteIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ clipRule: "evenodd",
30
+ d: "M15.865 16.305a44.92 44.92 0 01-1.698.028c-.707 0-1.264-.011-1.699-.028-1.018-.039-1.754-.819-1.781-1.824a62.15 62.15 0 01-.02-1.67V9.646c0-3.19 2.12-5.165 4.585-5.926.335-.103.765-.073 1.061.236.224.232.378.5.484.738.267.605-.107 1.181-.552 1.454-.707.433-1.218.918-1.554 1.48-.29.485-.459 1.044-.498 1.705.635 0 1.148.007 1.56.017 1.065.025 1.87.833 1.896 1.897a65.173 65.173 0 01-.002 3.234c-.028 1.005-.764 1.785-1.782 1.824zm-8.333 0a44.92 44.92 0 01-1.699.028c-.706 0-1.263-.011-1.698-.028-1.018-.039-1.754-.819-1.782-1.824-.011-.432-.02-.981-.02-1.67V9.646c0-3.19 2.12-5.164 4.585-5.925.336-.104.765-.074 1.062.235.224.232.378.5.483.738.268.606-.106 1.182-.552 1.454-.707.434-1.217.918-1.553 1.48-.29.485-.459 1.044-.499 1.705.636 0 1.149.007 1.56.017 1.065.025 1.87.833 1.897 1.897.01.415.017.93.017 1.564 0 .689-.008 1.238-.02 1.67-.027 1.005-.764 1.785-1.78 1.824z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ BlockquoteIcon.displayName = "BlockquoteIcon";
36
+ //#endregion
37
+ export { BlockquoteIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/CallIcon.d.ts
7
+ type CallIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const CallIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { CallIcon, CallIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/CallIcon.tsx
5
+ const CallIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `CallIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[CallIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M4.141 2.98a1.643 1.643 0 012.322.001l2.03 2.026a1.656 1.656 0 01.359 1.812 1.657 1.657 0 01-.36.538.63.63 0 000 .892l3.245 3.241a.654.654 0 00.924 0 1.646 1.646 0 011.789-.356c.199.082.38.203.534.356l2.03 2.026a1.656 1.656 0 01.486 1.175 1.662 1.662 0 01-.487 1.175l-.48.48a3.94 3.94 0 01-4.918.527l-.004-.003a31.55 31.55 0 01-8.494-8.491v-.002a3.953 3.953 0 01.542-4.915l.482-.481zm1.161.54c-.175 0-.34.07-.461.19l-.482.48a2.922 2.922 0 00-.4 3.637l.005.009a30.541 30.541 0 008.202 8.185l.006.005a2.954 2.954 0 003.66-.408l.482-.48a.637.637 0 00.186-.447.626.626 0 00-.186-.446l-2.03-2.026a.647.647 0 00-.462-.19.656.656 0 00-.462.19 1.644 1.644 0 01-2.322 0L7.793 8.977a1.66 1.66 0 010-2.349.637.637 0 00.186-.446.626.626 0 00-.186-.447L5.763 3.71a.653.653 0 00-.46-.19z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ CallIcon.displayName = "CallIcon";
35
+ //#endregion
36
+ export { CallIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/CallIncomingIcon.d.ts
7
+ type CallIncomingIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const CallIncomingIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { CallIncomingIcon, CallIncomingIconProps };
@@ -0,0 +1,44 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/CallIncomingIcon.tsx
5
+ const CallIncomingIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `CallIncomingIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[CallIncomingIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [
24
+ title ? /* @__PURE__ */ jsx("title", {
25
+ id: titleId,
26
+ children: title
27
+ }) : null,
28
+ /* @__PURE__ */ jsx("path", {
29
+ fill: "currentColor",
30
+ d: "M16.743 2.964a.5.5 0 10-.707-.708L13 5.292V3.67a.5.5 0 10-1 0v2.828a.5.5 0 00.5.5h2.829a.5.5 0 100-1h-1.622l3.036-3.035z"
31
+ }),
32
+ /* @__PURE__ */ jsx("path", {
33
+ fill: "currentColor",
34
+ fillRule: "evenodd",
35
+ clipRule: "evenodd",
36
+ d: "M5.302 2.5c-.433 0-.851.172-1.16.48l-.483.482a3.95 3.95 0 00-.543 4.915l.001.002.015.023a31.55 31.55 0 008.48 8.468l.003.003a3.939 3.939 0 004.917-.526l.481-.481a1.654 1.654 0 00.487-1.175 1.662 1.662 0 00-.487-1.175l-2.03-2.026a1.647 1.647 0 00-1.788-.356c-.2.082-.381.203-.534.357a.653.653 0 01-.923 0L8.492 8.248a.63.63 0 010-.892 1.657 1.657 0 00.36-1.813 1.656 1.656 0 00-.36-.537L6.463 2.98a1.643 1.643 0 00-1.16-.481zm-.461 1.21a.653.653 0 01.923 0l2.029 2.026a.635.635 0 01.186.446.626.626 0 01-.186.446 1.66 1.66 0 000 2.35l3.245 3.241a1.643 1.643 0 002.322 0 .648.648 0 01.462-.19.656.656 0 01.462.19l2.03 2.026a.634.634 0 01.186.446.626.626 0 01-.186.446l-.482.48a2.949 2.949 0 01-3.66.409l-.006-.005a30.541 30.541 0 01-8.202-8.185l-.006-.01a2.917 2.917 0 01.4-3.635l.483-.481z"
37
+ })
38
+ ]
39
+ })
40
+ });
41
+ });
42
+ CallIncomingIcon.displayName = "CallIncomingIcon";
43
+ //#endregion
44
+ export { CallIncomingIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/ChevronDoubleLeftIcon.d.ts
7
+ type ChevronDoubleLeftIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const ChevronDoubleLeftIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { ChevronDoubleLeftIcon, ChevronDoubleLeftIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/ChevronDoubleLeftIcon.tsx
5
+ const ChevronDoubleLeftIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `ChevronDoubleLeftIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[ChevronDoubleLeftIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M9.749 5.244c.309.3.333.773.071 1.1l-.071.079L6.07 10l3.679 3.577c.309.3.333.774.071 1.1l-.071.079a.876.876 0 01-1.131.07l-.081-.07-4.286-4.167a.816.816 0 01-.071-1.1l.071-.078 4.286-4.167a.875.875 0 011.212 0zm6 0c.309.3.333.773.071 1.1l-.071.079L12.07 10l3.679 3.577c.309.3.333.774.071 1.1l-.071.079a.876.876 0 01-1.131.07l-.081-.07-4.286-4.167a.816.816 0 01-.071-1.1l.071-.078 4.286-4.167a.875.875 0 011.212 0z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ ChevronDoubleLeftIcon.displayName = "ChevronDoubleLeftIcon";
35
+ //#endregion
36
+ export { ChevronDoubleLeftIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/ChevronDoubleRightIcon.d.ts
7
+ type ChevronDoubleRightIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const ChevronDoubleRightIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { ChevronDoubleRightIcon, ChevronDoubleRightIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/ChevronDoubleRightIcon.tsx
5
+ const ChevronDoubleRightIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `ChevronDoubleRightIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[ChevronDoubleRightIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M11.382 5.175l.081.07L15.75 9.41c.309.3.333.773.071 1.1l-.071.078-4.286 4.167a.875.875 0 01-1.212 0 .816.816 0 01-.071-1.1l.071-.079L13.93 10l-3.679-3.577a.816.816 0 01-.071-1.1l.071-.079a.876.876 0 011.131-.07zm-6 0l.081.07L9.75 9.41c.309.3.333.773.071 1.1l-.071.078-4.286 4.167a.875.875 0 01-1.212 0 .816.816 0 01-.071-1.1l.071-.079L7.93 10 4.251 6.423a.816.816 0 01-.071-1.1l.071-.079a.876.876 0 011.131-.07z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ ChevronDoubleRightIcon.displayName = "ChevronDoubleRightIcon";
35
+ //#endregion
36
+ export { ChevronDoubleRightIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/CutIcon.d.ts
7
+ type CutIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const CutIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { CutIcon, CutIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/CutIcon.tsx
5
+ const CutIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `CutIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[CutIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M 17.695312,3.453125 C 17.164213,3.3160082 16.583229,3.3703997 16.068359,3.6464844 a 0.50005,0.50005 0 0 0 -0.01758,0.00977 L 3.4296875,11.095703 A 0.5,0.5 0 0 0 3.2539063,11.78125 0.5,0.5 0 0 0 3.9375,11.957031 L 16.542969,4.5273437 c 0.399265,-0.2132693 0.819472,-0.1211234 1.183593,0.09375 l -7.470703,4.4492188 a 0.5,0.5 0 0 0 -0.173828,0.6855469 0.5,0.5 0 0 0 0.685547,0.1738281 L 18.859375,5.1113281 A 0.50005,0.50005 0 0 0 19.023437,4.4101562 C 18.706564,3.9193357 18.226412,3.5902418 17.695312,3.453125 Z M 3.1660156,10.978516 c -0.8038194,0 -1.6137059,0.264917 -2.2363281,0.818359 -0.62262221,0.553442 -1.03320312,1.404514 -1.03320312,2.453125 -10e-9,1.048611 0.41058092,1.89773 1.03320312,2.451172 0.6226222,0.553442 1.4325087,0.818359 2.2363281,0.818359 0.8038194,0 1.6156591,-0.264917 2.2382813,-0.818359 C 6.0269191,16.14773 6.4375,15.298611 6.4375,14.25 6.4375,13.201389 6.0269191,12.350317 5.4042969,11.796875 4.7816747,11.243433 3.969835,10.978516 3.1660156,10.978516 Z m 0,1 c 0.5815973,0 1.1577785,0.196237 1.5742188,0.566406 C 5.1566747,12.915091 5.4375,13.451389 5.4375,14.25 c 0,0.798611 -0.2808253,1.332956 -0.6972656,1.703125 -0.4164403,0.370169 -0.9926215,0.566406 -1.5742188,0.566406 -0.5815972,0 -1.1558253,-0.196237 -1.5722656,-0.566406 C 1.1773097,15.582956 0.89648437,15.048611 0.89648438,14.25 c 0,-0.798611 0.28082532,-1.334909 0.69726562,-1.705078 0.4164403,-0.370169 0.9906684,-0.566406 1.5722656,-0.566406 z M 3.9375,7.0410156 A 0.5,0.5 0 0 0 3.2539063,7.21875 0.5,0.5 0 0 0 3.4296875,7.9023437 L 16.050781,15.341797 a 0.50005,0.50005 0 0 0 0.01758,0.01172 c 1.029709,0.5516 2.321083,0.217456 2.955078,-0.763672 A 0.50005,0.50005 0 0 0 18.859375,13.888672 L 9.0820313,8.0664063 A 0.5,0.5 0 0 0 8.3964844,8.2402344 0.5,0.5 0 0 0 8.5703125,8.9257813 l 9.1562495,5.4531247 c -0.36409,0.214496 -0.784465,0.30478 -1.183593,0.0918 h -0.002 z m -0.7714844,-5.5625 c -0.8038194,0 -1.6137059,0.2649177 -2.2363281,0.8183594 C 0.30706529,2.8503167 -0.10351562,3.7013892 -0.10351562,4.75 c -10e-9,1.0486108 0.41058092,1.8977302 1.03320312,2.4511719 0.6226222,0.5534417 1.4325087,0.8183594 2.2363281,0.8183594 0.8038194,0 1.6156591,-0.2649177 2.2382813,-0.8183594 C 6.0269191,6.6477302 6.4375,5.7986108 6.4375,4.75 6.4375,3.7013892 6.0269191,2.8503167 5.4042969,2.296875 4.7816747,1.7434333 3.969835,1.4785156 3.1660156,1.4785156 Z m 0,1 c 0.5815973,0 1.1577785,0.1962373 1.5742188,0.5664063 C 5.1566747,3.4150909 5.4375,3.9513893 5.4375,4.75 5.4375,5.5486107 5.1566747,6.082956 4.7402344,6.453125 4.3237941,6.823294 3.7476129,7.0195312 3.1660156,7.0195312 2.5844184,7.0195312 2.0101903,6.823294 1.59375,6.453125 1.1773097,6.082956 0.89648437,5.5486107 0.89648438,4.75 0.89648438,3.9513893 1.1773097,3.4150909 1.59375,3.0449219 2.0101903,2.6747529 2.5844184,2.4785156 3.1660156,2.4785156 Z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ CutIcon.displayName = "CutIcon";
35
+ //#endregion
36
+ export { CutIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/DisableIcon.d.ts
7
+ type DisableIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const DisableIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { DisableIcon, DisableIconProps };
@@ -0,0 +1,37 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/DisableIcon.tsx
5
+ const DisableIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `DisableIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[DisableIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M10 4.5a5.5 5.5 0 00-4.227 9.02l7.747-7.747A5.478 5.478 0 0010 4.5zm4.227 1.98L6.48 14.227a5.5 5.5 0 007.746-7.746zM3.5 10a6.5 6.5 0 1113 0 6.5 6.5 0 01-13 0z",
30
+ clipRule: "evenodd"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ DisableIcon.displayName = "DisableIcon";
36
+ //#endregion
37
+ export { DisableIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/NotificationIcon.d.ts
7
+ type NotificationIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const NotificationIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { NotificationIcon, NotificationIconProps };
@@ -0,0 +1,37 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/NotificationIcon.tsx
5
+ const NotificationIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `NotificationIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[NotificationIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M6.96 4.61C7.778 3.7 8.874 3.202 10 3.202c1.128 0 2.223.498 3.042 1.408.82.913 1.29 2.163 1.29 3.478v5.54H5.67v-5.54c0-1.315.47-2.565 1.29-3.478zm8.573 3.478v5.54h1.409v1.2H3.06v-1.2h1.409v-5.54c0-1.594.569-3.135 1.598-4.28C7.1 2.661 8.512 2.002 10.001 2.002c1.489 0 2.902.659 3.933 1.806 1.03 1.145 1.599 2.686 1.599 4.28zm-7.717 8.71v1.2h4.37v-1.2h-4.37z",
30
+ clipRule: "evenodd"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ NotificationIcon.displayName = "NotificationIcon";
36
+ //#endregion
37
+ export { NotificationIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/NotificationOrnamentIcon.d.ts
7
+ type NotificationOrnamentIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const NotificationOrnamentIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { NotificationOrnamentIcon, NotificationOrnamentIconProps };
@@ -0,0 +1,37 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/NotificationOrnamentIcon.tsx
5
+ const NotificationOrnamentIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `NotificationOrnamentIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[NotificationOrnamentIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("circle", {
27
+ fill: "currentColor",
28
+ cx: 10,
29
+ cy: 10,
30
+ r: 6
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ NotificationOrnamentIcon.displayName = "NotificationOrnamentIcon";
36
+ //#endregion
37
+ export { NotificationOrnamentIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/PasteIcon.d.ts
7
+ type PasteIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const PasteIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { PasteIcon, PasteIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/PasteIcon.tsx
5
+ const PasteIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `PasteIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[PasteIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "m 17.292969,6.2246094 c -0.48302,-0.031464 -1.006649,0.1489497 -1.425781,0.5546875 a 0.50005,0.50005 0 0 0 -0.0059,0.00586 L 11.125,11.521484 a 0.50005,0.50005 0 0 0 -0.126953,0.216797 l -0.791016,2.769532 a 0.50005,0.50005 0 0 0 0.617188,0.61914 l 2.771484,-0.792969 A 0.50005,0.50005 0 0 0 13.8125,14.207031 l 4.734375,-4.7343747 a 0.50005,0.50005 0 0 0 0.0059,-0.00586 C 18.958472,9.0476647 19.138886,8.5240349 19.107422,8.0410156 19.075958,7.5579964 18.854145,7.1236762 18.53125,6.8007812 18.208355,6.4778863 17.775988,6.2560731 17.292969,6.2246094 Z m -0.06445,0.9980468 c 0.211305,0.013764 0.429076,0.1185297 0.595703,0.2851563 0.166626,0.1666266 0.271392,0.3863512 0.285156,0.5976563 0.01376,0.211305 -0.04257,0.4255114 -0.275391,0.6660156 l -4.636718,4.6367186 -1.783203,0.509766 0.509765,-1.78125 4.638672,-4.6386721 c 0.240504,-0.2328183 0.454711,-0.289155 0.666016,-0.2753907 z M 2.7714844,13.353516 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 6.3183594 a 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z m 0,-3.166016 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 7.4941406 a 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z m 0,-3.1679688 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5000001 h 9.4999996 a 0.5,0.5 0 0 0 0.5,-0.5000001 0.5,0.5 0 0 0 -0.5,-0.5 z M 4.3535156,1.4785156 C 3.6460701,1.4785156 3.0625,2.0640389 3.0625,2.7714844 V 3.5625 c 0,0.7074455 0.5835701,1.2910156 1.2910156,1.2910156 H 10.6875 c 0.707445,0 1.291016,-0.5835701 1.291016,-1.2910156 V 2.7714844 c 0,-0.7074455 -0.583571,-1.2929688 -1.291016,-1.2929688 H 8.640625 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 H 10.6875 c 0.167005,0 0.291016,0.1259634 0.291016,0.2929688 V 3.5625 c 0,0.1670054 -0.124011,0.2910156 -0.291016,0.2910156 H 4.3535156 C 4.1865103,3.8535156 4.0625,3.7295054 4.0625,3.5625 V 2.7714844 c 0,-0.1670054 0.1240103,-0.2929688 0.2910156,-0.2929688 h 2.046875 a 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z m 3.1679688,-1.58398435 c -0.4079861,0 -0.8226903,0.13427518 -1.1484375,0.42382813 C 6.0472997,0.60791232 5.8339844,1.061198 5.8339844,1.5820312 c 0,0.5208333 0.2133153,0.9760721 0.5390625,1.2656251 0.3257472,0.2895529 0.7404514,0.421875 1.1484375,0.421875 0.407986,0 0.8226903,-0.1323221 1.1484375,-0.421875 C 8.9956691,2.5581033 9.2089844,2.1028645 9.2089844,1.5820312 9.2089844,1.061198 8.9956691,0.60791232 8.6699219,0.31835938 8.3441747,0.02880643 7.9294704,-0.10546875 7.5214844,-0.10546875 Z m 0,1 c 0.1857639,0 0.3648097,0.0655948 0.484375,0.17187495 0.1195653,0.1062803 0.203125,0.2447919 0.203125,0.515625 0,0.2708332 -0.08356,0.411298 -0.203125,0.5175782 -0.1195653,0.1062802 -0.2986111,0.1699219 -0.484375,0.1699219 -0.185764,0 -0.3648097,-0.063642 -0.484375,-0.1699219 -0.1195653,-0.1062802 -0.203125,-0.246745 -0.203125,-0.5175782 0,-0.2708331 0.08356,-0.4093447 0.203125,-0.515625 0.1195653,-0.10628017 0.298611,-0.17187495 0.484375,-0.17187495 z M 11.478516,2.2714844 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 h 2.375 c 0.167005,0 0.292968,0.1240102 0.292968,0.2910156 v 2.7714844 a 0.5,0.5 0 0 0 0.5,0.5 0.5,0.5 0 0 0 0.5,-0.5 V 3.5625 c 0,-0.7074455 -0.585523,-1.2910156 -1.292968,-1.2910156 z m -10.291016,0 c -0.70744548,0 -1.29101562,0.5835701 -1.29101562,1.2910156 v 14.25 c -10e-9,0.707445 0.58357014,1.291016 1.29101562,1.291016 h 12.666016 c 0.707445,0 1.292968,-0.583571 1.292968,-1.291016 v -2.771484 a 0.5,0.5 0 0 0 -0.5,-0.5 0.5,0.5 0 0 0 -0.5,0.5 V 17.8125 c 0,0.167005 -0.125963,0.291016 -0.292968,0.291016 H 1.1875 c -0.1670054,0 -0.29101563,-0.124011 -0.29101562,-0.291016 v -14.25 c 0,-0.1670054 0.12401022,-0.2910156 0.29101562,-0.2910156 h 2.375 a 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ PasteIcon.displayName = "PasteIcon";
35
+ //#endregion
36
+ export { PasteIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/ProductSwitcherIcon.d.ts
7
+ type ProductSwitcherIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const ProductSwitcherIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { ProductSwitcherIcon, ProductSwitcherIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/ProductSwitcherIcon.tsx
5
+ const ProductSwitcherIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `ProductSwitcherIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[ProductSwitcherIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M1.4 1.4H9V9H1.4V1.4zm1.2 1.2v5.2h5.2V2.6H2.6zM11 1.4h7.6V9H11V1.4zm1.2 1.2v5.2h5.2V2.6h-5.2zM1.4 11H9v7.6H1.4V11zm1.2 1.2v5.2h5.2v-5.2H2.6zM11 11h7.6v7.6H11V11zm1.2 1.2v5.2h5.2v-5.2h-5.2z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ ProductSwitcherIcon.displayName = "ProductSwitcherIcon";
35
+ //#endregion
36
+ export { ProductSwitcherIcon };
@@ -0,0 +1,18 @@
1
+ import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
2
+ import * as _$react from "react";
3
+ import * as _$_hive_ui_box0 from "@hive-ui/box";
4
+ import * as _$_hive_ui_style_props0 from "@hive-ui/style-props";
5
+
6
+ //#region src/UploadToCloudIcon.d.ts
7
+ type UploadToCloudIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const UploadToCloudIcon: _$react.ForwardRefExoticComponent<Pick<_$_hive_ui_box0.BoxProps<"span">, "as" | "children" | "color" | "display" | "element"> & {
12
+ size?: _$_hive_ui_style_props0.IconSize;
13
+ } & {
14
+ title?: string;
15
+ decorative: boolean;
16
+ } & _$react.RefAttributes<HTMLElement>>;
17
+ //#endregion
18
+ export { UploadToCloudIcon, UploadToCloudIconProps };
@@ -0,0 +1,36 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/UploadToCloudIcon.tsx
5
+ const UploadToCloudIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `UploadToCloudIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[UploadToCloudIcon]: Missing a title for non-decorative icon.");
8
+ return /* @__PURE__ */ jsx(IconWrapper, {
9
+ as,
10
+ display,
11
+ element,
12
+ size,
13
+ color,
14
+ ref,
15
+ children: /* @__PURE__ */ jsxs("svg", {
16
+ role: "img",
17
+ "aria-hidden": decorative,
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ width: "100%",
20
+ height: "100%",
21
+ viewBox: "0 0 20 20",
22
+ "aria-labelledby": titleId,
23
+ children: [title ? /* @__PURE__ */ jsx("title", {
24
+ id: titleId,
25
+ children: title
26
+ }) : null, /* @__PURE__ */ jsx("path", {
27
+ fill: "currentColor",
28
+ fillRule: "evenodd",
29
+ d: "M10.5 8.5h.012c.02 0 .041.002.062.005L10.5 8.5a.502.502 0 01.284.089l.018.013c.014.01.027.02.04.033l.012.011 2.142 2.143a.5.5 0 01-.637.765l-.07-.058L11 10.207V16a.5.5 0 01-.992.09L10 16v-5.793l-1.29 1.29a.5.5 0 01-.637.057l-.07-.058a.5.5 0 01-.057-.637l.058-.07 2.142-2.143.013-.011a.503.503 0 01.039-.033l-.052.044A.502.502 0 0110.5 8.5zm-.5-5c1.817 0 3.457.968 4.356 2.49l.071.127.073.004a3.746 3.746 0 013.495 3.541L18 9.86c0 1.448-.652 2.465-1.717 3.082a4.246 4.246 0 01-1.554.54l-.164.018H14.5a.5.5 0 01-.09-.992l.09-.008.02.002c.068-.006.202-.027.381-.073a3.44 3.44 0 00.88-.352C16.552 11.631 17 10.931 17 9.86c0-1.5-1.196-2.714-2.693-2.747l-.167.001-.33.012-.14-.297A4.06 4.06 0 0010 4.5c-2.105 0-3.814 1.508-4.035 3.526l-.017.203-.032.54-.536-.074C4.128 8.522 3 9.402 3 10.67c0 .876.36 1.37.997 1.635.312.13.64.186.915.196L6.5 12.5a.5.5 0 01.09.992l-.09.008H5.101a3.625 3.625 0 01-1.489-.272C2.618 12.814 2 11.968 2 10.67c0-1.656 1.28-2.869 2.82-2.987l.184-.009.026-.153c.432-2.255 2.373-3.918 4.746-4.016L10 3.5z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ UploadToCloudIcon.displayName = "UploadToCloudIcon";
35
+ //#endregion
36
+ export { UploadToCloudIcon };
package/package.json CHANGED
@@ -1,22 +1,28 @@
1
1
  {
2
2
  "name": "@hive-ui/icons",
3
- "version": "0.3.1",
4
- "description": "Hive UI Icons",
3
+ "version": "0.5.0",
4
+ "description": "Icons provide consistent visual symbols for actions, objects, and statuses. Each icon supports accessible or decorative usage, token colours, and standard sizes.",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
8
8
  "type": "module",
9
9
  "exports": {
10
10
  ".": "./dist/index.mjs",
11
+ "./AgentIcon": "./dist/AgentIcon.mjs",
11
12
  "./ArrowBackIcon": "./dist/ArrowBackIcon.mjs",
12
13
  "./ArrowForwardIcon": "./dist/ArrowForwardIcon.mjs",
13
14
  "./ArtificialIntelligenceIcon": "./dist/ArtificialIntelligenceIcon.mjs",
14
15
  "./AttachIcon": "./dist/AttachIcon.mjs",
16
+ "./BlockquoteIcon": "./dist/BlockquoteIcon.mjs",
15
17
  "./BusinessIcon": "./dist/BusinessIcon.mjs",
16
18
  "./CalendarIcon": "./dist/CalendarIcon.mjs",
19
+ "./CallIcon": "./dist/CallIcon.mjs",
20
+ "./CallIncomingIcon": "./dist/CallIncomingIcon.mjs",
17
21
  "./ChatIcon": "./dist/ChatIcon.mjs",
18
22
  "./CheckboxCheckIcon": "./dist/CheckboxCheckIcon.mjs",
19
23
  "./ChevronDisclosureIcon": "./dist/ChevronDisclosureIcon.mjs",
24
+ "./ChevronDoubleLeftIcon": "./dist/ChevronDoubleLeftIcon.mjs",
25
+ "./ChevronDoubleRightIcon": "./dist/ChevronDoubleRightIcon.mjs",
20
26
  "./ChevronDownIcon": "./dist/ChevronDownIcon.mjs",
21
27
  "./ChevronLeftIcon": "./dist/ChevronLeftIcon.mjs",
22
28
  "./ChevronRightIcon": "./dist/ChevronRightIcon.mjs",
@@ -25,9 +31,11 @@
25
31
  "./CloseIcon": "./dist/CloseIcon.mjs",
26
32
  "./CodeIcon": "./dist/CodeIcon.mjs",
27
33
  "./CopyIcon": "./dist/CopyIcon.mjs",
34
+ "./CutIcon": "./dist/CutIcon.mjs",
28
35
  "./DarkModeIcon": "./dist/DarkModeIcon.mjs",
29
36
  "./DeleteIcon": "./dist/DeleteIcon.mjs",
30
37
  "./DirectoryIcon": "./dist/DirectoryIcon.mjs",
38
+ "./DisableIcon": "./dist/DisableIcon.mjs",
31
39
  "./DividerIcon": "./dist/DividerIcon.mjs",
32
40
  "./DownloadIcon": "./dist/DownloadIcon.mjs",
33
41
  "./EditIcon": "./dist/EditIcon.mjs",
@@ -50,9 +58,13 @@
50
58
  "./NeutralIcon": "./dist/NeutralIcon.mjs",
51
59
  "./NewIcon": "./dist/NewIcon.mjs",
52
60
  "./NotesIcon": "./dist/NotesIcon.mjs",
61
+ "./NotificationIcon": "./dist/NotificationIcon.mjs",
62
+ "./NotificationOrnamentIcon": "./dist/NotificationOrnamentIcon.mjs",
53
63
  "./OrderedListIcon": "./dist/OrderedListIcon.mjs",
64
+ "./PasteIcon": "./dist/PasteIcon.mjs",
54
65
  "./PinIcon": "./dist/PinIcon.mjs",
55
66
  "./PlusIcon": "./dist/PlusIcon.mjs",
67
+ "./ProductSwitcherIcon": "./dist/ProductSwitcherIcon.mjs",
56
68
  "./RaiseHandIcon": "./dist/RaiseHandIcon.mjs",
57
69
  "./RefreshIcon": "./dist/RefreshIcon.mjs",
58
70
  "./ResetIcon": "./dist/ResetIcon.mjs",
@@ -66,6 +78,7 @@
66
78
  "./SupportIcon": "./dist/SupportIcon.mjs",
67
79
  "./TimeIcon": "./dist/TimeIcon.mjs",
68
80
  "./TourIcon": "./dist/TourIcon.mjs",
81
+ "./UploadToCloudIcon": "./dist/UploadToCloudIcon.mjs",
69
82
  "./UserIcon": "./dist/UserIcon.mjs",
70
83
  "./UsersIcon": "./dist/UsersIcon.mjs",
71
84
  "./WarningIcon": "./dist/WarningIcon.mjs",
@@ -82,8 +95,8 @@
82
95
  "prepublishOnly": "vp run build"
83
96
  },
84
97
  "dependencies": {
85
- "@hive-ui/box": "^0.3.1",
86
- "@hive-ui/style-props": "^0.3.1"
98
+ "@hive-ui/box": "^0.5.0",
99
+ "@hive-ui/style-props": "^0.5.0"
87
100
  },
88
101
  "devDependencies": {
89
102
  "@types/node": "^25.6.2",