@hive-ui/icons 0.2.2 → 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/CalendarIcon.d.mts +18 -0
- package/dist/CalendarIcon.mjs +36 -0
- package/dist/ChatIcon.d.mts +18 -0
- package/dist/ChatIcon.mjs +37 -0
- package/dist/ChevronLeftIcon.d.mts +18 -0
- package/dist/ChevronLeftIcon.mjs +36 -0
- package/dist/CodeIcon.d.mts +18 -0
- package/dist/CodeIcon.mjs +47 -0
- package/dist/CopyIcon.d.mts +18 -0
- package/dist/CopyIcon.mjs +36 -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/LogOutIcon.d.mts +18 -0
- package/dist/LogOutIcon.mjs +37 -0
- package/dist/LoginIcon.d.mts +18 -0
- package/dist/LoginIcon.mjs +43 -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/OrderedListIcon.d.mts +18 -0
- package/dist/OrderedListIcon.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/dist/UsersIcon.d.mts +18 -0
- package/dist/UsersIcon.mjs +38 -0
- package/package.json +47 -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/UsersIcon.tsx
|
|
5
|
+
const UsersIcon = forwardRef(({ as, display, element = "ICON", size, color, title, decorative }, ref) => {
|
|
6
|
+
const titleId = `UsersIcon-${useId()}`;
|
|
7
|
+
if (!decorative && title == null) throw new Error("[UsersIcon]: 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: "M6.856 3C4.959 3 3.421 4.609 3.421 6.593s1.538 3.592 3.435 3.592 3.435-1.608 3.435-3.592S8.753 3 6.856 3zm0 .974c1.383 0 2.504 1.172 2.504 2.619 0 1.446-1.121 2.619-2.504 2.619s-2.504-1.173-2.504-2.62c0-1.446 1.121-2.618 2.504-2.618zm8.447-.175c-1.45-1.224-3.567-1.016-4.774.469a.502.502 0 00.054.686.45.45 0 00.656-.056c.879-1.082 2.423-1.234 3.48-.342 1.056.892 1.24 2.503.414 3.63-.825 1.128-2.36 1.361-3.458.526a2.634 2.634 0 01-.295-.264.451.451 0 00-.658 0 .503.503 0 00.001.689c.125.13.26.252.402.361 1.51 1.147 3.614.827 4.747-.72 1.133-1.546.88-3.756-.57-4.98zM1.5 16.513c0-3.094 2.398-5.602 5.356-5.602 2.958 0 5.356 2.508 5.356 5.602a.476.476 0 01-.465.487H1.965a.476.476 0 01-.465-.487zm9.73-.705c-.313-2.145-2.034-3.806-4.146-3.918l-.228-.006c-2.215 0-4.05 1.702-4.374 3.924l-.028.218h8.803l-.027-.218zm5.114-3.786a5.17 5.17 0 00-4.73-.88.49.49 0 00-.314.606.462.462 0 00.58.328 4.272 4.272 0 013.908.727l.204.17a4.697 4.697 0 011.546 2.997l.005.056h-4.05l-.094.01a.482.482 0 00-.371.477c0 .269.208.487.465.487h4.542l.093-.01a.482.482 0 00.372-.477c-.001-1.769-.8-3.433-2.156-4.49z",
|
|
31
|
+
clipRule: "evenodd"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
UsersIcon.displayName = "UsersIcon";
|
|
37
|
+
//#endregion
|
|
38
|
+
export { UsersIcon };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hive-ui/icons",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Hive UI Icons",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -8,21 +8,65 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": "./dist/index.mjs",
|
|
11
|
+
"./ArrowBackIcon": "./dist/ArrowBackIcon.mjs",
|
|
11
12
|
"./ArrowForwardIcon": "./dist/ArrowForwardIcon.mjs",
|
|
13
|
+
"./ArtificialIntelligenceIcon": "./dist/ArtificialIntelligenceIcon.mjs",
|
|
14
|
+
"./AttachIcon": "./dist/AttachIcon.mjs",
|
|
15
|
+
"./BusinessIcon": "./dist/BusinessIcon.mjs",
|
|
16
|
+
"./CalendarIcon": "./dist/CalendarIcon.mjs",
|
|
17
|
+
"./ChatIcon": "./dist/ChatIcon.mjs",
|
|
12
18
|
"./ChevronDisclosureIcon": "./dist/ChevronDisclosureIcon.mjs",
|
|
13
19
|
"./ChevronDownIcon": "./dist/ChevronDownIcon.mjs",
|
|
20
|
+
"./ChevronLeftIcon": "./dist/ChevronLeftIcon.mjs",
|
|
14
21
|
"./ChevronRightIcon": "./dist/ChevronRightIcon.mjs",
|
|
15
22
|
"./ChevronUpIcon": "./dist/ChevronUpIcon.mjs",
|
|
16
23
|
"./ClearIcon": "./dist/ClearIcon.mjs",
|
|
17
24
|
"./CloseIcon": "./dist/CloseIcon.mjs",
|
|
25
|
+
"./CodeIcon": "./dist/CodeIcon.mjs",
|
|
26
|
+
"./CopyIcon": "./dist/CopyIcon.mjs",
|
|
27
|
+
"./DarkModeIcon": "./dist/DarkModeIcon.mjs",
|
|
28
|
+
"./DeleteIcon": "./dist/DeleteIcon.mjs",
|
|
29
|
+
"./DirectoryIcon": "./dist/DirectoryIcon.mjs",
|
|
30
|
+
"./DividerIcon": "./dist/DividerIcon.mjs",
|
|
31
|
+
"./DownloadIcon": "./dist/DownloadIcon.mjs",
|
|
32
|
+
"./EditIcon": "./dist/EditIcon.mjs",
|
|
33
|
+
"./EmailIcon": "./dist/EmailIcon.mjs",
|
|
18
34
|
"./ErrorIcon": "./dist/ErrorIcon.mjs",
|
|
35
|
+
"./FileIcon": "./dist/FileIcon.mjs",
|
|
36
|
+
"./FilterIcon": "./dist/FilterIcon.mjs",
|
|
37
|
+
"./FlagIcon": "./dist/FlagIcon.mjs",
|
|
38
|
+
"./FolderIcon": "./dist/FolderIcon.mjs",
|
|
39
|
+
"./InformationIcon": "./dist/InformationIcon.mjs",
|
|
40
|
+
"./LightModeIcon": "./dist/LightModeIcon.mjs",
|
|
19
41
|
"./LinkExternalIcon": "./dist/LinkExternalIcon.mjs",
|
|
20
42
|
"./LinkIcon": "./dist/LinkIcon.mjs",
|
|
43
|
+
"./LockIcon": "./dist/LockIcon.mjs",
|
|
44
|
+
"./LoginIcon": "./dist/LoginIcon.mjs",
|
|
45
|
+
"./LogOutIcon": "./dist/LogOutIcon.mjs",
|
|
21
46
|
"./MenuIcon": "./dist/MenuIcon.mjs",
|
|
47
|
+
"./MinusIcon": "./dist/MinusIcon.mjs",
|
|
48
|
+
"./MoreIcon": "./dist/MoreIcon.mjs",
|
|
22
49
|
"./NeutralIcon": "./dist/NeutralIcon.mjs",
|
|
23
50
|
"./NewIcon": "./dist/NewIcon.mjs",
|
|
51
|
+
"./NotesIcon": "./dist/NotesIcon.mjs",
|
|
52
|
+
"./OrderedListIcon": "./dist/OrderedListIcon.mjs",
|
|
53
|
+
"./PinIcon": "./dist/PinIcon.mjs",
|
|
54
|
+
"./PlusIcon": "./dist/PlusIcon.mjs",
|
|
55
|
+
"./RaiseHandIcon": "./dist/RaiseHandIcon.mjs",
|
|
56
|
+
"./RefreshIcon": "./dist/RefreshIcon.mjs",
|
|
57
|
+
"./ResetIcon": "./dist/ResetIcon.mjs",
|
|
58
|
+
"./SearchIcon": "./dist/SearchIcon.mjs",
|
|
24
59
|
"./SelectedIcon": "./dist/SelectedIcon.mjs",
|
|
60
|
+
"./ShareIcon": "./dist/ShareIcon.mjs",
|
|
61
|
+
"./ShowIcon": "./dist/ShowIcon.mjs",
|
|
62
|
+
"./SMSIcon": "./dist/SMSIcon.mjs",
|
|
63
|
+
"./StarIcon": "./dist/StarIcon.mjs",
|
|
25
64
|
"./SuccessIcon": "./dist/SuccessIcon.mjs",
|
|
65
|
+
"./SupportIcon": "./dist/SupportIcon.mjs",
|
|
66
|
+
"./TimeIcon": "./dist/TimeIcon.mjs",
|
|
67
|
+
"./TourIcon": "./dist/TourIcon.mjs",
|
|
68
|
+
"./UserIcon": "./dist/UserIcon.mjs",
|
|
69
|
+
"./UsersIcon": "./dist/UsersIcon.mjs",
|
|
26
70
|
"./WarningIcon": "./dist/WarningIcon.mjs",
|
|
27
71
|
"./package.json": "./package.json"
|
|
28
72
|
},
|
|
@@ -37,8 +81,8 @@
|
|
|
37
81
|
"prepublishOnly": "vp run build"
|
|
38
82
|
},
|
|
39
83
|
"dependencies": {
|
|
40
|
-
"@hive-ui/box": "^0.2.
|
|
41
|
-
"@hive-ui/style-props": "^0.2.
|
|
84
|
+
"@hive-ui/box": "^0.2.4",
|
|
85
|
+
"@hive-ui/style-props": "^0.2.4"
|
|
42
86
|
},
|
|
43
87
|
"devDependencies": {
|
|
44
88
|
"@types/node": "^25.6.2",
|