@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.
- package/dist/ArrowBackIcon.d.mts +18 -0
- package/dist/ArrowBackIcon.mjs +36 -0
- package/dist/ArtificialIntelligenceIcon.d.mts +18 -0
- package/dist/ArtificialIntelligenceIcon.mjs +45 -0
- package/dist/AttachIcon.d.mts +18 -0
- package/dist/AttachIcon.mjs +36 -0
- package/dist/BusinessIcon.d.mts +18 -0
- package/dist/BusinessIcon.mjs +44 -0
- package/dist/ChatIcon.d.mts +18 -0
- package/dist/ChatIcon.mjs +37 -0
- package/dist/CodeIcon.d.mts +18 -0
- package/dist/CodeIcon.mjs +47 -0
- package/dist/DarkModeIcon.d.mts +18 -0
- package/dist/DarkModeIcon.mjs +38 -0
- package/dist/DeleteIcon.d.mts +18 -0
- package/dist/DeleteIcon.mjs +36 -0
- package/dist/DirectoryIcon.d.mts +18 -0
- package/dist/DirectoryIcon.mjs +37 -0
- package/dist/DividerIcon.d.mts +18 -0
- package/dist/DividerIcon.mjs +45 -0
- package/dist/DownloadIcon.d.mts +18 -0
- package/dist/DownloadIcon.mjs +38 -0
- package/dist/EditIcon.d.mts +18 -0
- package/dist/EditIcon.mjs +36 -0
- package/dist/EmailIcon.d.mts +18 -0
- package/dist/EmailIcon.mjs +37 -0
- package/dist/FileIcon.d.mts +18 -0
- package/dist/FileIcon.mjs +37 -0
- package/dist/FilterIcon.d.mts +18 -0
- package/dist/FilterIcon.mjs +36 -0
- package/dist/FlagIcon.d.mts +18 -0
- package/dist/FlagIcon.mjs +37 -0
- package/dist/FolderIcon.d.mts +18 -0
- package/dist/FolderIcon.mjs +38 -0
- package/dist/InformationIcon.d.mts +18 -0
- package/dist/InformationIcon.mjs +36 -0
- package/dist/LightModeIcon.d.mts +18 -0
- package/dist/LightModeIcon.mjs +49 -0
- package/dist/LockIcon.d.mts +18 -0
- package/dist/LockIcon.mjs +45 -0
- package/dist/MinusIcon.d.mts +18 -0
- package/dist/MinusIcon.mjs +36 -0
- package/dist/MoreIcon.d.mts +18 -0
- package/dist/MoreIcon.mjs +36 -0
- package/dist/NotesIcon.d.mts +18 -0
- package/dist/NotesIcon.mjs +36 -0
- package/dist/PinIcon.d.mts +18 -0
- package/dist/PinIcon.mjs +36 -0
- package/dist/PlusIcon.d.mts +18 -0
- package/dist/PlusIcon.mjs +36 -0
- package/dist/RaiseHandIcon.d.mts +18 -0
- package/dist/RaiseHandIcon.mjs +36 -0
- package/dist/RefreshIcon.d.mts +18 -0
- package/dist/RefreshIcon.mjs +36 -0
- package/dist/ResetIcon.d.mts +18 -0
- package/dist/ResetIcon.mjs +36 -0
- package/dist/SMSIcon.d.mts +18 -0
- package/dist/SMSIcon.mjs +37 -0
- package/dist/SearchIcon.d.mts +18 -0
- package/dist/SearchIcon.mjs +36 -0
- package/dist/SelectedIcon.d.mts +10 -3
- package/dist/ShareIcon.d.mts +18 -0
- package/dist/ShareIcon.mjs +42 -0
- package/dist/ShowIcon.d.mts +18 -0
- package/dist/ShowIcon.mjs +38 -0
- package/dist/StarIcon.d.mts +18 -0
- package/dist/StarIcon.mjs +37 -0
- package/dist/SupportIcon.d.mts +18 -0
- package/dist/SupportIcon.mjs +38 -0
- package/dist/TimeIcon.d.mts +18 -0
- package/dist/TimeIcon.mjs +45 -0
- package/dist/TourIcon.d.mts +18 -0
- package/dist/TourIcon.mjs +38 -0
- package/dist/UserIcon.d.mts +18 -0
- package/dist/UserIcon.mjs +37 -0
- package/package.json +40 -3
|
@@ -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/MoreIcon.tsx
|
|
5
|
+
const MoreIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `MoreIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[MoreIcon]: 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 14.5c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5zm0-6c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5-1.5-.673-1.5-1.5.673-1.5 1.5-1.5zm0-6c.827 0 1.5.673 1.5 1.5s-.673 1.5-1.5 1.5S8.5 4.827 8.5 4s.673-1.5 1.5-1.5z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
MoreIcon.displayName = "MoreIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { MoreIcon };
|
|
@@ -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/NotesIcon.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/NotesIcon.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/PinIcon.d.ts
|
|
7
|
+
type PinIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const PinIcon: _$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 { PinIcon, PinIconProps };
|
package/dist/PinIcon.mjs
ADDED
|
@@ -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/PinIcon.tsx
|
|
5
|
+
const PinIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `PinIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[PinIcon]: 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.793 4.007a1.2 1.2 0 01.98.344l2.876 2.877a1.2 1.2 0 01-.205 1.86l-2.95 1.877.02.121c.105.828-.041 1.67-.423 2.418l-.11.202a1.2 1.2 0 01-1.883.24L8.4 12.25l-3.613 3.615a.461.461 0 01-.706-.589l.053-.064 3.614-3.615-1.694-1.693a1.2 1.2 0 01-.353-.864l.01-.138a1.2 1.2 0 01.585-.884 4.164 4.164 0 012.617-.531l.12.018 1.878-2.95a1.2 1.2 0 01.747-.525zm.163.918h-.062l-.06.013a.277.277 0 00-.144.113L9.645 8.266a.461.461 0 01-.497.2 3.24 3.24 0 00-2.386.349.277.277 0 00-.055.435l4.044 4.044a.277.277 0 00.434-.054c.419-.72.544-1.576.349-2.387a.462.462 0 01.2-.497L14.95 8.31a.277.277 0 00.047-.43L12.12 5.005a.277.277 0 00-.226-.08z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
PinIcon.displayName = "PinIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { PinIcon };
|
|
@@ -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/PlusIcon.d.ts
|
|
7
|
+
type PlusIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const PlusIcon: _$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 { PlusIcon, PlusIconProps };
|
|
@@ -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/PlusIcon.tsx
|
|
5
|
+
const PlusIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `PlusIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[PlusIcon]: 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: "M15.043 9.043h-4.086V4.957a.958.958 0 00-1.914 0v4.086H4.957a.958.958 0 000 1.914h4.086v4.086a.958.958 0 001.914 0v-4.086h4.086a.958.958 0 000-1.914z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
PlusIcon.displayName = "PlusIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { PlusIcon };
|
|
@@ -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/RaiseHandIcon.d.ts
|
|
7
|
+
type RaiseHandIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const RaiseHandIcon: _$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 { RaiseHandIcon, RaiseHandIconProps };
|
|
@@ -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/RaiseHandIcon.tsx
|
|
5
|
+
const RaiseHandIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `RaiseHandIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[RaiseHandIcon]: 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
|
+
d: "M8.067 8.3a.5.5 0 101 0h-1zm.5-4.5h-.5.5zM7.325 2.55l.003-.5h-.003v.5zm-1.25 9.375l-.312.39a.5.5 0 00.812-.39h-.5zM4.042 10.3l-.314.39h.001l.313-.39zm-1.875.292l.417.276-.417-.276zm-.214.708h.5-.5zm.214.708l-.417.276.001.003.416-.279zm1.2 1.792l.416-.277-.001-.001-.415.278zm1.417 3.027a.5.5 0 00.832-.554l-.832.554zM11.067 2.55h-.5.5zM9.825 1.3l-.003.5.003-.5zM8.567 2.55h.5-.5zm2 5.45a.5.5 0 101 0h-1zm2.975-4.2h-.5.5zm-.364-.881l-.354.352.354-.352zM12.3 2.55l.003-.5H12.3v.5zm-.884.366l.354.354-.354-.354zM13.042 8.7a.5.5 0 001 0h-1zm-2.374-5.532a.5.5 0 10.933.361l-.933-.36zM15.5 5.1a.5.5 0 101 0h-1zm.137-.881l-.355.352.355-.352zm-.88-.369l.004-.5h-.003v.5zm-.883.366l-.354-.354.354.354zm-.314.525l-.479-.143a.5.5 0 00.953.304l-.474-.16zM15.5 5v9h1V5h-1zm0 9c0 1.343-.55 2.32-1.425 2.975-.89.668-2.15 1.025-3.575 1.025v1c1.576 0 3.066-.393 4.175-1.225C15.801 16.931 16.5 15.657 16.5 14h-1zm-9.146 3.146c-.954-.953-1.068-1.368-1.438-1.923l-.832.554c.297.445.516 1.03 1.562 2.077l.708-.708zM10.5 18.5V18h-.035c-.024 0-.06 0-.107-.002a16.49 16.49 0 01-1.67-.12 8.943 8.943 0 01-1.42-.279c-.445-.134-.754-.292-.914-.453l-.708.708c.34.339.844.556 1.335.703a9.93 9.93 0 001.582.314 17.546 17.546 0 001.893.129h.043l.001-.5zM9.067 8.3V3.8h-1v4.5h1zm0-4.5a1.75 1.75 0 00-.509-1.233l-.71.704a.75.75 0 01.219.529h1zm-.509-1.233a1.75 1.75 0 00-1.23-.517l-.006 1a.75.75 0 01.527.221l.71-.704zM7.325 2.05c-.464 0-.91.184-1.238.513l.708.707a.75.75 0 01.53-.22v-1zm-1.238.513A1.75 1.75 0 005.575 3.8h1a.75.75 0 01.22-.53l-.708-.707zM5.575 3.8v8.125h1V3.8h-1zm.812 7.734L4.354 9.91l-.625.782 2.034 1.625.624-.782zM4.355 9.911a1.783 1.783 0 00-.657-.334l-.258.966a.784.784 0 01.288.147l.627-.78zm-.657-.334a1.783 1.783 0 00-.735-.04l.153.989a.784.784 0 01.324.017l.258-.966zm-.735-.04c-.245.039-.48.128-.689.262l.54.841a.784.784 0 01.302-.114l-.153-.988zm-.689.262c-.209.134-.388.31-.524.517l.834.551a.784.784 0 01.23-.227l-.54-.841zm-.524.517a1.783 1.783 0 00-.297.984h1c0-.154.046-.304.13-.432l-.833-.552zm-.297.984c0 .35.103.692.297.984l.833-.552a.784.784 0 01-.13-.432h-1zm.298.987l1.2 1.791.831-.556-1.2-1.792-.83.557zm1.2 1.79l1.833 2.75.832-.554-1.833-2.75-.832.554zM11.567 2.55a1.75 1.75 0 00-.509-1.233l-.71.704a.75.75 0 01.219.529h1zm-.509-1.233A1.75 1.75 0 009.828.8l-.006 1a.75.75 0 01.527.221l.71-.704zM9.828.8a1.75 1.75 0 00-.673.13l.378.926a.75.75 0 01.289-.056l.006-1zm-.673.13a1.75 1.75 0 00-.572.378l.705.71a.75.75 0 01.245-.162L9.155.93zm-.572.378a1.75 1.75 0 00-.382.57l.923.384a.75.75 0 01.164-.244l-.705-.71zm-.382.57a1.75 1.75 0 00-.134.672h1a.75.75 0 01.057-.288l-.923-.384zm-.134.672V3.8h1V2.55h-1zm5.975 1.25a1.75 1.75 0 00-.509-1.233l-.71.704c.14.14.219.33.219.529h1zm-.509-1.233a1.75 1.75 0 00-1.23-.517l-.006 1a.75.75 0 01.527.221l.71-.704zM12.3 2.05c-.464 0-.91.184-1.238.513l.708.707a.75.75 0 01.53-.22v-1zm.742 1.75v4.9h1V3.8h-1zm-1.98-1.237a1.75 1.75 0 00-.394.605l.933.361a.75.75 0 01.169-.26l-.707-.706zM16.5 5.1a1.75 1.75 0 00-.509-1.233l-.709.704a.75.75 0 01.218.529h1zm-.509-1.233a1.75 1.75 0 00-1.23-.517l-.006 1a.75.75 0 01.527.221l.71-.704zm-1.233-.517c-.464 0-.91.184-1.238.512l.707.708a.749.749 0 01.53-.22v-1zm-1.238.512a1.748 1.748 0 00-.4.62l.936.353a.75.75 0 01.171-.265l-.707-.708zm-.4.62a1.701 1.701 0 00-.039.116l.958.287a.79.79 0 01.017-.05l-.935-.354zm.914.42l.028-.084-.947-.32-.029.083.948.32zM11.567 8V2.55h-1V8h1z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
RaiseHandIcon.displayName = "RaiseHandIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { RaiseHandIcon };
|
|
@@ -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/RefreshIcon.d.ts
|
|
7
|
+
type RefreshIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const RefreshIcon: _$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 { RefreshIcon, RefreshIconProps };
|
|
@@ -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/RefreshIcon.tsx
|
|
5
|
+
const RefreshIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `RefreshIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[RefreshIcon]: 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
|
+
d: "M7.802 4.25a6.002 6.002 0 014.009.212.5.5 0 00.383-.924 7.002 7.002 0 00-8.437 10.46H2a.5.5 0 100 1h2.766a.52.52 0 00.09 0H5a.5.5 0 00.5-.5v-3a.5.5 0 10-1 0v1.815A6.002 6.002 0 017.802 4.25zM14.5 8.499V6.683a6 6 0 01-7.31 8.856.5.5 0 10-.385.923 7 7 0 008.439-10.463H17a.5.5 0 000-1h-2.767a.503.503 0 00-.09 0H14a.5.5 0 00-.5.5v3a.5.5 0 001 0z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
RefreshIcon.displayName = "RefreshIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { RefreshIcon };
|
|
@@ -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/ResetIcon.d.ts
|
|
7
|
+
type ResetIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ResetIcon: _$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 { ResetIcon, ResetIconProps };
|
|
@@ -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/ResetIcon.tsx
|
|
5
|
+
const ResetIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ResetIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ResetIcon]: 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
|
+
d: "M13.296 4.117A7.002 7.002 0 002.5 10v.293L1.354 9.146a.5.5 0 10-.708.708l1.975 1.974a.499.499 0 00.758 0l1.975-1.974a.5.5 0 10-.708-.708L3.5 10.293V10a6.002 6.002 0 11.94 3.227.5.5 0 10-.843.537 7.001 7.001 0 109.699-9.647z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
ResetIcon.displayName = "ResetIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ResetIcon };
|
|
@@ -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/SMSIcon.d.ts
|
|
7
|
+
type SMSIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const SMSIcon: _$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 { SMSIcon, SMSIconProps };
|
package/dist/SMSIcon.mjs
ADDED
|
@@ -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/SMSIcon.tsx
|
|
5
|
+
const SMSIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `SMSIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[SMSIcon]: 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: "M8.693 2.693A2.367 2.367 0 0110.367 2h5.263A2.37 2.37 0 0118 4.367v1.866a2.37 2.37 0 01-.697 1.674c-.258.259-.588.403-.896.484a3.6 3.6 0 01-.907.109h-.261l-2.388 2.356A.5.5 0 0112 10.5v-2h-1.633c-.548 0-1.186-.105-1.674-.593A2.367 2.367 0 018 6.233V4.367c0-.628.25-1.23.693-1.674zM10.367 3A1.367 1.367 0 009 4.367v1.866c0 .363.144.71.4.967.212.212.525.3.967.3H12.5a.5.5 0 01.5.5v1.304l1.682-1.66a.5.5 0 01.351-.144h.467c.218 0 .448-.022.651-.075.207-.055.354-.134.445-.225A1.37 1.37 0 0017 6.233V4.367A1.37 1.37 0 0015.63 3h-5.263zM6.2 3h.3a.5.5 0 010 1h-.3c-.373 0-.654.093-.846.285A1.203 1.203 0 005 5.134V14.8A1.203 1.203 0 006.2 16h3.567c.328 0 .661-.133.88-.351.226-.226.353-.532.353-.849V13a.5.5 0 011 0v1.8c0 .585-.235 1.144-.646 1.556A2.275 2.275 0 019.767 17H6.2A2.202 2.202 0 014 14.8V5.134c0-.585.235-1.144.646-1.556C5.092 3.132 5.672 3 6.2 3zm1.3 11a.5.5 0 000 1h1a.5.5 0 000-1h-1z"
|
|
31
|
+
})]
|
|
32
|
+
})
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
SMSIcon.displayName = "SMSIcon";
|
|
36
|
+
//#endregion
|
|
37
|
+
export { SMSIcon };
|
|
@@ -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/SearchIcon.d.ts
|
|
7
|
+
type SearchIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const SearchIcon: _$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 { SearchIcon, SearchIconProps };
|
|
@@ -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/SearchIcon.tsx
|
|
5
|
+
const SearchIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `SearchIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[SearchIcon]: 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: "M5.43 5.43a4.882 4.882 0 017.383 6.347l2.973 2.973a.732.732 0 01-1.036 1.036l-2.973-2.973A4.883 4.883 0 015.43 5.43zm1.035 1.035a3.417 3.417 0 104.833 4.833 3.417 3.417 0 00-4.833-4.833z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
SearchIcon.displayName = "SearchIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { SearchIcon };
|
package/dist/SelectedIcon.d.mts
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import { IconWrapperProps } from "./helpers/IconWrapper.mjs";
|
|
2
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";
|
|
3
5
|
|
|
4
6
|
//#region src/SelectedIcon.d.ts
|
|
5
|
-
|
|
7
|
+
type SelectedIconProps = IconWrapperProps & {
|
|
6
8
|
title?: string;
|
|
7
9
|
decorative: boolean;
|
|
8
|
-
}
|
|
9
|
-
declare const SelectedIcon: _$react.ForwardRefExoticComponent<
|
|
10
|
+
};
|
|
11
|
+
declare const SelectedIcon: _$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>>;
|
|
10
17
|
//#endregion
|
|
11
18
|
export { SelectedIcon, SelectedIconProps };
|
|
@@ -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/ShareIcon.d.ts
|
|
7
|
+
type ShareIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ShareIcon: _$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 { ShareIcon, ShareIconProps };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { IconWrapper } from "./helpers/IconWrapper.mjs";
|
|
2
|
+
import { forwardRef, useId } from "react";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
//#region src/ShareIcon.tsx
|
|
5
|
+
const ShareIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ShareIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ShareIcon]: 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: [
|
|
24
|
+
title ? /* @__PURE__ */ jsx("title", {
|
|
25
|
+
id: titleId,
|
|
26
|
+
children: title
|
|
27
|
+
}) : null,
|
|
28
|
+
/* @__PURE__ */ jsx("path", {
|
|
29
|
+
fill: "currentColor",
|
|
30
|
+
d: "M7.15 5.646a.5.5 0 10.706.708l1.647-1.647V11a.5.5 0 001 0V4.707l1.646 1.647a.5.5 0 10.707-.708l-2.5-2.5A.499.499 0 0010.01 3h-.014a.498.498 0 00-.347.146l-2.5 2.5z"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ jsx("path", {
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
d: "M4 15.474v.017c.013.37.127.744.349 1.032.22.288.556.495.95.476h9.402c.394.018.73-.188.95-.476a1.812 1.812 0 00.349-1.05V8.5a.5.5 0 00-1 0v6.964a.816.816 0 01-.142.45.267.267 0 01-.084.078c-.017.009-.025.008-.027.008a.578.578 0 00-.033-.001H5.286L5.253 16c-.002 0-.01 0-.027-.008a.268.268 0 01-.084-.077.816.816 0 01-.142-.45V8.5a.5.5 0 10-1 0v6.974z"
|
|
35
|
+
})
|
|
36
|
+
]
|
|
37
|
+
})
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
ShareIcon.displayName = "ShareIcon";
|
|
41
|
+
//#endregion
|
|
42
|
+
export { ShareIcon };
|
|
@@ -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/ShowIcon.d.ts
|
|
7
|
+
type ShowIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ShowIcon: _$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 { ShowIcon, ShowIconProps };
|
|
@@ -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/ShowIcon.tsx
|
|
5
|
+
const ShowIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ShowIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ShowIcon]: 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.107 4.5c3.252 0 6.477 2.268 8.425 4.41a1.806 1.806 0 01.002 2.424c-1.949 2.145-5.174 4.414-8.427 4.414h-.234c-3.236 0-6.46-2.27-8.405-4.413a1.806 1.806 0 01-.002-2.423C3.436 6.744 6.716 4.463 10 4.5h.004l.104-.001zm-.016 10.123c2.903 0 5.824-2.08 7.609-4.044a.683.683 0 00-.002-.914c-1.783-1.961-4.705-4.04-7.589-4.04H9.889c-2.885 0-5.805 2.079-7.589 4.042a.683.683 0 00.002.914c1.802 1.985 4.763 4.091 7.687 4.041l.102.001zm-.092-7.874H10a3.373 3.373 0 013.373 3.373v.003A3.379 3.379 0 0110 13.498h-.002a3.375 3.375 0 010-6.75zm1.59 4.965c.422-.422.659-.994.66-1.59v-.002A2.249 2.249 0 0010 7.874h-.002a2.25 2.25 0 000 4.5c.597-.002 1.168-.239 1.59-.66z"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
ShowIcon.displayName = "ShowIcon";
|
|
37
|
+
//#endregion
|
|
38
|
+
export { ShowIcon };
|