@hive-ui/icons 0.3.0 → 0.4.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/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/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,6 +1,6 @@
1
1
  {
2
2
  "name": "@hive-ui/icons",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Hive UI Icons",
5
5
  "files": [
6
6
  "dist"
@@ -8,15 +8,21 @@
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",
@@ -28,6 +34,7 @@
28
34
  "./DarkModeIcon": "./dist/DarkModeIcon.mjs",
29
35
  "./DeleteIcon": "./dist/DeleteIcon.mjs",
30
36
  "./DirectoryIcon": "./dist/DirectoryIcon.mjs",
37
+ "./DisableIcon": "./dist/DisableIcon.mjs",
31
38
  "./DividerIcon": "./dist/DividerIcon.mjs",
32
39
  "./DownloadIcon": "./dist/DownloadIcon.mjs",
33
40
  "./EditIcon": "./dist/EditIcon.mjs",
@@ -50,9 +57,12 @@
50
57
  "./NeutralIcon": "./dist/NeutralIcon.mjs",
51
58
  "./NewIcon": "./dist/NewIcon.mjs",
52
59
  "./NotesIcon": "./dist/NotesIcon.mjs",
60
+ "./NotificationIcon": "./dist/NotificationIcon.mjs",
61
+ "./NotificationOrnamentIcon": "./dist/NotificationOrnamentIcon.mjs",
53
62
  "./OrderedListIcon": "./dist/OrderedListIcon.mjs",
54
63
  "./PinIcon": "./dist/PinIcon.mjs",
55
64
  "./PlusIcon": "./dist/PlusIcon.mjs",
65
+ "./ProductSwitcherIcon": "./dist/ProductSwitcherIcon.mjs",
56
66
  "./RaiseHandIcon": "./dist/RaiseHandIcon.mjs",
57
67
  "./RefreshIcon": "./dist/RefreshIcon.mjs",
58
68
  "./ResetIcon": "./dist/ResetIcon.mjs",
@@ -66,6 +76,7 @@
66
76
  "./SupportIcon": "./dist/SupportIcon.mjs",
67
77
  "./TimeIcon": "./dist/TimeIcon.mjs",
68
78
  "./TourIcon": "./dist/TourIcon.mjs",
79
+ "./UploadToCloudIcon": "./dist/UploadToCloudIcon.mjs",
69
80
  "./UserIcon": "./dist/UserIcon.mjs",
70
81
  "./UsersIcon": "./dist/UsersIcon.mjs",
71
82
  "./WarningIcon": "./dist/WarningIcon.mjs",
@@ -82,8 +93,8 @@
82
93
  "prepublishOnly": "vp run build"
83
94
  },
84
95
  "dependencies": {
85
- "@hive-ui/box": "^0.3.0",
86
- "@hive-ui/style-props": "^0.3.0"
96
+ "@hive-ui/box": "^0.4.0",
97
+ "@hive-ui/style-props": "^0.4.0"
87
98
  },
88
99
  "devDependencies": {
89
100
  "@types/node": "^25.6.2",