@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,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/DownloadIcon.tsx
5
+ const DownloadIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `DownloadIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[DownloadIcon]: 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
+ xmlns: "http://www.w3.org/2000/svg",
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
+ clipRule: "evenodd",
31
+ d: "M10.625 3.5a.625.625 0 10-1.25 0v8.491L7.342 9.958a.625.625 0 10-.884.884l3.125 3.125c.244.244.64.244.884 0l3.125-3.125a.625.625 0 00-.884-.884l-2.083 2.083V3.5zm-7.75 13c0-.345.28-.625.625-.625h13a.625.625 0 110 1.25h-13a.625.625 0 01-.625-.625z"
32
+ })]
33
+ })
34
+ });
35
+ });
36
+ DownloadIcon.displayName = "DownloadIcon";
37
+ //#endregion
38
+ export { DownloadIcon };
@@ -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/EditIcon.d.ts
7
+ type EditIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const EditIcon: _$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 { EditIcon, EditIconProps };
@@ -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/EditIcon.tsx
5
+ const EditIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `EditIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[EditIcon]: 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: "M12.345 3.646c.973-.972 2.434-.845 3.646.368 1.21 1.21 1.333 2.662.36 3.636L8.39 15.613a.525.525 0 01-.01.011l-.013.01-.28.28a.515.515 0 01-.157.108l-.091.03-4.081.937a.618.618 0 01-.742-.74l.926-4.089a.515.515 0 01.138-.25l6.84-6.84a.525.525 0 01.01-.01l.009-.008zM4.847 12.82l-.682 3.016 3.007-.69-2.325-2.326zm6.446-6.668l-5.829 5.828 2.549 2.549 5.828-5.829-2.548-2.548zm3.97-1.41c-.836-.836-1.65-.907-2.19-.369l-1.051 1.051 2.548 2.548 1.053-1.051c.48-.482.48-1.171-.11-1.903l-.119-.138z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ EditIcon.displayName = "EditIcon";
35
+ //#endregion
36
+ export { EditIcon };
@@ -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/EmailIcon.d.ts
7
+ type EmailIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const EmailIcon: _$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 { EmailIcon, EmailIconProps };
@@ -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/EmailIcon.tsx
5
+ const EmailIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `EmailIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[EmailIcon]: 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: "M3 5a1 1 0 00-1 1v9a1 1 0 001 1h14a1 1 0 001-1V6a1 1 0 00-1-1H3zm13.824 1H3.176l.137.11 5.61 4.507c.312.25.69.383 1.077.383s.765-.133 1.076-.383l5.61-4.507.138-.11zM3 7.141V15h14V7.141l-5.297 4.255A2.717 2.717 0 0110 12a2.717 2.717 0 01-1.703-.604L3 7.141z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ EmailIcon.displayName = "EmailIcon";
36
+ //#endregion
37
+ export { EmailIcon };
@@ -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/FileIcon.d.ts
7
+ type FileIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const FileIcon: _$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 { FileIcon, FileIconProps };
@@ -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/FileIcon.tsx
5
+ const FileIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `FileIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[FileIcon]: 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: "M16.5 17h-13a.5.5 0 01-.5-.5v-13a.5.5 0 01.5-.5h9.879a.5.5 0 01.353.146l3.122 3.122A.5.5 0 0117 6.62v9.88a.5.5 0 01-.5.5zM2 3.5A1.5 1.5 0 013.5 2h9.879a1.5 1.5 0 011.06.44l3.122 3.12A1.5 1.5 0 0118 6.622V16.5a1.5 1.5 0 01-1.5 1.5h-13A1.5 1.5 0 012 16.5v-13zM5.5 6a.5.5 0 000 1h6a.5.5 0 000-1h-6zM5 10a.5.5 0 01.5-.5h9a.5.5 0 010 1h-9A.5.5 0 015 10zm.5 3a.5.5 0 000 1h8a.5.5 0 000-1h-8z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ FileIcon.displayName = "FileIcon";
36
+ //#endregion
37
+ export { FileIcon };
@@ -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/FilterIcon.d.ts
7
+ type FilterIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const FilterIcon: _$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 { FilterIcon, FilterIconProps };
@@ -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/FilterIcon.tsx
5
+ const FilterIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `FilterIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[FilterIcon]: 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: "M12 13a1 1 0 010 2H8a1 1 0 010-2h4zm2-4a1 1 0 010 2H6a1 1 0 010-2h8zm2-4a1 1 0 010 2H4a1 1 0 110-2h12z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ FilterIcon.displayName = "FilterIcon";
35
+ //#endregion
36
+ export { FilterIcon };
@@ -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/FlagIcon.d.ts
7
+ type FlagIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const FlagIcon: _$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 { FlagIcon, FlagIconProps };
@@ -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/FlagIcon.tsx
5
+ const FlagIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `FlagIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[FlagIcon]: 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: "M5 3.5a.5.5 0 00-1 0v14a.5.5 0 001 0v-4.678l.822-.258a5.433 5.433 0 014.544.59 5.434 5.434 0 004.437.628l1.726-.504a.65.65 0 00.34-.24.676.676 0 00.131-.4V5.706a.678.678 0 00-.259-.53.644.644 0 00-.57-.11l-1.368.4a5.435 5.435 0 01-4.437-.623 5.433 5.433 0 00-4.544-.591L5 4.51V3.5zm0 8.274V5.558l1.123-.353a4.433 4.433 0 013.71.484 6.435 6.435 0 005.25.738L16 6.159v6.231l-1.477.433a4.435 4.435 0 01-3.624-.514 6.433 6.433 0 00-5.377-.699L5 11.774z"
31
+ })]
32
+ })
33
+ });
34
+ });
35
+ FlagIcon.displayName = "FlagIcon";
36
+ //#endregion
37
+ export { FlagIcon };
@@ -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/FolderIcon.d.ts
7
+ type FolderIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const FolderIcon: _$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 { FolderIcon, FolderIconProps };
@@ -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/FolderIcon.tsx
5
+ const FolderIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `FolderIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[FolderIcon]: 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
+ xmlns: "http://www.w3.org/2000/svg",
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
+ clipRule: "evenodd",
31
+ d: "M3.432 3.432A1.474 1.474 0 014.475 3h3.011a1.474 1.474 0 011.475 1.475v.534h6.556a1.474 1.474 0 011.475 1.475v1.538h.533a1.474 1.474 0 011.427 1.85l-1.474 6.032A1.476 1.476 0 0116.053 17H4.606a.47.47 0 01-.143-.022A1.608 1.608 0 013 15.398V4.474c0-.39.155-.766.432-1.043zm2.632 12.626h9.989a.533.533 0 00.514-.392l1.474-6.031a.534.534 0 00-.516-.67H8.242a.535.535 0 00-.51.375L6.16 15.795a1.611 1.611 0 01-.096.263zm9.987-8.036V6.484a.534.534 0 00-.534-.533H8.49a.47.47 0 01-.47-.471V4.475a.534.534 0 00-.534-.533H4.475a.533.533 0 00-.534.533v10.912a.668.668 0 001.307.176L6.82 9.106a1.475 1.475 0 011.422-1.083h7.81z"
32
+ })]
33
+ })
34
+ });
35
+ });
36
+ FolderIcon.displayName = "FolderIcon";
37
+ //#endregion
38
+ export { FolderIcon };
@@ -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/InformationIcon.d.ts
7
+ type InformationIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const InformationIcon: _$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 { InformationIcon, InformationIconProps };
@@ -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/InformationIcon.tsx
5
+ const InformationIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `InformationIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[InformationIcon]: 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 2a8 8 0 110 16 8 8 0 010-16zm0 1.25a6.75 6.75 0 100 13.5 6.75 6.75 0 000-13.5zM10 9a1 1 0 011 1v3a1 1 0 01-2 0v-3a1 1 0 011-1zm0-3a1 1 0 110 2 1 1 0 010-2z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ InformationIcon.displayName = "InformationIcon";
35
+ //#endregion
36
+ export { InformationIcon };
@@ -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/LightModeIcon.d.ts
7
+ type LightModeIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const LightModeIcon: _$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 { LightModeIcon, LightModeIconProps };
@@ -0,0 +1,49 @@
1
+ import { IconWrapper } from "./helpers/IconWrapper.mjs";
2
+ import { forwardRef, useId } from "react";
3
+ import { jsx, jsxs } from "react/jsx-runtime";
4
+ //#region src/LightModeIcon.tsx
5
+ const LightModeIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `LightModeIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[LightModeIcon]: 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 1.5c.345 0 .625.28.625.625v1.05a.625.625 0 11-1.25 0v-1.05c0-.345.28-.625.625-.625z"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ fill: "currentColor",
35
+ fillRule: "evenodd",
36
+ d: "M6.217 6.217a5.35 5.35 0 117.566 7.566 5.35 5.35 0 01-7.566-7.566zM10 5.9a4.1 4.1 0 100 8.2 4.1 4.1 0 000-8.2z",
37
+ clipRule: "evenodd"
38
+ }),
39
+ /* @__PURE__ */ jsx("path", {
40
+ fill: "currentColor",
41
+ d: "M16.01 4.873a.625.625 0 10-.883-.884l-.744.744a.625.625 0 10.884.884l.744-.744zM16.2 10c0-.345.28-.625.625-.625h1.05a.625.625 0 110 1.25h-1.05A.625.625 0 0116.2 10zm-.933 4.383a.625.625 0 10-.883.884l.743.744a.625.625 0 10.884-.884l-.744-.744zM10 16.2c.345 0 .625.28.625.625v1.05a.625.625 0 11-1.25 0v-1.05c0-.346.28-.625.625-.625zm-4.383-.933a.625.625 0 00-.884-.883l-.743.743a.625.625 0 00.883.884l.744-.744zM1.5 10c0-.345.28-.625.625-.625h1.05a.625.625 0 010 1.25h-1.05A.625.625 0 011.5 10zm3.372-6.012a.625.625 0 10-.883.884l.743.744a.625.625 0 00.884-.884l-.744-.744z"
42
+ })
43
+ ]
44
+ })
45
+ });
46
+ });
47
+ LightModeIcon.displayName = "LightModeIcon";
48
+ //#endregion
49
+ export { LightModeIcon };
@@ -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/LockIcon.d.ts
7
+ type LockIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const LockIcon: _$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 { LockIcon, LockIconProps };
@@ -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/LockIcon.tsx
5
+ const LockIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `LockIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[LockIcon]: 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 12a.5.5 0 00-1 0v2a.5.5 0 001 0v-2z"
32
+ }),
33
+ /* @__PURE__ */ jsx("path", {
34
+ fill: "currentColor",
35
+ fillRule: "evenodd",
36
+ d: "M6 6v2h-.5A1.5 1.5 0 004 9.5v7A1.5 1.5 0 005.5 18h9a1.5 1.5 0 001.5-1.5v-7A1.5 1.5 0 0014.5 8H14V6a4 4 0 10-8 0zm4-3a3 3 0 00-3 3v2h6V6a3 3 0 00-3-3zM5 9.5a.5.5 0 01.5-.5h9a.5.5 0 01.5.5v7a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-7z",
37
+ clipRule: "evenodd"
38
+ })
39
+ ]
40
+ })
41
+ });
42
+ });
43
+ LockIcon.displayName = "LockIcon";
44
+ //#endregion
45
+ export { LockIcon };
@@ -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/MinusIcon.d.ts
7
+ type MinusIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const MinusIcon: _$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 { MinusIcon, MinusIconProps };
@@ -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/MinusIcon.tsx
5
+ const MinusIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
6
+ const titleId = `MinusIcon-${useId()}`;
7
+ if (!decorative && title == null) throw new Error("[MinusIcon]: 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: "M14.167 9.5c.46 0 .833.448.833 1 0 .513-.322.936-.736.993l-.097.007H5.833c-.46 0-.833-.448-.833-1 0-.513.322-.936.736-.993l.097-.007h8.334z"
30
+ })]
31
+ })
32
+ });
33
+ });
34
+ MinusIcon.displayName = "MinusIcon";
35
+ //#endregion
36
+ export { MinusIcon };
@@ -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/MoreIcon.d.ts
7
+ type MoreIconProps = IconWrapperProps & {
8
+ title?: string;
9
+ decorative: boolean;
10
+ };
11
+ declare const MoreIcon: _$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 { MoreIcon, MoreIconProps };