@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,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/ArrowBackIcon.d.ts
|
|
7
|
+
type ArrowBackIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ArrowBackIcon: _$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 { ArrowBackIcon, ArrowBackIconProps };
|
|
@@ -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/ArrowBackIcon.tsx
|
|
5
|
+
const ArrowBackIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ArrowBackIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ArrowBackIcon]: 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.009 9.91l-.007.05v.08l.01.07.01.029a.489.489 0 00.205.272l3.832 3.444a.596.596 0 00.78 0 .459.459 0 00.063-.632l-.063-.069-2.957-2.659h7.605A.504.504 0 0015 10a.5.5 0 00-.42-.488l-.093-.008H6.883l2.956-2.658a.459.459 0 00.063-.632l-.063-.069a.598.598 0 00-.704-.057l-.076.057L5.227 9.59a.498.498 0 00-.206.272l-.012.049z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
ArrowBackIcon.displayName = "ArrowBackIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { ArrowBackIcon };
|
|
@@ -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/ArtificialIntelligenceIcon.d.ts
|
|
7
|
+
type ArtificialIntelligenceIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ArtificialIntelligenceIcon: _$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 { ArtificialIntelligenceIcon, ArtificialIntelligenceIconProps };
|
|
@@ -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/ArtificialIntelligenceIcon.tsx
|
|
5
|
+
const ArtificialIntelligenceIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ArtificialIntelligenceIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ArtificialIntelligenceIcon]: 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
|
+
fill: "none",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
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
|
+
fillRule: "evenodd",
|
|
32
|
+
clipRule: "evenodd",
|
|
33
|
+
d: "M13.699 2.447c-.01 2.674-1.297 3.917-3.962 3.955-.595.008-.588.899.007.898 2.735-.004 3.928 1.287 3.955 3.957.005.58.868.598.897.017.135-2.699 1.396-3.984 3.953-3.974.594.002.605-.885.012-.898-2.739-.062-3.974-1.345-3.964-3.951.002-.599-.896-.602-.898-.004zm.444 2.432l.06.131c.394.81 1.015 1.41 1.864 1.794l.105.045-.035.016c-.837.387-1.463 1.015-1.873 1.872l-.078.17-.017-.044c-.37-.89-.98-1.547-1.838-1.958l-.155-.07c.837-.37 1.46-.95 1.866-1.743l.101-.213z"
|
|
34
|
+
}),
|
|
35
|
+
/* @__PURE__ */ jsx("path", {
|
|
36
|
+
fill: "currentColor",
|
|
37
|
+
d: "M4.5 10.132a5.87 5.87 0 015.871-5.868.5.5 0 100-1A6.87 6.87 0 003.5 10.132a6.87 6.87 0 004.417 6.417.5.5 0 00.357-.934A5.87 5.87 0 014.5 10.132zm8.368 5.358a.5.5 0 01.202.96 6.851 6.851 0 01-2.67.55h-.029a.5.5 0 110-1h.024a5.85 5.85 0 002.282-.47.499.499 0 01.191-.04zm3.657-3.628a.5.5 0 01.297.642 6.863 6.863 0 01-1.187 2.043.5.5 0 01-.766-.643 5.86 5.86 0 001.014-1.745.5.5 0 01.642-.297z"
|
|
38
|
+
})
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
ArtificialIntelligenceIcon.displayName = "ArtificialIntelligenceIcon";
|
|
44
|
+
//#endregion
|
|
45
|
+
export { ArtificialIntelligenceIcon };
|
|
@@ -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/AttachIcon.d.ts
|
|
7
|
+
type AttachIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const AttachIcon: _$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 { AttachIcon, AttachIconProps };
|
|
@@ -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/AttachIcon.tsx
|
|
5
|
+
const AttachIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `AttachIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[AttachIcon]: 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: "M3.879 9.264l5.59-5.73a3.251 3.251 0 013.214-.924 3.347 3.347 0 012.36 2.42 3.447 3.447 0 01-.75 3.135l-.145.153-5.623 5.767a1.87 1.87 0 01-2.668-.023 1.987 1.987 0 01-.116-2.627l.099-.113 5.618-5.761c.195-.2.512-.2.708 0a.523.523 0 01.058.655l-.058.07-5.612 5.755a.94.94 0 00.011 1.295.885.885 0 001.174.09l.083-.073 5.624-5.767a2.4 2.4 0 00.628-2.296 2.333 2.333 0 00-1.645-1.686 2.264 2.264 0 00-2.117.523l-.129.127L4.587 9.99a3.866 3.866 0 000 5.371 3.64 3.64 0 005.097.139l.143-.139 6.818-6.99c.196-.2.513-.2.708 0a.523.523 0 01.058.655l-.058.071-6.818 6.99a4.626 4.626 0 01-6.656 0c-1.787-1.832-1.837-4.77-.15-6.663l.15-.16z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
AttachIcon.displayName = "AttachIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { AttachIcon };
|
|
@@ -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/BusinessIcon.d.ts
|
|
7
|
+
type BusinessIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const BusinessIcon: _$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 { BusinessIcon, BusinessIconProps };
|
|
@@ -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/BusinessIcon.tsx
|
|
5
|
+
const BusinessIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `BusinessIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[BusinessIcon]: 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.187 6.09a.63.63 0 100 1.258.63.63 0 000-1.258zm3.443.629a.63.63 0 10-1.26 0 .63.63 0 001.26 0zm2.812 0a.63.63 0 10-1.259 0 .63.63 0 001.259 0zM7.187 10.16a.63.63 0 110-1.258.63.63 0 010 1.258zm3.443-.629a.63.63 0 10-1.26 0 .63.63 0 001.26 0zm2.812 0a.63.63 0 10-1.259 0 .63.63 0 001.259 0zm-6.255 3.442a.63.63 0 110-1.258.63.63 0 010 1.258zm3.443-.629a.63.63 0 10-1.26 0 .63.63 0 001.26 0zm2.812 0a.63.63 0 10-1.259 0 .63.63 0 001.259 0z"
|
|
31
|
+
}),
|
|
32
|
+
/* @__PURE__ */ jsx("path", {
|
|
33
|
+
fill: "currentColor",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M5.428 2.792a.395.395 0 01.353-.218h8.438c.15 0 .286.085.353.218l.934 1.869a.39.39 0 01.044.162v.014l.001.007V17.03a.395.395 0 01-.395.395H4.844a.395.395 0 01-.395-.395V4.844c0-.067.016-.13.046-.184l.933-1.868zm.597.572l-.543 1.085h9.036l-.543-1.085h-7.95zm-.787 1.875v11.398H8.2v-1.012a1.801 1.801 0 013.602 0v1.012h2.96V5.239H5.239zm5.773 10.386v1.012H8.989v-1.012a1.012 1.012 0 012.024 0z"
|
|
37
|
+
})
|
|
38
|
+
]
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
});
|
|
42
|
+
BusinessIcon.displayName = "BusinessIcon";
|
|
43
|
+
//#endregion
|
|
44
|
+
export { BusinessIcon };
|
|
@@ -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/ChatIcon.d.ts
|
|
7
|
+
type ChatIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const ChatIcon: _$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 { ChatIcon, ChatIconProps };
|
|
@@ -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/ChatIcon.tsx
|
|
5
|
+
const ChatIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `ChatIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[ChatIcon]: 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.302 2.755A3.458 3.458 0 015.466 2h2.268a3.468 3.468 0 013.322 2.476.5.5 0 00.959-.286A4.468 4.468 0 007.734 1H5.468a4.458 4.458 0 00-2.2 8.34v3.493a.5.5 0 00.853.353l2.267-2.266a.5.5 0 00-.708-.707l-1.413 1.413V9.037a.5.5 0 00-.286-.452 3.458 3.458 0 01-.68-5.83zm8.965 3.911a4.466 4.466 0 100 8.933h.36l3.253 3.254a.5.5 0 00.853-.354v-3.492A4.459 4.459 0 0019 11.134a4.469 4.469 0 00-4.466-4.468h-2.267zM9.816 8.682a3.466 3.466 0 012.451-1.016h2.267A3.467 3.467 0 0118 11.132a3.459 3.459 0 01-1.98 3.12.5.5 0 00-.287.451v2.589l-2.546-2.546a.5.5 0 00-.353-.147h-.567a3.466 3.466 0 01-2.451-5.917z"
|
|
31
|
+
})]
|
|
32
|
+
})
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
ChatIcon.displayName = "ChatIcon";
|
|
36
|
+
//#endregion
|
|
37
|
+
export { ChatIcon };
|
|
@@ -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/CodeIcon.d.ts
|
|
7
|
+
type CodeIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const CodeIcon: _$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 { CodeIcon, CodeIconProps };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { IconWrapper } from "./helpers/IconWrapper.mjs";
|
|
2
|
+
import { forwardRef, useId } from "react";
|
|
3
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
4
|
+
//#region src/CodeIcon.tsx
|
|
5
|
+
const CodeIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `CodeIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[CodeIcon]: 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
|
+
fillRule: "evenodd",
|
|
32
|
+
d: "M3.576 3.5H16.43c.404.001.797.15 1.094.423.298.275.474.656.475 1.063v10.02c0 .409-.177.793-.476 1.069a1.624 1.624 0 01-1.098.423H3.5c-.386 0-.763-.14-1.046-.403A1.388 1.388 0 012 15.075V4.992c0-.408.177-.792.476-1.068a1.626 1.626 0 011.1-.424zm12.852 1H3.576a.624.624 0 00-.42.159.457.457 0 00-.155.334v10.082a.39.39 0 00.132.286.544.544 0 00.368.137h12.922a.624.624 0 00.422-.158.458.458 0 00.154-.334V4.989a.455.455 0 00-.153-.331.62.62 0 00-.418-.158zm0 0z",
|
|
33
|
+
clipRule: "evenodd"
|
|
34
|
+
}),
|
|
35
|
+
/* @__PURE__ */ jsx("path", {
|
|
36
|
+
fill: "currentColor",
|
|
37
|
+
fillRule: "evenodd",
|
|
38
|
+
d: "M12.646 7.647a.5.5 0 01.707 0l2 1.998a.5.5 0 010 .707l-2 2a.5.5 0 01-.707-.707l1.647-1.646-1.646-1.645a.5.5 0 010-.707zm-5.292 0a.5.5 0 010 .707L5.706 9.999l1.647 1.646a.5.5 0 01-.708.707l-2-2a.5.5 0 010-.707l2-1.999a.5.5 0 01.708 0zm3.87-.094a.5.5 0 01.223.67l-2 4a.5.5 0 11-.894-.447l2-4a.5.5 0 01.67-.223z",
|
|
39
|
+
clipRule: "evenodd"
|
|
40
|
+
})
|
|
41
|
+
]
|
|
42
|
+
})
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
CodeIcon.displayName = "CodeIcon";
|
|
46
|
+
//#endregion
|
|
47
|
+
export { CodeIcon };
|
|
@@ -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/DarkModeIcon.d.ts
|
|
7
|
+
type DarkModeIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const DarkModeIcon: _$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 { DarkModeIcon, DarkModeIconProps };
|
|
@@ -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/DarkModeIcon.tsx
|
|
5
|
+
const DarkModeIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `DarkModeIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[DarkModeIcon]: 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: "M15.904 13.38A8.87 8.87 0 016.62 4.097a6.706 6.706 0 109.283 9.283zm1.053-1.212c.34-.065.645.248.51.567A7.79 7.79 0 012.5 9.712c0-3.23 1.965-6 4.765-7.18.319-.134.632.171.567.51a7.788 7.788 0 009.125 9.125z",
|
|
31
|
+
clipRule: "evenodd"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
DarkModeIcon.displayName = "DarkModeIcon";
|
|
37
|
+
//#endregion
|
|
38
|
+
export { DarkModeIcon };
|
|
@@ -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/DeleteIcon.d.ts
|
|
7
|
+
type DeleteIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const DeleteIcon: _$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 { DeleteIcon, DeleteIconProps };
|
|
@@ -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/DeleteIcon.tsx
|
|
5
|
+
const DeleteIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `DeleteIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[DeleteIcon]: 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.25 2c.966 0 1.75.784 1.75 1.75L13.999 5H17.5a.5.5 0 01.09.992L17.5 6h-1.501L16 16.25a1.75 1.75 0 01-1.606 1.744L14.25 18H5.74C4.774 18 4 17.217 4 16.25L3.999 6H2.5a.5.5 0 01-.09-.992L2.5 5h3.499L6 3.75a1.75 1.75 0 011.606-1.744L7.75 2zm2.749 4h-10L5 16.25c0 .383.276.694.64.743l.1.007h8.51a.75.75 0 00.75-.75L14.999 6zM8.5 9a.5.5 0 01.492.41L9 9.5v4a.5.5 0 01-.992.09L8 13.5v-4a.5.5 0 01.5-.5zm3 0a.5.5 0 01.492.41L12 9.5v4a.5.5 0 01-.992.09L11 13.5v-4a.5.5 0 01.5-.5zm.75-6h-4.5a.75.75 0 00-.75.75L6.999 5h6L13 3.75a.75.75 0 00-.648-.743L12.25 3z"
|
|
30
|
+
})]
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
DeleteIcon.displayName = "DeleteIcon";
|
|
35
|
+
//#endregion
|
|
36
|
+
export { DeleteIcon };
|
|
@@ -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/DirectoryIcon.d.ts
|
|
7
|
+
type DirectoryIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const DirectoryIcon: _$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 { DirectoryIcon, DirectoryIconProps };
|
|
@@ -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/DirectoryIcon.tsx
|
|
5
|
+
const DirectoryIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `DirectoryIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[DirectoryIcon]: 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: "M4.5 4c-.346 0-.5.229-.5.367v11.266c0 .138.154.367.5.367H6V4H4.5zM7 4v12h8.5c.346 0 .5-.229.5-.367V4.367c0-.138-.154-.367-.5-.367H7zM4.5 17h11c.759 0 1.5-.547 1.5-1.367V4.367C17 3.547 16.259 3 15.5 3h-11C3.741 3 3 3.547 3 4.367v11.266C3 16.453 3.741 17 4.5 17zm7-10a1.25 1.25 0 100 2.5 1.25 1.25 0 000-2.5zM9.25 8.25a2.25 2.25 0 113.39 1.94A3.5 3.5 0 0115 13.5a.5.5 0 01-1 0 2.5 2.5 0 00-5 0 .5.5 0 01-1 0 3.5 3.5 0 012.36-3.31 2.249 2.249 0 01-1.11-1.94z"
|
|
31
|
+
})]
|
|
32
|
+
})
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
DirectoryIcon.displayName = "DirectoryIcon";
|
|
36
|
+
//#endregion
|
|
37
|
+
export { DirectoryIcon };
|
|
@@ -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/DividerIcon.d.ts
|
|
7
|
+
type DividerIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const DividerIcon: _$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 { DividerIcon, DividerIconProps };
|
|
@@ -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/DividerIcon.tsx
|
|
5
|
+
const DividerIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `DividerIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[DividerIcon]: 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.497 12.5a.5.5 0 00-1 0v4.793L7.684 15.48a.5.5 0 00-.708.707l2.667 2.667a.5.5 0 00.707 0l2.667-2.667a.5.5 0 00-.707-.707l-1.813 1.813V12.5zm-1-5a.5.5 0 101 0V2.707L12.31 4.52a.5.5 0 10.707-.707L10.35 1.146a.5.5 0 00-.707 0L6.976 3.813a.5.5 0 10.708.707l1.813-1.813V7.5z"
|
|
32
|
+
}),
|
|
33
|
+
/* @__PURE__ */ jsx("path", {
|
|
34
|
+
fill: "currentColor",
|
|
35
|
+
fillRule: "evenodd",
|
|
36
|
+
d: "M2 10c0-.276.21-.5.47-.5h15.06c.26 0 .47.224.47.5s-.21.5-.47.5H2.47c-.26 0-.47-.224-.47-.5z",
|
|
37
|
+
clipRule: "evenodd"
|
|
38
|
+
})
|
|
39
|
+
]
|
|
40
|
+
})
|
|
41
|
+
});
|
|
42
|
+
});
|
|
43
|
+
DividerIcon.displayName = "DividerIcon";
|
|
44
|
+
//#endregion
|
|
45
|
+
export { DividerIcon };
|
|
@@ -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/DownloadIcon.d.ts
|
|
7
|
+
type DownloadIconProps = IconWrapperProps & {
|
|
8
|
+
title?: string;
|
|
9
|
+
decorative: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare const DownloadIcon: _$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 { DownloadIcon, DownloadIconProps };
|