@hive-ui/icons 0.2.3 → 0.2.4

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.
Files changed (76) hide show
  1. package/dist/ArrowBackIcon.d.mts +18 -0
  2. package/dist/ArrowBackIcon.mjs +36 -0
  3. package/dist/ArtificialIntelligenceIcon.d.mts +18 -0
  4. package/dist/ArtificialIntelligenceIcon.mjs +45 -0
  5. package/dist/AttachIcon.d.mts +18 -0
  6. package/dist/AttachIcon.mjs +36 -0
  7. package/dist/BusinessIcon.d.mts +18 -0
  8. package/dist/BusinessIcon.mjs +44 -0
  9. package/dist/ChatIcon.d.mts +18 -0
  10. package/dist/ChatIcon.mjs +37 -0
  11. package/dist/CodeIcon.d.mts +18 -0
  12. package/dist/CodeIcon.mjs +47 -0
  13. package/dist/DarkModeIcon.d.mts +18 -0
  14. package/dist/DarkModeIcon.mjs +38 -0
  15. package/dist/DeleteIcon.d.mts +18 -0
  16. package/dist/DeleteIcon.mjs +36 -0
  17. package/dist/DirectoryIcon.d.mts +18 -0
  18. package/dist/DirectoryIcon.mjs +37 -0
  19. package/dist/DividerIcon.d.mts +18 -0
  20. package/dist/DividerIcon.mjs +45 -0
  21. package/dist/DownloadIcon.d.mts +18 -0
  22. package/dist/DownloadIcon.mjs +38 -0
  23. package/dist/EditIcon.d.mts +18 -0
  24. package/dist/EditIcon.mjs +36 -0
  25. package/dist/EmailIcon.d.mts +18 -0
  26. package/dist/EmailIcon.mjs +37 -0
  27. package/dist/FileIcon.d.mts +18 -0
  28. package/dist/FileIcon.mjs +37 -0
  29. package/dist/FilterIcon.d.mts +18 -0
  30. package/dist/FilterIcon.mjs +36 -0
  31. package/dist/FlagIcon.d.mts +18 -0
  32. package/dist/FlagIcon.mjs +37 -0
  33. package/dist/FolderIcon.d.mts +18 -0
  34. package/dist/FolderIcon.mjs +38 -0
  35. package/dist/InformationIcon.d.mts +18 -0
  36. package/dist/InformationIcon.mjs +36 -0
  37. package/dist/LightModeIcon.d.mts +18 -0
  38. package/dist/LightModeIcon.mjs +49 -0
  39. package/dist/LockIcon.d.mts +18 -0
  40. package/dist/LockIcon.mjs +45 -0
  41. package/dist/MinusIcon.d.mts +18 -0
  42. package/dist/MinusIcon.mjs +36 -0
  43. package/dist/MoreIcon.d.mts +18 -0
  44. package/dist/MoreIcon.mjs +36 -0
  45. package/dist/NotesIcon.d.mts +18 -0
  46. package/dist/NotesIcon.mjs +36 -0
  47. package/dist/PinIcon.d.mts +18 -0
  48. package/dist/PinIcon.mjs +36 -0
  49. package/dist/PlusIcon.d.mts +18 -0
  50. package/dist/PlusIcon.mjs +36 -0
  51. package/dist/RaiseHandIcon.d.mts +18 -0
  52. package/dist/RaiseHandIcon.mjs +36 -0
  53. package/dist/RefreshIcon.d.mts +18 -0
  54. package/dist/RefreshIcon.mjs +36 -0
  55. package/dist/ResetIcon.d.mts +18 -0
  56. package/dist/ResetIcon.mjs +36 -0
  57. package/dist/SMSIcon.d.mts +18 -0
  58. package/dist/SMSIcon.mjs +37 -0
  59. package/dist/SearchIcon.d.mts +18 -0
  60. package/dist/SearchIcon.mjs +36 -0
  61. package/dist/SelectedIcon.d.mts +10 -3
  62. package/dist/ShareIcon.d.mts +18 -0
  63. package/dist/ShareIcon.mjs +42 -0
  64. package/dist/ShowIcon.d.mts +18 -0
  65. package/dist/ShowIcon.mjs +38 -0
  66. package/dist/StarIcon.d.mts +18 -0
  67. package/dist/StarIcon.mjs +37 -0
  68. package/dist/SupportIcon.d.mts +18 -0
  69. package/dist/SupportIcon.mjs +38 -0
  70. package/dist/TimeIcon.d.mts +18 -0
  71. package/dist/TimeIcon.mjs +45 -0
  72. package/dist/TourIcon.d.mts +18 -0
  73. package/dist/TourIcon.mjs +38 -0
  74. package/dist/UserIcon.d.mts +18 -0
  75. package/dist/UserIcon.mjs +37 -0
  76. package/package.json +40 -3
@@ -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/StarIcon.d.ts
7
+ type StarIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const StarIcon: _$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 { StarIcon, StarIconProps };
@@ -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/StarIcon.tsx
5
+ const StarIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `StarIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[StarIcon]: 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
+ width: "100%",
19
+ height: "100%",
20
+ viewBox: "0 0 20 20",
21
+ fill: "none",
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: "M11.342 2.813a.98.98 0 01.061.146l1.32 4.035h3.82a1.507 1.507 0 01.868.303 1.486 1.486 0 01.553 1.505 1.48 1.48 0 01-.495.807l-3.288 2.55 1.42 3.885c.01.028.02.055.027.084a1.477 1.477 0 01-.505 1.538 1.511 1.511 0 01-1.753.098l-3.376-2.37-3.372 2.318a1.516 1.516 0 01-1.744-.104 1.49 1.49 0 01-.506-1.54.983.983 0 01.027-.086l1.418-3.828L2.532 9.61a1.481 1.481 0 01-.441-1.64c.097-.266.27-.5.498-.672a1.507 1.507 0 01.868-.303h3.82l1.32-4.035a.985.985 0 01.062-.146 1.5 1.5 0 01.555-.594 1.518 1.518 0 012.128.594zm-3.34 5.17H3.458a.503.503 0 00-.428.325.491.491 0 00.118.521l3.858 2.99-1.668 4.504a.497.497 0 00.17.517.508.508 0 00.545.059L10 14.185l3.947 2.772a.51.51 0 00.708-.292.497.497 0 00.008-.284l-1.668-4.56 3.858-2.992a.495.495 0 00-.31-.846h-4.546l-1.543-4.72A.506.506 0 0010 2.99a.513.513 0 00-.453.275l-1.544 4.72z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ StarIcon.displayName = "StarIcon";
36
+ //#endregion
37
+ export { StarIcon };
@@ -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/SupportIcon.d.ts
7
+ type SupportIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const SupportIcon: _$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 { SupportIcon, SupportIconProps };
@@ -0,0 +1,38 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/SupportIcon.tsx
5
+ const SupportIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `SupportIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[SupportIcon]: 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
+ fill: "none",
22
+ viewBox: "0 0 20 20",
23
+ "aria-labelledby": titleId,
24
+ children: [title ? /* @__PURE__ */ jsx("title", {
25
+ id: titleId,
26
+ children: title
27
+ }) : null, /* @__PURE__ */ jsx("path", {
28
+ fill: "currentColor",
29
+ fillRule: "evenodd",
30
+ d: "M1.5 10a8.5 8.5 0 1 1 17 0 8.5 8.5 0 0 1-17 0ZM10 2.686a7.314 7.314 0 1 0 0 14.628 7.314 7.314 0 0 0 0-14.628Zm.227 3.67a1.987 1.987 0 0 0-2.213 1.977l.001.593-1.186.002v-.594a3.173 3.173 0 1 1 3.857 3.094l-.013.003a.1.1 0 0 0-.08.094v.946H9.407v-.96a1.286 1.286 0 0 1 1.028-1.242 1.986 1.986 0 0 0-.208-3.913Zm-.99 8.044a.765.765 0 1 1 1.529 0 .765.765 0 0 1-1.53 0Z",
31
+ clipRule: "evenodd"
32
+ })]
33
+ })
34
+ });
35
+ });
36
+ SupportIcon.displayName = "SupportIcon";
37
+ //#endregion
38
+ export { SupportIcon };
@@ -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/TimeIcon.d.ts
7
+ type TimeIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const TimeIcon: _$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 { TimeIcon, TimeIconProps };
@@ -0,0 +1,45 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/TimeIcon.tsx
5
+ const TimeIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `TimeIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[TimeIcon]: 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
+ fill: "none",
22
+ viewBox: "0 0 20 20",
23
+ "aria-labelledby": titleId,
24
+ children: [
25
+ title ? /* @__PURE__ */ jsx("title", {
26
+ id: titleId,
27
+ children: title
28
+ }) : null,
29
+ /* @__PURE__ */ jsx("path", {
30
+ fill: "currentColor",
31
+ d: "M10.5 5.5a.5.5 0 00-1 0v5a.5.5 0 00.5.5h3.5a.5.5 0 000-1h-3V5.5z"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ fill: "currentColor",
35
+ fillRule: "evenodd",
36
+ d: "M10 18a8 8 0 100-16 8 8 0 000 16zm7-8a7 7 0 11-14 0 7 7 0 0114 0z",
37
+ clipRule: "evenodd"
38
+ })
39
+ ]
40
+ })
41
+ });
42
+ });
43
+ TimeIcon.displayName = "TimeIcon";
44
+ //#endregion
45
+ export { TimeIcon };
@@ -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/TourIcon.d.ts
7
+ type TourIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const TourIcon: _$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 { TourIcon, TourIconProps };
@@ -0,0 +1,38 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/TourIcon.tsx
5
+ const TourIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `TourIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[TourIcon]: 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
+ fill: "none",
22
+ viewBox: "0 0 20 20",
23
+ "aria-labelledby": titleId,
24
+ children: [title ? /* @__PURE__ */ jsx("title", {
25
+ id: titleId,
26
+ children: title
27
+ }) : null, /* @__PURE__ */ jsx("path", {
28
+ fill: "currentColor",
29
+ fillRule: "evenodd",
30
+ d: "M12.368 3.004c-.11.01-.22.032-.32.064-.024.007-1.022.405-2.218.883-1.197.478-2.195.875-2.218.88a.583.583 0 01-.23 0 254.59 254.59 0 01-2.014-.8 519.355 519.355 0 00-2.026-.81.957.957 0 00-.348-.059.982.982 0 00-.889.555.99.99 0 00-.088.246l-.014.061L2 8.92c-.002 3.605 0 4.916.005 4.97a1.496 1.496 0 00.835 1.203c.076.037 4.137 1.662 4.21 1.685.276.087.584.09.866.008.046-.013.926-.361 2.252-.892a285.17 285.17 0 012.216-.88.593.593 0 01.236.002c.025.007.814.32 1.753.695 2.276.909 2.306.92 2.38.94a.883.883 0 00.284.027.954.954 0 00.52-.168c.088-.058.211-.18.268-.265a1.04 1.04 0 00.167-.442c.005-.035.008-1.627.009-5.89 0-3.215 0-5.412-.002-4.884a27.05 27.05 0 01-.01.906 1.505 1.505 0 00-.816-1.175c-.1-.05-4.149-1.67-4.245-1.698a1.61 1.61 0 00-.242-.052 2.054 2.054 0 00-.32-.006zM2.002 8.965c0 2.693.001 3.793.002 2.446a4488.935 4488.935 0 00-.002-2.446zM3 8.989l.002 4.827.014.051a.504.504 0 00.267.326c.027.013 3.299 1.324 3.685 1.477l.03.012-.001-4.96-.002-4.962-1.974-.79-1.998-.799-.025-.01L3 8.99zm6.999-4.028l-1.995.798v9.923l.02-.008 1.997-.799 1.976-.79V9.123c0-2.728 0-4.96-.002-4.96l-1.996.798zM13 9.125c0 3.177.002 4.963.006 4.963.003 0 .9.357 1.994.794 1.093.436 1.99.793 1.993.793.005 0 .006-1.59.005-4.824l-.001-4.824-.015-.05a.513.513 0 00-.25-.316 691.202 691.202 0 00-3.702-1.487L13 4.162v4.963z",
31
+ clipRule: "evenodd"
32
+ })]
33
+ })
34
+ });
35
+ });
36
+ TourIcon.displayName = "TourIcon";
37
+ //#endregion
38
+ export { TourIcon };
@@ -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/UserIcon.d.ts
7
+ type UserIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const UserIcon: _$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 { UserIcon, UserIconProps };
@@ -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/UserIcon.tsx
5
+ const UserIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `UserIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[UserIcon]: 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
+ width: "100%",
19
+ height: "100%",
20
+ viewBox: "0 0 20 20",
21
+ fill: "none",
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: "M10 3.5a2.5 2.5 0 100 5 2.5 2.5 0 000-5zM6.5 6a3.5 3.5 0 117 0 3.5 3.5 0 01-7 0zm3.5 5.5A5.5 5.5 0 004.5 17a.5.5 0 01-1 0 6.5 6.5 0 1113 0 .5.5 0 01-1 0 5.5 5.5 0 00-5.5-5.5z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ UserIcon.displayName = "UserIcon";
36
+ //#endregion
37
+ export { UserIcon };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hive-ui/icons",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Hive UI Icons",
5
5
  "files": [
6
6
  "dist"
@@ -8,8 +8,13 @@
8
8
  "type": "module",
9
9
  "exports": {
10
10
  ".": "./dist/index.mjs",
11
+ "./ArrowBackIcon": "./dist/ArrowBackIcon.mjs",
11
12
  "./ArrowForwardIcon": "./dist/ArrowForwardIcon.mjs",
13
+ "./ArtificialIntelligenceIcon": "./dist/ArtificialIntelligenceIcon.mjs",
14
+ "./AttachIcon": "./dist/AttachIcon.mjs",
15
+ "./BusinessIcon": "./dist/BusinessIcon.mjs",
12
16
  "./CalendarIcon": "./dist/CalendarIcon.mjs",
17
+ "./ChatIcon": "./dist/ChatIcon.mjs",
13
18
  "./ChevronDisclosureIcon": "./dist/ChevronDisclosureIcon.mjs",
14
19
  "./ChevronDownIcon": "./dist/ChevronDownIcon.mjs",
15
20
  "./ChevronLeftIcon": "./dist/ChevronLeftIcon.mjs",
@@ -17,18 +22,50 @@
17
22
  "./ChevronUpIcon": "./dist/ChevronUpIcon.mjs",
18
23
  "./ClearIcon": "./dist/ClearIcon.mjs",
19
24
  "./CloseIcon": "./dist/CloseIcon.mjs",
25
+ "./CodeIcon": "./dist/CodeIcon.mjs",
20
26
  "./CopyIcon": "./dist/CopyIcon.mjs",
27
+ "./DarkModeIcon": "./dist/DarkModeIcon.mjs",
28
+ "./DeleteIcon": "./dist/DeleteIcon.mjs",
29
+ "./DirectoryIcon": "./dist/DirectoryIcon.mjs",
30
+ "./DividerIcon": "./dist/DividerIcon.mjs",
31
+ "./DownloadIcon": "./dist/DownloadIcon.mjs",
32
+ "./EditIcon": "./dist/EditIcon.mjs",
33
+ "./EmailIcon": "./dist/EmailIcon.mjs",
21
34
  "./ErrorIcon": "./dist/ErrorIcon.mjs",
35
+ "./FileIcon": "./dist/FileIcon.mjs",
36
+ "./FilterIcon": "./dist/FilterIcon.mjs",
37
+ "./FlagIcon": "./dist/FlagIcon.mjs",
38
+ "./FolderIcon": "./dist/FolderIcon.mjs",
39
+ "./InformationIcon": "./dist/InformationIcon.mjs",
40
+ "./LightModeIcon": "./dist/LightModeIcon.mjs",
22
41
  "./LinkExternalIcon": "./dist/LinkExternalIcon.mjs",
23
42
  "./LinkIcon": "./dist/LinkIcon.mjs",
43
+ "./LockIcon": "./dist/LockIcon.mjs",
24
44
  "./LoginIcon": "./dist/LoginIcon.mjs",
25
45
  "./LogOutIcon": "./dist/LogOutIcon.mjs",
26
46
  "./MenuIcon": "./dist/MenuIcon.mjs",
47
+ "./MinusIcon": "./dist/MinusIcon.mjs",
48
+ "./MoreIcon": "./dist/MoreIcon.mjs",
27
49
  "./NeutralIcon": "./dist/NeutralIcon.mjs",
28
50
  "./NewIcon": "./dist/NewIcon.mjs",
51
+ "./NotesIcon": "./dist/NotesIcon.mjs",
29
52
  "./OrderedListIcon": "./dist/OrderedListIcon.mjs",
53
+ "./PinIcon": "./dist/PinIcon.mjs",
54
+ "./PlusIcon": "./dist/PlusIcon.mjs",
55
+ "./RaiseHandIcon": "./dist/RaiseHandIcon.mjs",
56
+ "./RefreshIcon": "./dist/RefreshIcon.mjs",
57
+ "./ResetIcon": "./dist/ResetIcon.mjs",
58
+ "./SearchIcon": "./dist/SearchIcon.mjs",
30
59
  "./SelectedIcon": "./dist/SelectedIcon.mjs",
60
+ "./ShareIcon": "./dist/ShareIcon.mjs",
61
+ "./ShowIcon": "./dist/ShowIcon.mjs",
62
+ "./SMSIcon": "./dist/SMSIcon.mjs",
63
+ "./StarIcon": "./dist/StarIcon.mjs",
31
64
  "./SuccessIcon": "./dist/SuccessIcon.mjs",
65
+ "./SupportIcon": "./dist/SupportIcon.mjs",
66
+ "./TimeIcon": "./dist/TimeIcon.mjs",
67
+ "./TourIcon": "./dist/TourIcon.mjs",
68
+ "./UserIcon": "./dist/UserIcon.mjs",
32
69
  "./UsersIcon": "./dist/UsersIcon.mjs",
33
70
  "./WarningIcon": "./dist/WarningIcon.mjs",
34
71
  "./package.json": "./package.json"
@@ -44,8 +81,8 @@
44
81
  "prepublishOnly": "vp run build"
45
82
  },
46
83
  "dependencies": {
47
- "@hive-ui/box": "^0.2.3",
48
- "@hive-ui/style-props": "^0.2.3"
84
+ "@hive-ui/box": "^0.2.4",
85
+ "@hive-ui/style-props": "^0.2.4"
49
86
  },
50
87
  "devDependencies": {
51
88
  "@types/node": "^25.6.2",