prometeo-design-system 4.1.5 → 4.1.8
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/Avatar.es.js +37 -38
- package/dist/CardProfile.es.js +278 -3
- package/dist/Icons/UserAvatar.es.js +4 -4
- package/dist/Input.es.js +72 -71
- package/dist/PlainTooltip.es.js +19 -19
- package/dist/PyrionLayout.es.js +459 -409
- package/dist/Select.es.js +46 -46
- package/dist/TicketCard.es.js +33 -31
- package/dist/badge-BEx-0Q-K.js +35 -0
- package/dist/components/Avatar/Avatar.d.ts +1 -2
- package/dist/index.d.ts +0 -16
- package/dist/prometeo-design-system.es.js +119 -2906
- package/dist/styles.css +1 -1
- package/package.json +1 -1
- package/dist/CardProfile-C1F83KJV.js +0 -280
- package/dist/badge-CbqYNrl4.js +0 -87
- package/dist/components/Layout/LayoutGeneric.d.ts +0 -6
- package/dist/components/Sidebar/SecondaryBar/SecondaryBar.d.ts +0 -32
- package/dist/components/Sidebar/SecondaryBar/hooks/useSecondaryBarAnimation.d.ts +0 -2
- package/dist/components/Sidebar/SecondaryBar/index.d.ts +0 -1
- package/dist/components/Sidebar/SidebarComposable.d.ts +0 -43
- package/dist/components/Sidebar/components/NavigationLink.d.ts +0 -11
- package/dist/components/Sidebar/components/company-logo.d.ts +0 -5
- package/dist/components/Sidebar/components/nav-actions.d.ts +0 -7
- package/dist/components/Sidebar/components/nav-links.d.ts +0 -7
- package/dist/components/Sidebar/context/SidebarContext.d.ts +0 -13
- package/dist/components/Sidebar/hooks/SidebarProvider.d.ts +0 -3
- package/dist/components/Sidebar/hooks/useNavBarActions.d.ts +0 -9
- package/dist/components/Sidebar/hooks/useNavBarCollapse.d.ts +0 -4
- package/dist/components/Sidebar/hooks/useNavLinks.d.ts +0 -32
- package/dist/components/Sidebar/hooks/useSidebarHook.d.ts +0 -13
- package/dist/components/Sidebar/index.d.ts +0 -12
- package/dist/components/Sidebar/ui/useNavbarAnimation.d.ts +0 -2
package/dist/Avatar.es.js
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { j as e } from "./jsx-runtime-GkKLlHH4.js";
|
|
2
|
-
import { g as
|
|
3
|
-
import { c as
|
|
4
|
-
import { useState as
|
|
5
|
-
import { UserAvatar as
|
|
6
|
-
function
|
|
7
|
-
imageUrl:
|
|
8
|
-
sizeImage:
|
|
9
|
-
sizeFallback:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
fallbackType: i = "initials"
|
|
2
|
+
import { g as v } from "./useLabelBackground-BDIHUdND.js";
|
|
3
|
+
import { c as n } from "./cn-B6yFEsav.js";
|
|
4
|
+
import { useState as C, useRef as u, useLayoutEffect as N } from "react";
|
|
5
|
+
import { UserAvatar as S } from "./Icons/UserAvatar.es.js";
|
|
6
|
+
function I({
|
|
7
|
+
imageUrl: s,
|
|
8
|
+
sizeImage: x = "md",
|
|
9
|
+
sizeFallback: t = "md",
|
|
10
|
+
fallbackText: d = "Selene Soluciones",
|
|
11
|
+
subImageUrl: i,
|
|
12
|
+
fallbackType: c = "initials"
|
|
14
13
|
}) {
|
|
15
|
-
const [
|
|
14
|
+
const [f, h] = C(!1), m = s && s.trim() !== "" && !f, g = (a) => a.split(" ").map((j) => j.charAt(0)).join("").toUpperCase().slice(0, 2), r = {
|
|
16
15
|
xxxs: "w-6.5 h-6.5",
|
|
17
16
|
xxs: "w-8 h-8",
|
|
18
17
|
xs: "w-10 h-10",
|
|
@@ -20,7 +19,7 @@ function q({
|
|
|
20
19
|
md: "w-24 h-24",
|
|
21
20
|
lg: "w-32 h-32",
|
|
22
21
|
xl: "w-40 h-40"
|
|
23
|
-
},
|
|
22
|
+
}, p = {
|
|
24
23
|
xxxs: "text-[12px]",
|
|
25
24
|
xxs: "text-xs",
|
|
26
25
|
xs: "text-sm",
|
|
@@ -28,7 +27,7 @@ function q({
|
|
|
28
27
|
md: "text-2xl",
|
|
29
28
|
lg: "text-3xl",
|
|
30
29
|
xl: "text-4xl"
|
|
31
|
-
},
|
|
30
|
+
}, w = {
|
|
32
31
|
xxxs: "w-3 h-3",
|
|
33
32
|
xxs: "w-[18px] h-[18px] bottom-0 right-0 translate-x-1/3 translate-y-1/3",
|
|
34
33
|
xs: "w-5 h-5",
|
|
@@ -36,54 +35,54 @@ function q({
|
|
|
36
35
|
md: "w-12 h-12 border-3",
|
|
37
36
|
lg: "w-16 h-16 border-4",
|
|
38
37
|
xl: "w-20 h-20 border-5"
|
|
39
|
-
},
|
|
40
|
-
return
|
|
41
|
-
if (!
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
}, []), /* @__PURE__ */ e.jsxs("div", { className: "relative inline-block min-w-max ", ref:
|
|
45
|
-
|
|
38
|
+
}, b = m ? x : t, o = u(null), l = u(null);
|
|
39
|
+
return N(() => {
|
|
40
|
+
if (!o.current || !l.current) return;
|
|
41
|
+
const a = v(o.current);
|
|
42
|
+
l.current.style.borderColor = a;
|
|
43
|
+
}, []), /* @__PURE__ */ e.jsxs("div", { className: "relative inline-block min-w-max ", ref: o, children: [
|
|
44
|
+
m ? /* @__PURE__ */ e.jsx(
|
|
46
45
|
"img",
|
|
47
46
|
{
|
|
48
47
|
onError: () => {
|
|
49
|
-
|
|
48
|
+
h(!0);
|
|
50
49
|
},
|
|
51
|
-
src:
|
|
52
|
-
className: `rounded-full object-cover ${
|
|
50
|
+
src: s,
|
|
51
|
+
className: `rounded-full object-cover ${r[x]}`,
|
|
53
52
|
alt: "Profile",
|
|
54
53
|
draggable: !1
|
|
55
54
|
}
|
|
56
|
-
) :
|
|
55
|
+
) : c === "initials" ? /* @__PURE__ */ e.jsx(
|
|
57
56
|
"div",
|
|
58
57
|
{
|
|
59
|
-
className: ` flex items-center justify-center rounded-full aspect-square ${
|
|
58
|
+
className: ` flex items-center justify-center rounded-full aspect-square ${r[t]}`,
|
|
60
59
|
style: { backgroundColor: "#C6D2FF" },
|
|
61
60
|
children: /* @__PURE__ */ e.jsx(
|
|
62
61
|
"span",
|
|
63
62
|
{
|
|
64
|
-
className:
|
|
63
|
+
className: n(
|
|
65
64
|
"text-[#312C85] font-semibold",
|
|
66
|
-
|
|
65
|
+
p[t]
|
|
67
66
|
),
|
|
68
|
-
children:
|
|
67
|
+
children: g(d)
|
|
69
68
|
}
|
|
70
69
|
)
|
|
71
70
|
},
|
|
72
71
|
"initials"
|
|
73
|
-
) :
|
|
74
|
-
|
|
72
|
+
) : c === "defaultAvatar" && /* @__PURE__ */ e.jsx(S, { className: n(r[t], "fill-[#D4D4D8]") }),
|
|
73
|
+
i && /* @__PURE__ */ e.jsx(
|
|
75
74
|
"div",
|
|
76
75
|
{
|
|
77
|
-
className:
|
|
78
|
-
"absolute bottom-[-10px] right-[-10px] rounded-full border
|
|
79
|
-
|
|
76
|
+
className: n(
|
|
77
|
+
"absolute bottom-[-10px] right-[-10px] rounded-full border overflow-hidden bg-gray-900",
|
|
78
|
+
w[b]
|
|
80
79
|
),
|
|
81
|
-
ref:
|
|
80
|
+
ref: l,
|
|
82
81
|
children: /* @__PURE__ */ e.jsx(
|
|
83
82
|
"img",
|
|
84
83
|
{
|
|
85
84
|
draggable: !1,
|
|
86
|
-
src:
|
|
85
|
+
src: i,
|
|
87
86
|
alt: "Sub badge",
|
|
88
87
|
className: "w-full h-full object-cover"
|
|
89
88
|
}
|
|
@@ -93,5 +92,5 @@ function q({
|
|
|
93
92
|
] });
|
|
94
93
|
}
|
|
95
94
|
export {
|
|
96
|
-
|
|
95
|
+
I as default
|
|
97
96
|
};
|
package/dist/CardProfile.es.js
CHANGED
|
@@ -1,5 +1,280 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { j as e } from "./jsx-runtime-GkKLlHH4.js";
|
|
2
|
+
import { c as i } from "./cn-B6yFEsav.js";
|
|
3
|
+
import { motion as l, AnimatePresence as c } from "framer-motion";
|
|
4
|
+
import u from "./Avatar.es.js";
|
|
5
|
+
import { ChevronDown as f } from "./Icons/ChevronDown.es.js";
|
|
6
|
+
import { Logout as m } from "./Icons/Logout.es.js";
|
|
7
|
+
function x({
|
|
8
|
+
sessions: t,
|
|
9
|
+
handleTokenLogin: a
|
|
10
|
+
}) {
|
|
11
|
+
return /* @__PURE__ */ e.jsx("div", { className: "profile-options-container w-full ", children: t?.map((r) => /* @__PURE__ */ e.jsx(
|
|
12
|
+
"button",
|
|
13
|
+
{
|
|
14
|
+
className: "w-full ",
|
|
15
|
+
onClick: () => a?.(r.token),
|
|
16
|
+
children: /* @__PURE__ */ e.jsx(o, { children: /* @__PURE__ */ e.jsx(
|
|
17
|
+
o.Content,
|
|
18
|
+
{
|
|
19
|
+
onClick: () => {
|
|
20
|
+
console.log("hola");
|
|
21
|
+
},
|
|
22
|
+
isExpanded: !1,
|
|
23
|
+
nameUser: r.name,
|
|
24
|
+
nameArea: r?.areaId?.name,
|
|
25
|
+
nameCompany: r.companyId.name,
|
|
26
|
+
cardProfile: /* @__PURE__ */ e.jsx(o.Image, { isExpanded: !1 })
|
|
27
|
+
}
|
|
28
|
+
) })
|
|
29
|
+
},
|
|
30
|
+
r._id
|
|
31
|
+
)) });
|
|
32
|
+
}
|
|
33
|
+
const h = ({ children: t }) => /* @__PURE__ */ e.jsx("div", { className: "profile-container flex gap-0.5 overflow-hidden w-full min-w-0 ", children: t }), p = ({
|
|
34
|
+
isExpanded: t,
|
|
35
|
+
sessions: a,
|
|
36
|
+
onClickLogout: r,
|
|
37
|
+
handleTokenLogin: n
|
|
38
|
+
}) => /* @__PURE__ */ e.jsx(c, { mode: "wait", children: t && /* @__PURE__ */ e.jsxs(
|
|
39
|
+
l.div,
|
|
40
|
+
{
|
|
41
|
+
initial: { height: 0, opacity: 0 },
|
|
42
|
+
animate: {
|
|
43
|
+
height: "auto",
|
|
44
|
+
opacity: 1,
|
|
45
|
+
transition: {
|
|
46
|
+
height: { duration: 0.6, ease: "easeOut" },
|
|
47
|
+
opacity: { duration: 0.4, delay: 0.2 }
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
exit: {
|
|
51
|
+
height: 0,
|
|
52
|
+
opacity: 0,
|
|
53
|
+
transition: {
|
|
54
|
+
height: {
|
|
55
|
+
duration: 0.8,
|
|
56
|
+
delay: 0.2,
|
|
57
|
+
ease: "easeIn"
|
|
58
|
+
},
|
|
59
|
+
opacity: { duration: 0.3, delay: 0.1 }
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
className: "overflow-hidden",
|
|
63
|
+
children: [
|
|
64
|
+
/* @__PURE__ */ e.jsx(
|
|
65
|
+
l.div,
|
|
66
|
+
{
|
|
67
|
+
className: "flex justify-center items-center w-full mt-4",
|
|
68
|
+
exit: {
|
|
69
|
+
opacity: 0,
|
|
70
|
+
scaleX: 0,
|
|
71
|
+
height: 0,
|
|
72
|
+
transition: {
|
|
73
|
+
duration: 0.4,
|
|
74
|
+
delay: 0.5,
|
|
75
|
+
ease: "easeInOut"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
children: /* @__PURE__ */ e.jsx("div", { className: "border-b border-neutral-strong-default border w-full" })
|
|
79
|
+
}
|
|
80
|
+
),
|
|
81
|
+
a && a.length > 0 && /* @__PURE__ */ e.jsxs(e.Fragment, { children: [
|
|
82
|
+
/* @__PURE__ */ e.jsx(
|
|
83
|
+
l.div,
|
|
84
|
+
{
|
|
85
|
+
className: "mt-4",
|
|
86
|
+
exit: {
|
|
87
|
+
opacity: 0,
|
|
88
|
+
y: -5,
|
|
89
|
+
height: 0,
|
|
90
|
+
transition: {
|
|
91
|
+
duration: 0.4,
|
|
92
|
+
delay: 0.4,
|
|
93
|
+
ease: "easeInOut"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
children: /* @__PURE__ */ e.jsx("span", { className: "text-neutral-medium-default font-semibold text-xs", children: "Cambiar cuenta" })
|
|
97
|
+
}
|
|
98
|
+
),
|
|
99
|
+
/* @__PURE__ */ e.jsx(
|
|
100
|
+
l.div,
|
|
101
|
+
{
|
|
102
|
+
className: "mt-4 overflow-hidden w-full ",
|
|
103
|
+
exit: {
|
|
104
|
+
height: 0,
|
|
105
|
+
opacity: 0,
|
|
106
|
+
y: -10,
|
|
107
|
+
scale: 0.98,
|
|
108
|
+
transition: {
|
|
109
|
+
height: { duration: 0.5, delay: 0.2 },
|
|
110
|
+
opacity: { duration: 0.3, delay: 0.3 },
|
|
111
|
+
y: { duration: 0.3, delay: 0.3 },
|
|
112
|
+
scale: { duration: 0.3, delay: 0.3 },
|
|
113
|
+
ease: "easeInOut"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
children: /* @__PURE__ */ e.jsx(
|
|
117
|
+
x,
|
|
118
|
+
{
|
|
119
|
+
sessions: a,
|
|
120
|
+
handleTokenLogin: n
|
|
121
|
+
}
|
|
122
|
+
)
|
|
123
|
+
}
|
|
124
|
+
),
|
|
125
|
+
/* @__PURE__ */ e.jsx(
|
|
126
|
+
l.div,
|
|
127
|
+
{
|
|
128
|
+
className: "flex justify-center items-center w-full mt-4",
|
|
129
|
+
exit: {
|
|
130
|
+
opacity: 0,
|
|
131
|
+
scaleX: 0,
|
|
132
|
+
height: 0,
|
|
133
|
+
transition: {
|
|
134
|
+
duration: 0.4,
|
|
135
|
+
delay: 0.15,
|
|
136
|
+
ease: "easeInOut"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
children: /* @__PURE__ */ e.jsx("div", { className: "border-b border-neutral-strong-default border w-full" })
|
|
140
|
+
}
|
|
141
|
+
)
|
|
142
|
+
] }),
|
|
143
|
+
/* @__PURE__ */ e.jsxs(
|
|
144
|
+
l.button,
|
|
145
|
+
{
|
|
146
|
+
onClick: r,
|
|
147
|
+
className: "flex flex-1 h-12 w-full gap-1 rounded-md cursor-pointer mt-4 mb-4 px-2 items-center overflow-hidden focus:outline-none hover:bg-neutral-medium-selected button-profile",
|
|
148
|
+
exit: {
|
|
149
|
+
opacity: 0,
|
|
150
|
+
y: -8,
|
|
151
|
+
scale: 0.96,
|
|
152
|
+
transition: {
|
|
153
|
+
duration: 0.5,
|
|
154
|
+
delay: 0,
|
|
155
|
+
ease: "easeInOut"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
whileHover: {
|
|
159
|
+
opacity: 1,
|
|
160
|
+
scale: [1, 1.02, 1],
|
|
161
|
+
transition: { duration: 0.2 }
|
|
162
|
+
},
|
|
163
|
+
whileTap: { scale: 0.98 },
|
|
164
|
+
children: [
|
|
165
|
+
/* @__PURE__ */ e.jsx(m, { size: 24, className: "text-neutral-default-default" }),
|
|
166
|
+
/* @__PURE__ */ e.jsx("span", { className: "text-neutral-default-default font-semibold text-sm", children: "Cerrar sesión" })
|
|
167
|
+
]
|
|
168
|
+
}
|
|
169
|
+
)
|
|
170
|
+
]
|
|
171
|
+
}
|
|
172
|
+
) }), g = ({ imageUrl: t, fallbackText: a }) => /* @__PURE__ */ e.jsx("div", { className: "flex items-center justify-center profile-image-wrapper", children: /* @__PURE__ */ e.jsx(
|
|
173
|
+
u,
|
|
174
|
+
{
|
|
175
|
+
subImageUrl: t,
|
|
176
|
+
imageUrl: t,
|
|
177
|
+
sizeImage: "xxs",
|
|
178
|
+
sizeFallback: "xxs",
|
|
179
|
+
fallbackText: a
|
|
180
|
+
}
|
|
181
|
+
) }), j = ({
|
|
182
|
+
isExpanded: t,
|
|
183
|
+
nameUser: a,
|
|
184
|
+
nameCompany: r,
|
|
185
|
+
nameArea: n,
|
|
186
|
+
cardProfile: s,
|
|
187
|
+
onClick: d
|
|
188
|
+
}) => /* @__PURE__ */ e.jsxs(
|
|
189
|
+
l.button,
|
|
190
|
+
{
|
|
191
|
+
onClick: d,
|
|
192
|
+
className: i(
|
|
193
|
+
"flex flex-1 gap-2 rounded-lg cursor-pointer relative overflow-hidden focus:outline-none hover:bg-neutral-medium-selected button-profile h-max p-3",
|
|
194
|
+
t && "bg-neutral-medium-selected"
|
|
195
|
+
),
|
|
196
|
+
whileHover: {
|
|
197
|
+
opacity: 1,
|
|
198
|
+
scale: [1, 1.02, 1]
|
|
199
|
+
},
|
|
200
|
+
whileTap: { scale: 0.98 },
|
|
201
|
+
transition: { duration: 0.2, ease: "easeInOut" },
|
|
202
|
+
children: [
|
|
203
|
+
s,
|
|
204
|
+
/* @__PURE__ */ e.jsxs("div", { className: "flex flex-col justify-center overflow-hidden flex-1 relative z-10 profile-user-info mr-2 p-0", children: [
|
|
205
|
+
/* @__PURE__ */ e.jsx(
|
|
206
|
+
"p",
|
|
207
|
+
{
|
|
208
|
+
className: i(
|
|
209
|
+
"profile-name font-semibold leading-tight mb-0 text-left",
|
|
210
|
+
t ? "text-primary-default-default" : "text-neutral-default-default"
|
|
211
|
+
),
|
|
212
|
+
children: a?.length && a?.length > 20 ? a?.slice(0, 10) + ".." : a
|
|
213
|
+
}
|
|
214
|
+
),
|
|
215
|
+
/* @__PURE__ */ e.jsx("div", { className: "flex items-center gap-1 mt-0 ", children: r && r ? /* @__PURE__ */ e.jsxs(e.Fragment, { children: [
|
|
216
|
+
/* @__PURE__ */ e.jsx(
|
|
217
|
+
"p",
|
|
218
|
+
{
|
|
219
|
+
className: i(
|
|
220
|
+
"profile-options truncate text-xs mt-0",
|
|
221
|
+
t ? "text-primary-default-default" : "text-neutral-default-default"
|
|
222
|
+
),
|
|
223
|
+
children: r?.length && r?.length > 20 ? r?.slice(0, 10) + ".." : r
|
|
224
|
+
}
|
|
225
|
+
),
|
|
226
|
+
/* @__PURE__ */ e.jsx(
|
|
227
|
+
"p",
|
|
228
|
+
{
|
|
229
|
+
className: i(
|
|
230
|
+
"profile-options truncate font-bold mt-0",
|
|
231
|
+
t ? "text-primary-default-default" : "text-neutral-default-default"
|
|
232
|
+
),
|
|
233
|
+
children: "·"
|
|
234
|
+
}
|
|
235
|
+
),
|
|
236
|
+
/* @__PURE__ */ e.jsx(
|
|
237
|
+
"p",
|
|
238
|
+
{
|
|
239
|
+
className: i(
|
|
240
|
+
"profile-options truncate text-xs mt-0",
|
|
241
|
+
t ? "text-primary-default-default" : "text-neutral-default-default"
|
|
242
|
+
),
|
|
243
|
+
children: n || "Sin asignar"
|
|
244
|
+
}
|
|
245
|
+
)
|
|
246
|
+
] }) : /* @__PURE__ */ e.jsx("span", { className: "font-semibold leading-tight ml-3 text-xs text-blue-300 text-center", children: "Sin asignar" }) })
|
|
247
|
+
] })
|
|
248
|
+
]
|
|
249
|
+
}
|
|
250
|
+
), v = () => /* @__PURE__ */ e.jsx("div", { className: "w-px bg-gray-500/30 my-1 border-separator-profile" }), y = ({ isExpanded: t, onClick: a }) => /* @__PURE__ */ e.jsx(
|
|
251
|
+
l.button,
|
|
252
|
+
{
|
|
253
|
+
onClick: a,
|
|
254
|
+
className: "flex items-center justify-center p-3 rounded-lg cursor-pointer relative overflow-hidden focus:outline-none w-8 min-w-8 hover:bg-neutral-medium-selected button-content-chevron",
|
|
255
|
+
whileHover: { scale: 1.05 },
|
|
256
|
+
whileTap: { scale: 0.95 },
|
|
257
|
+
transition: { duration: 0.2, ease: "easeOut" },
|
|
258
|
+
title: t ? "Ocultar opciones" : "Mostrar opciones",
|
|
259
|
+
"aria-label": t ? "Ocultar opciones" : "Mostrar opciones",
|
|
260
|
+
children: /* @__PURE__ */ e.jsx(
|
|
261
|
+
l.div,
|
|
262
|
+
{
|
|
263
|
+
animate: { rotate: t ? 180 : 0 },
|
|
264
|
+
transition: { duration: 0.3, ease: "easeOut" },
|
|
265
|
+
className: "relative button-select-crevron",
|
|
266
|
+
children: /* @__PURE__ */ e.jsx(l.div, { transition: { duration: 0.2 }, children: /* @__PURE__ */ e.jsx(f, { size: 24, className: "text-prometeo-neutral " }) })
|
|
267
|
+
}
|
|
268
|
+
)
|
|
269
|
+
}
|
|
270
|
+
), o = Object.assign(h, {
|
|
271
|
+
Menu: p,
|
|
272
|
+
Image: g,
|
|
273
|
+
Content: j,
|
|
274
|
+
Separator: v,
|
|
275
|
+
Options: y
|
|
276
|
+
});
|
|
2
277
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
278
|
+
o as CardProfile,
|
|
279
|
+
o as default
|
|
5
280
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { j as r } from "../jsx-runtime-GkKLlHH4.js";
|
|
2
2
|
import { m as o } from "../iconUtils-D0lVAgGT.js";
|
|
3
3
|
const s = o(
|
|
4
|
-
({ size: t = 24, className: e, ...l }) => /* @__PURE__ */ r.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: t, height: t, viewBox: "0 0 24 24", fill: "
|
|
5
|
-
/* @__PURE__ */ r.jsx("rect", { width: "24", height: "24", rx: "12", fill: "
|
|
6
|
-
/* @__PURE__ */ r.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.6001 9.6C15.6001 11.5882 13.9884 13.2 12.0001 13.2C10.0119 13.2 8.40015 11.5882 8.40015 9.6C8.40015 7.61177 10.0119 6 12.0001 6C13.9884 6 15.6001 7.61177 15.6001 9.6ZM14.4001 9.6C14.4001 10.9255 13.3256 12 12.0001 12C10.6747 12 9.60015 10.9255 9.60015 9.6C9.60015 8.27452 10.6747 7.2 12.0001 7.2C13.3256 7.2 14.4001 8.27452 14.4001 9.6Z", fill: "
|
|
7
|
-
/* @__PURE__ */ r.jsx("path", { d: "M12.0001 15C8.11552 15 4.80571 17.297 3.54492 20.5152C3.85206 20.8202 4.1756 21.1087 4.51412 21.3792C5.45296 18.4246 8.39818 16.2 12.0001 16.2C15.6021 16.2 18.5473 18.4246 19.4862 21.3792C19.8247 21.1087 20.1482 20.8202 20.4554 20.5152C19.1946 17.2971 15.8848 15 12.0001 15Z", fill: "
|
|
4
|
+
({ size: t = 24, className: e, ...l }) => /* @__PURE__ */ r.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: t, height: t, viewBox: "0 0 24 24", fill: "currentColor", ...l, className: e, children: [
|
|
5
|
+
/* @__PURE__ */ r.jsx("rect", { width: "24", height: "24", rx: "12", fill: "" }),
|
|
6
|
+
/* @__PURE__ */ r.jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M15.6001 9.6C15.6001 11.5882 13.9884 13.2 12.0001 13.2C10.0119 13.2 8.40015 11.5882 8.40015 9.6C8.40015 7.61177 10.0119 6 12.0001 6C13.9884 6 15.6001 7.61177 15.6001 9.6ZM14.4001 9.6C14.4001 10.9255 13.3256 12 12.0001 12C10.6747 12 9.60015 10.9255 9.60015 9.6C9.60015 8.27452 10.6747 7.2 12.0001 7.2C13.3256 7.2 14.4001 8.27452 14.4001 9.6Z", fill: "currentColor" }),
|
|
7
|
+
/* @__PURE__ */ r.jsx("path", { d: "M12.0001 15C8.11552 15 4.80571 17.297 3.54492 20.5152C3.85206 20.8202 4.1756 21.1087 4.51412 21.3792C5.45296 18.4246 8.39818 16.2 12.0001 16.2C15.6021 16.2 18.5473 18.4246 19.4862 21.3792C19.8247 21.1087 20.1482 20.8202 20.4554 20.5152C19.1946 17.2971 15.8848 15 12.0001 15Z", fill: "currentColor" })
|
|
8
8
|
] })
|
|
9
9
|
);
|
|
10
10
|
export {
|