framepexls-ui-lib 0.1.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/ActionIconButton.d.mts +11 -0
- package/dist/ActionIconButton.d.ts +11 -0
- package/dist/ActionIconButton.js +71 -0
- package/dist/ActionIconButton.mjs +41 -0
- package/dist/AppTopbar.d.mts +17 -0
- package/dist/AppTopbar.d.ts +17 -0
- package/dist/AppTopbar.js +51 -0
- package/dist/AppTopbar.mjs +31 -0
- package/dist/AvatarSquare.d.mts +16 -0
- package/dist/AvatarSquare.d.ts +16 -0
- package/dist/AvatarSquare.js +82 -0
- package/dist/AvatarSquare.mjs +52 -0
- package/dist/Badge.d.mts +13 -0
- package/dist/Badge.d.ts +13 -0
- package/dist/Badge.js +65 -0
- package/dist/Badge.mjs +45 -0
- package/dist/BadgeCluster.d.mts +17 -0
- package/dist/BadgeCluster.d.ts +17 -0
- package/dist/BadgeCluster.js +125 -0
- package/dist/BadgeCluster.mjs +95 -0
- package/dist/Breadcrumb.d.mts +11 -0
- package/dist/Breadcrumb.d.ts +11 -0
- package/dist/Breadcrumb.js +42 -0
- package/dist/Breadcrumb.mjs +12 -0
- package/dist/Button.d.mts +15 -0
- package/dist/Button.d.ts +15 -0
- package/dist/Button.js +72 -0
- package/dist/Button.mjs +52 -0
- package/dist/CalendarPanel.d.mts +13 -0
- package/dist/CalendarPanel.d.ts +13 -0
- package/dist/CalendarPanel.js +110 -0
- package/dist/CalendarPanel.mjs +90 -0
- package/dist/ChartCard.d.mts +15 -0
- package/dist/ChartCard.d.ts +15 -0
- package/dist/ChartCard.js +44 -0
- package/dist/ChartCard.mjs +24 -0
- package/dist/CheckboxPillsGroup.d.mts +28 -0
- package/dist/CheckboxPillsGroup.d.ts +28 -0
- package/dist/CheckboxPillsGroup.js +186 -0
- package/dist/CheckboxPillsGroup.mjs +156 -0
- package/dist/ColumnSelector.d.mts +17 -0
- package/dist/ColumnSelector.d.ts +17 -0
- package/dist/ColumnSelector.js +74 -0
- package/dist/ColumnSelector.mjs +54 -0
- package/dist/ComboSelect.d.mts +46 -0
- package/dist/ComboSelect.d.ts +46 -0
- package/dist/ComboSelect.js +442 -0
- package/dist/ComboSelect.mjs +412 -0
- package/dist/DateTimeField.d.mts +22 -0
- package/dist/DateTimeField.d.ts +22 -0
- package/dist/DateTimeField.js +409 -0
- package/dist/DateTimeField.mjs +379 -0
- package/dist/Dialog.d.mts +82 -0
- package/dist/Dialog.d.ts +82 -0
- package/dist/Dialog.js +408 -0
- package/dist/Dialog.mjs +368 -0
- package/dist/Dropdown.d.mts +52 -0
- package/dist/Dropdown.d.ts +52 -0
- package/dist/Dropdown.js +333 -0
- package/dist/Dropdown.mjs +313 -0
- package/dist/EmptyState.d.mts +8 -0
- package/dist/EmptyState.d.ts +8 -0
- package/dist/EmptyState.js +35 -0
- package/dist/EmptyState.mjs +15 -0
- package/dist/InfoGrid.d.mts +20 -0
- package/dist/InfoGrid.d.ts +20 -0
- package/dist/InfoGrid.js +67 -0
- package/dist/InfoGrid.mjs +47 -0
- package/dist/Input.d.mts +20 -0
- package/dist/Input.d.ts +20 -0
- package/dist/Input.js +85 -0
- package/dist/Input.mjs +55 -0
- package/dist/Money.d.mts +8 -0
- package/dist/Money.d.ts +8 -0
- package/dist/Money.js +30 -0
- package/dist/Money.mjs +10 -0
- package/dist/OrderButton.d.mts +11 -0
- package/dist/OrderButton.d.ts +11 -0
- package/dist/OrderButton.js +39 -0
- package/dist/OrderButton.mjs +19 -0
- package/dist/Pagination.d.mts +12 -0
- package/dist/Pagination.d.ts +12 -0
- package/dist/Pagination.js +71 -0
- package/dist/Pagination.mjs +51 -0
- package/dist/SearchInput.d.mts +17 -0
- package/dist/SearchInput.d.ts +17 -0
- package/dist/SearchInput.js +116 -0
- package/dist/SearchInput.mjs +86 -0
- package/dist/Select.d.mts +31 -0
- package/dist/Select.d.ts +31 -0
- package/dist/Select.js +293 -0
- package/dist/Select.mjs +263 -0
- package/dist/StatCard.d.mts +15 -0
- package/dist/StatCard.d.ts +15 -0
- package/dist/StatCard.js +47 -0
- package/dist/StatCard.mjs +27 -0
- package/dist/Steps.d.mts +31 -0
- package/dist/Steps.d.ts +31 -0
- package/dist/Steps.js +123 -0
- package/dist/Steps.mjs +99 -0
- package/dist/Table.d.mts +31 -0
- package/dist/Table.d.ts +31 -0
- package/dist/Table.js +153 -0
- package/dist/Table.mjs +117 -0
- package/dist/TimeAgo.d.mts +12 -0
- package/dist/TimeAgo.d.ts +12 -0
- package/dist/TimeAgo.js +104 -0
- package/dist/TimeAgo.mjs +74 -0
- package/dist/TimePanel.d.mts +14 -0
- package/dist/TimePanel.d.ts +14 -0
- package/dist/TimePanel.js +145 -0
- package/dist/TimePanel.mjs +125 -0
- package/dist/TimePopover.d.mts +33 -0
- package/dist/TimePopover.d.ts +33 -0
- package/dist/TimePopover.js +441 -0
- package/dist/TimePopover.mjs +406 -0
- package/dist/iconos/index.d.mts +60 -0
- package/dist/iconos/index.d.ts +60 -0
- package/dist/iconos/index.js +621 -0
- package/dist/iconos/index.mjs +548 -0
- package/dist/index.d.mts +32 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.js +141 -0
- package/dist/index.mjs +70 -0
- package/package.json +178 -0
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
const FlechaAbajo = ({ props }) => {
|
|
3
|
+
return /* @__PURE__ */ jsx(
|
|
4
|
+
"svg",
|
|
5
|
+
{
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
fill: "none",
|
|
8
|
+
focusable: "false",
|
|
9
|
+
height: "1em",
|
|
10
|
+
role: "presentation",
|
|
11
|
+
viewBox: "0 0 12 12",
|
|
12
|
+
width: "1em",
|
|
13
|
+
...props,
|
|
14
|
+
children: /* @__PURE__ */ jsx(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
d: "M3 4.5L6 7.5L9 4.5",
|
|
18
|
+
stroke: "#71717A",
|
|
19
|
+
strokeLinecap: "round",
|
|
20
|
+
strokeLinejoin: "round",
|
|
21
|
+
strokeWidth: "1.5"
|
|
22
|
+
}
|
|
23
|
+
)
|
|
24
|
+
}
|
|
25
|
+
);
|
|
26
|
+
};
|
|
27
|
+
const FlechaArriba = ({ props }) => {
|
|
28
|
+
return /* @__PURE__ */ jsx(
|
|
29
|
+
"svg",
|
|
30
|
+
{
|
|
31
|
+
"aria-hidden": "true",
|
|
32
|
+
fill: "none",
|
|
33
|
+
focusable: "false",
|
|
34
|
+
height: "1em",
|
|
35
|
+
role: "presentation",
|
|
36
|
+
viewBox: "0 0 12 12",
|
|
37
|
+
width: "1em",
|
|
38
|
+
...props,
|
|
39
|
+
children: /* @__PURE__ */ jsx(
|
|
40
|
+
"path",
|
|
41
|
+
{
|
|
42
|
+
d: "M3 7.5L6 4.5L9 7.5",
|
|
43
|
+
stroke: "#71717A",
|
|
44
|
+
strokeLinecap: "round",
|
|
45
|
+
strokeLinejoin: "round",
|
|
46
|
+
strokeWidth: "1.5"
|
|
47
|
+
}
|
|
48
|
+
)
|
|
49
|
+
}
|
|
50
|
+
);
|
|
51
|
+
};
|
|
52
|
+
const CirculoPeligro = () => {
|
|
53
|
+
return /* @__PURE__ */ jsx("svg", { fill: "none", height: "7", viewBox: "0 0 7 7", width: "7", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("circle", { cx: "3.5", cy: "3.5", fill: "#F31260", r: "3.5" }) });
|
|
54
|
+
};
|
|
55
|
+
const CirculoPorDefecto = () => {
|
|
56
|
+
return /* @__PURE__ */ jsx(
|
|
57
|
+
"svg",
|
|
58
|
+
{
|
|
59
|
+
className: "text-foreground",
|
|
60
|
+
fill: "currentColor",
|
|
61
|
+
height: "7",
|
|
62
|
+
viewBox: "0 0 7 7",
|
|
63
|
+
width: "7",
|
|
64
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
65
|
+
children: /* @__PURE__ */ jsx("circle", { cx: "3.5", cy: "3.5", fill: "currentColor", r: "3.5" })
|
|
66
|
+
}
|
|
67
|
+
);
|
|
68
|
+
};
|
|
69
|
+
const CirculoExito = () => {
|
|
70
|
+
return /* @__PURE__ */ jsx("svg", { fill: "none", height: "7", viewBox: "0 0 7 7", width: "7", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("circle", { cx: "3.5", cy: "3.5", fill: "#17C964", r: "3.5" }) });
|
|
71
|
+
};
|
|
72
|
+
const CirculoAdvertencia = () => {
|
|
73
|
+
return /* @__PURE__ */ jsx("svg", { fill: "none", height: "7", viewBox: "0 0 7 7", width: "7", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("circle", { cx: "3.5", cy: "3.5", fill: "#F5A524", r: "3.5" }) });
|
|
74
|
+
};
|
|
75
|
+
const Borrar = (props) => {
|
|
76
|
+
return /* @__PURE__ */ jsxs(
|
|
77
|
+
"svg",
|
|
78
|
+
{
|
|
79
|
+
"aria-hidden": "true",
|
|
80
|
+
fill: "none",
|
|
81
|
+
focusable: "false",
|
|
82
|
+
height: "1em",
|
|
83
|
+
role: "presentation",
|
|
84
|
+
viewBox: "0 0 18 19",
|
|
85
|
+
width: "1em",
|
|
86
|
+
...props,
|
|
87
|
+
children: [
|
|
88
|
+
/* @__PURE__ */ jsx(
|
|
89
|
+
"path",
|
|
90
|
+
{
|
|
91
|
+
d: "M15.75 4.98487C13.2525 4.73737 10.74 4.60986 8.235 4.60986C6.75 4.60986 5.265 4.68486 3.78 4.83486L2.25 4.98487",
|
|
92
|
+
stroke: "#71717A",
|
|
93
|
+
strokeLinecap: "round",
|
|
94
|
+
strokeLinejoin: "round",
|
|
95
|
+
strokeWidth: "1.35"
|
|
96
|
+
}
|
|
97
|
+
),
|
|
98
|
+
/* @__PURE__ */ jsx(
|
|
99
|
+
"path",
|
|
100
|
+
{
|
|
101
|
+
d: "M6.375 4.2275L6.54001 3.245C6.66 2.53249 6.75 2 8.0175 2H9.98246C11.25 2 11.3475 2.5625 11.46 3.25249L11.625 4.2275",
|
|
102
|
+
stroke: "#71717A",
|
|
103
|
+
strokeLinecap: "round",
|
|
104
|
+
strokeLinejoin: "round",
|
|
105
|
+
strokeWidth: "1.35"
|
|
106
|
+
}
|
|
107
|
+
),
|
|
108
|
+
/* @__PURE__ */ jsx(
|
|
109
|
+
"path",
|
|
110
|
+
{
|
|
111
|
+
d: "M14.1376 7.35498L13.6501 14.9075C13.5675 16.0849 13.5 17 11.4075 17H6.59255C4.50005 17 4.43255 16.0849 4.35004 14.9075L3.86255 7.35498",
|
|
112
|
+
stroke: "#71717A",
|
|
113
|
+
strokeLinecap: "round",
|
|
114
|
+
strokeLinejoin: "round",
|
|
115
|
+
strokeWidth: "1.35"
|
|
116
|
+
}
|
|
117
|
+
),
|
|
118
|
+
/* @__PURE__ */ jsx(
|
|
119
|
+
"path",
|
|
120
|
+
{
|
|
121
|
+
d: "M7.74756 12.875H10.245",
|
|
122
|
+
stroke: "#71717A",
|
|
123
|
+
strokeLinecap: "round",
|
|
124
|
+
strokeLinejoin: "round",
|
|
125
|
+
strokeWidth: "1.35"
|
|
126
|
+
}
|
|
127
|
+
),
|
|
128
|
+
/* @__PURE__ */ jsx(
|
|
129
|
+
"path",
|
|
130
|
+
{
|
|
131
|
+
d: "M7.125 9.875H10.875",
|
|
132
|
+
stroke: "#71717A",
|
|
133
|
+
strokeLinecap: "round",
|
|
134
|
+
strokeLinejoin: "round",
|
|
135
|
+
strokeWidth: "1.35"
|
|
136
|
+
}
|
|
137
|
+
)
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
);
|
|
141
|
+
};
|
|
142
|
+
const Ojo = (props) => {
|
|
143
|
+
return /* @__PURE__ */ jsxs(
|
|
144
|
+
"svg",
|
|
145
|
+
{
|
|
146
|
+
"aria-hidden": "true",
|
|
147
|
+
fill: "none",
|
|
148
|
+
focusable: "false",
|
|
149
|
+
height: "1em",
|
|
150
|
+
role: "presentation",
|
|
151
|
+
viewBox: "0 0 24 24",
|
|
152
|
+
width: "1em",
|
|
153
|
+
...props,
|
|
154
|
+
children: [
|
|
155
|
+
/* @__PURE__ */ jsx(
|
|
156
|
+
"path",
|
|
157
|
+
{
|
|
158
|
+
d: "M21.25 9.14969C18.94 5.51969 15.56 3.42969 12 3.42969C10.22 3.42969 8.49 3.94969 6.91 4.91969C5.33 5.89969 3.91 7.32969 2.75 9.14969C1.75 10.7197 1.75 13.2697 2.75 14.8397C5.06 18.4797 8.44 20.5597 12 20.5597C13.78 20.5597 15.51 20.0397 17.09 19.0697C18.67 18.0897 20.09 16.6597 21.25 14.8397C22.25 13.2797 22.25 10.7197 21.25 9.14969ZM12 16.0397C9.76 16.0397 7.96 14.2297 7.96 11.9997C7.96 9.76969 9.76 7.95969 12 7.95969C14.24 7.95969 16.04 9.76969 16.04 11.9997C16.04 14.2297 14.24 16.0397 12 16.0397Z",
|
|
159
|
+
fill: "currentColor"
|
|
160
|
+
}
|
|
161
|
+
),
|
|
162
|
+
/* @__PURE__ */ jsx(
|
|
163
|
+
"path",
|
|
164
|
+
{
|
|
165
|
+
d: "M11.9984 9.14062C10.4284 9.14062 9.14844 10.4206 9.14844 12.0006C9.14844 13.5706 10.4284 14.8506 11.9984 14.8506C13.5684 14.8506 14.8584 13.5706 14.8584 12.0006C14.8584 10.4306 13.5684 9.14062 11.9984 9.14062Z",
|
|
166
|
+
fill: "currentColor"
|
|
167
|
+
}
|
|
168
|
+
)
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
);
|
|
172
|
+
};
|
|
173
|
+
const Editar = (props) => {
|
|
174
|
+
return /* @__PURE__ */ jsxs(
|
|
175
|
+
"svg",
|
|
176
|
+
{
|
|
177
|
+
"aria-hidden": "true",
|
|
178
|
+
fill: "none",
|
|
179
|
+
focusable: "false",
|
|
180
|
+
height: "1em",
|
|
181
|
+
role: "presentation",
|
|
182
|
+
viewBox: "0 0 20 20",
|
|
183
|
+
width: "1em",
|
|
184
|
+
...props,
|
|
185
|
+
children: [
|
|
186
|
+
/* @__PURE__ */ jsx(
|
|
187
|
+
"path",
|
|
188
|
+
{
|
|
189
|
+
d: "M11.05 3.00002L4.20835 10.2417C3.95002 10.5167 3.70002 11.0584 3.65002 11.4334L3.34169 14.1334C3.23335 15.1084 3.93335 15.775 4.90002 15.6084L7.58335 15.15C7.95835 15.0834 8.48335 14.8084 8.74168 14.525L15.5834 7.28335C16.7667 6.03335 17.3 4.60835 15.4583 2.86668C13.625 1.14168 12.2334 1.75002 11.05 3.00002Z",
|
|
190
|
+
stroke: "currentColor",
|
|
191
|
+
strokeLinecap: "round",
|
|
192
|
+
strokeLinejoin: "round",
|
|
193
|
+
strokeMiterlimit: 10,
|
|
194
|
+
strokeWidth: 1.5
|
|
195
|
+
}
|
|
196
|
+
),
|
|
197
|
+
/* @__PURE__ */ jsx(
|
|
198
|
+
"path",
|
|
199
|
+
{
|
|
200
|
+
d: "M9.90833 4.20831C10.2667 6.50831 12.1333 8.26665 14.45 8.49998",
|
|
201
|
+
stroke: "currentColor",
|
|
202
|
+
strokeLinecap: "round",
|
|
203
|
+
strokeLinejoin: "round",
|
|
204
|
+
strokeMiterlimit: 10,
|
|
205
|
+
strokeWidth: 1.5
|
|
206
|
+
}
|
|
207
|
+
),
|
|
208
|
+
/* @__PURE__ */ jsx(
|
|
209
|
+
"path",
|
|
210
|
+
{
|
|
211
|
+
d: "M2.5 18.3333H17.5",
|
|
212
|
+
stroke: "currentColor",
|
|
213
|
+
strokeLinecap: "round",
|
|
214
|
+
strokeLinejoin: "round",
|
|
215
|
+
strokeMiterlimit: 10,
|
|
216
|
+
strokeWidth: 1.5
|
|
217
|
+
}
|
|
218
|
+
)
|
|
219
|
+
]
|
|
220
|
+
}
|
|
221
|
+
);
|
|
222
|
+
};
|
|
223
|
+
const Sobre = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
224
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "M19.5,2H4.5C2.019,2,0,4.019,0,6.5v11c0,2.481,2.019,4.5,4.5,4.5h15c2.481,0,4.5-2.019,4.5-4.5V6.5c0-2.481-2.019-4.5-4.5-4.5ZM4.5,3h15c1.084,0,2.043,.506,2.686,1.283l-7.691,7.692c-.662,.661-1.557,1.025-2.497,1.025-.914-.017-1.826-.36-2.492-1.025L1.814,4.283c.643-.777,1.601-1.283,2.686-1.283Zm18.5,14.5c0,1.93-1.57,3.5-3.5,3.5H4.5c-1.93,0-3.5-1.57-3.5-3.5V6.5c0-.477,.097-.931,.271-1.346l7.528,7.528c.851,.851,1.98,1.318,3.177,1.318s2.375-.467,3.226-1.318l7.528-7.528c.174,.415,.271,.869,.271,1.346v11Z" }) });
|
|
225
|
+
};
|
|
226
|
+
const Nota = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
227
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m19.5,0H4.5C2.019,0,0,2.019,0,4.5v15c0,2.481,2.019,4.5,4.5,4.5h11.843c1.184,0,2.344-.48,3.182-1.318l3.157-3.156c.85-.85,1.318-1.98,1.318-3.183V4.5c0-2.481-2.019-4.5-4.5-4.5ZM1,19.5V4.5c0-1.93,1.57-3.5,3.5-3.5h15c1.93,0,3.5,1.57,3.5,3.5v11.5h-4.5c-1.378,0-2.5,1.121-2.5,2.5v4.5H4.5c-1.93,0-3.5-1.57-3.5-3.5Zm20.975-.682l-3.157,3.156c-.495.495-1.135.83-1.818.962v-4.436c0-.827.673-1.5,1.5-1.5h4.439c-.129.685-.46,1.315-.964,1.818ZM4,6c0-.552.448-1,1-1s1,.448,1,1-.448,1-1,1-1-.448-1-1Zm2,6c0,.552-.448,1-1,1s-1-.448-1-1,.448-1,1-1,1,.448,1,1Zm0,6c0,.552-.448,1-1,1s-1-.448-1-1,.448-1,1-1,1,.448,1,1Z" }) });
|
|
228
|
+
};
|
|
229
|
+
const LlamadaTelefonica = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
230
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m23.5,11c-.276,0-.5-.224-.5-.5,0-5.238-4.262-9.5-9.5-9.5-.276,0-.5-.224-.5-.5s.224-.5.5-.5c5.79,0,10.5,4.71,10.5,10.5,0,.276-.224.5-.5.5Zm-3.5-.5c0-3.584-2.916-6.5-6.5-6.5-.276,0-.5.224-.5.5s.224.5.5.5c3.033,0,5.5,2.467,5.5,5.5,0,.276.224.5.5.5s.5-.224.5-.5Zm2.234,11.771l.978-1.125c.508-.508.788-1.184.788-1.902s-.28-1.395-.837-1.945l-2.446-1.873c-1.048-1.048-2.753-1.049-3.803-.003l-1.532,1.494c-3.68-1.499-6.678-4.5-8.294-8.303l1.488-1.525c1.049-1.049,1.049-2.756.043-3.756l-1.959-2.543c-1.017-1.017-2.813-.993-3.78-.023l-1.174,1.024C.605,2.886,0,4.373,0,5.976c0,7.749,10.275,18.024,18.024,18.024,1.603,0,3.089-.605,4.21-1.729ZM5.909,1.446l1.959,2.543c.659.659.659,1.732-.004,2.396l-1.722,1.766c-.138.142-.18.352-.106.536,1.729,4.305,5.113,7.688,9.286,9.28.182.07.388.027.527-.108l1.766-1.722s.003-.003.004-.005c.639-.64,1.704-.681,2.44.043l2.446,1.873c.659.659.659,1.731-.023,2.416l-.979,1.125c-.908.91-2.144,1.411-3.479,1.411C10.864,23,1,13.136,1,5.976c0-1.335.501-2.571,1.387-3.456l1.175-1.025c.336-.336.779-.5,1.215-.5.419,0,.831.152,1.133.452Z" }) });
|
|
231
|
+
};
|
|
232
|
+
const Tarea = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
233
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m21.5,0c-1.379,0-2.5,1.121-2.5,2.5v11.55c0,1.068.416,2.073,1.172,2.829l.975.975c.098.098.226.146.354.146s.256-.049.354-.146l.975-.975c.756-.756,1.172-1.761,1.172-2.829V2.5c0-1.379-1.121-2.5-2.5-2.5Zm1.5,14.05c0,.802-.313,1.556-.879,2.122l-.621.621-.621-.621c-.566-.566-.879-1.32-.879-2.122V2.5c0-.827.673-1.5,1.5-1.5s1.5.673,1.5,1.5v11.55ZM3.146,5.21c-.195-.195-.195-.512,0-.707s.512-.195.707,0l1.347,1.346c.098.098.227.151.364.151s.268-.054.365-.151l2.525-2.525c.195-.195.512-.195.707,0s.195.512,0,.707l-2.525,2.525c-.287.287-.667.444-1.072.444h0c-.404,0-.785-.158-1.07-.444l-1.347-1.346Zm3.49,7.346c-.287.287-.667.444-1.072.444h0c-.404,0-.785-.158-1.07-.444l-1.347-1.346c-.195-.195-.195-.512,0-.707s.512-.195.707,0l1.347,1.346c.098.098.227.151.364.151s.268-.054.365-.151l2.525-2.525c.195-.195.512-.195.707,0s.195.512,0,.707l-2.525,2.525Zm11.363,6.444h-1V4c0-2.206-1.794-4-4-4H4C1.794,0,0,1.794,0,4v17c0,1.654,1.346,3,3,3h14c1.654,0,3-1.346,3-3,0-1.103-.897-2-2-2Zm-15,4c-1.103,0-2-.897-2-2V4c0-1.654,1.346-3,3-3h9c1.654,0,3,1.346,3,3v15H7c-1.103,0-2,.897-2,2s-.897,2-2,2Zm14,0H5.234c.476-.531.766-1.232.766-2,0-.552.448-1,1-1h11c.552,0,1,.448,1,1,0,1.103-.897,2-2,2Z" }) });
|
|
234
|
+
};
|
|
235
|
+
const Usuarios = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
236
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m7.5,13c2.481,0,4.5-2.019,4.5-4.5s-2.019-4.5-4.5-4.5-4.5,2.019-4.5,4.5,2.019,4.5,4.5,4.5Zm0-8c1.93,0,3.5,1.57,3.5,3.5s-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5,1.57-3.5,3.5-3.5Zm7.5,17.5v1c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1c0-3.584-2.916-6.5-6.5-6.5s-6.5,2.916-6.5,6.5v1c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1c0-4.136,3.364-7.5,7.5-7.5s7.5,3.364,7.5,7.5Zm9-4.637v.637c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-.637c0-3.233-2.63-5.863-5.863-5.863-1.357,0-2.485.307-3.351.91-.228.158-.539.103-.696-.124s-.103-.538.124-.696c1.037-.724,2.357-1.09,3.923-1.09,3.784,0,6.863,3.079,6.863,6.863Zm-6.5-8.863c2.481,0,4.5-2.019,4.5-4.5S19.981,0,17.5,0s-4.5,2.019-4.5,4.5,2.019,4.5,4.5,4.5Zm0-8c1.93,0,3.5,1.57,3.5,3.5s-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5,1.57-3.5,3.5-3.5Z" }) });
|
|
237
|
+
};
|
|
238
|
+
const Tickets = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
239
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Outline", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m16.5,0h-1.5c-.276,0-.5.224-.5.5,0,1.378-1.122,2.5-2.5,2.5s-2.5-1.122-2.5-2.5c0-.276-.224-.5-.5-.5h-1.5C5.019,0,3,2.019,3,4.5v15c0,2.481,2.019,4.5,4.5,4.5h1.5c.276,0,.5-.224.5-.5,0-1.378,1.122-2.5,2.5-2.5s2.5,1.122,2.5,2.5c0,.276.224.5.5.5h1.5c2.481,0,4.5-2.019,4.5-4.5V4.5c0-2.481-2.019-4.5-4.5-4.5Zm3.5,19.5c0,1.93-1.57,3.5-3.5,3.5h-1.036c-.243-1.694-1.704-3-3.464-3s-3.221,1.306-3.464,3h-1.036c-1.93,0-3.5-1.57-3.5-3.5V4.5c0-1.93,1.57-3.5,3.5-3.5h1.036c.243,1.694,1.704,3,3.464,3s3.221-1.306,3.464-3h1.036c1.93,0,3.5,1.57,3.5,3.5v15Zm-13-3c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Zm4,0c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Zm4,0c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Zm4,0c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Z" }) });
|
|
240
|
+
};
|
|
241
|
+
const Edificio = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
242
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m19.5,5h-3.5v-.5c0-2.481-2.019-4.5-4.5-4.5h-7C2.019,0,0,2.019,0,4.5v15c0,2.481,2.019,4.5,4.5,4.5h15c2.481,0,4.5-2.019,4.5-4.5v-10c0-2.481-2.019-4.5-4.5-4.5ZM1,19.5V4.5c0-1.93,1.57-3.5,3.5-3.5h7c1.93,0,3.5,1.57,3.5,3.5v18.5H4.5c-1.93,0-3.5-1.57-3.5-3.5Zm22,0c0,1.93-1.57,3.5-3.5,3.5h-3.5V6h3.5c1.93,0,3.5,1.57,3.5,3.5v10ZM7,13.5c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm0,4c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm5,0c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5ZM7,5.5c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm0,4c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm5,4c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm0-8c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm0,4c0,.276-.224.5-.5.5h-2c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h2c.276,0,.5.224.5.5Zm8,8c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Zm0-8c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Zm0,4c0,.276-.224.5-.5.5h-1c-.276,0-.5-.224-.5-.5s.224-.5.5-.5h1c.276,0,.5.224.5.5Z" }) });
|
|
243
|
+
};
|
|
244
|
+
const Cajas = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
245
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "M20,15.5c0,.276-.224,.5-.5,.5h-3c-.276,0-.5-.224-.5-.5s.224-.5,.5-.5h3c.276,0,.5,.224,.5,.5Zm4-1v6c0,1.93-1.57,3.5-3.5,3.5H3.5c-1.93,0-3.5-1.57-3.5-3.5v-6c0-1.93,1.57-3.5,3.5-3.5h1.5V3.5c0-1.93,1.57-3.5,3.5-3.5h7c1.93,0,3.5,1.57,3.5,3.5v7.5h1.5c1.93,0,3.5,1.57,3.5,3.5ZM6,11h12V3.5c0-1.379-1.121-2.5-2.5-2.5h-7c-1.379,0-2.5,1.121-2.5,2.5v7.5Zm-2.5,12H11.5V12H3.5c-1.379,0-2.5,1.121-2.5,2.5v6c0,1.379,1.121,2.5,2.5,2.5ZM23,14.5c0-1.379-1.121-2.5-2.5-2.5H12.5v11h8c1.379,0,2.5-1.121,2.5-2.5v-6Zm-15.5,.5h-3c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5h3c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5ZM14,4.5c0-.276-.224-.5-.5-.5h-3c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5h3c.276,0,.5-.224,.5-.5Z" }) });
|
|
246
|
+
};
|
|
247
|
+
const Cotizaciones = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
248
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "M5,15c0-1.103,.897-2,2-2h6.5c.276,0,.5,.224,.5,.5s-.224,.5-.5,.5H7c-.551,0-1,.449-1,1v2c0,.551,.449,1,1,1h7.5c.276,0,.5,.224,.5,.5s-.224,.5-.5,.5H7c-1.103,0-2-.897-2-2v-2Zm.5-5h4c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5H5.5c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5Zm0-4h4c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5H5.5c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5Zm11.5,17.5c0,.276-.224,.5-.5,.5H5.5c-2.481,0-4.5-2.019-4.5-4.5V4.5C1,2.019,3.019,0,5.5,0h5.515c1.735,0,3.368,.676,4.597,1.904l3.484,3.485c.824,.824,1.413,1.857,1.702,2.987,.038,.15,.005,.309-.09,.431s-.24,.193-.395,.193h-5.813c-1.379,0-2.5-1.122-2.5-2.5V1.087c-.322-.058-.651-.087-.985-.087H5.5c-1.93,0-3.5,1.57-3.5,3.5v15c0,1.93,1.57,3.5,3.5,3.5h11c.276,0,.5,.224,.5,.5ZM13,6.5c0,.827,.673,1.5,1.5,1.5h5.129c-.275-.712-.697-1.361-1.24-1.904l-3.484-3.485c-.552-.551-1.199-.97-1.904-1.243V6.5Zm8.79,10.281l-3.422-.55c-.793-.127-1.368-.803-1.368-1.605,0-.896,.729-1.626,1.626-1.626h2.8c.623,0,1.204,.335,1.517,.875,.139,.24,.445,.32,.683,.183,.239-.138,.321-.444,.183-.683-.49-.848-1.402-1.375-2.382-1.375h-.926v-1.5c0-.276-.224-.5-.5-.5s-.5,.224-.5,.5v1.5h-.874c-1.448,0-2.626,1.178-2.626,2.626,0,1.296,.93,2.387,2.21,2.593l3.422,.55c.793,.127,1.368,.803,1.368,1.605,0,.896-.729,1.626-1.626,1.626h-2.8c-.623,0-1.204-.335-1.517-.875-.139-.24-.448-.321-.683-.183-.239,.138-.321,.444-.183,.683,.49,.848,1.402,1.375,2.382,1.375h.926v1.5c0,.276,.224,.5,.5,.5s.5-.224,.5-.5v-1.5h.874c1.448,0,2.626-1.178,2.626-2.626,0-1.296-.93-2.387-2.21-2.593Z" }) });
|
|
249
|
+
};
|
|
250
|
+
const CajaDeMano = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
251
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "M5.5,10h7c1.378,0,2.5-1.121,2.5-2.5V2.5c0-1.379-1.122-2.5-2.5-2.5H5.5c-1.378,0-2.5,1.121-2.5,2.5V7.5c0,1.379,1.122,2.5,2.5,2.5Zm-1.5-7.5c0-.827,.673-1.5,1.5-1.5h7c.827,0,1.5,.673,1.5,1.5V7.5c0,.827-.673,1.5-1.5,1.5H5.5c-.827,0-1.5-.673-1.5-1.5V2.5Zm3,1c0-.276,.224-.5,.5-.5h3c.276,0,.5,.224,.5,.5s-.224,.5-.5,.5h-3c-.276,0-.5-.224-.5-.5Zm16.181,6.154c-.497-.451-1.143-.687-1.809-.651-.67,.031-1.288,.321-1.739,.817l-3.732,4.103c-.314-1.108-1.335-1.923-2.542-1.923H3.5c-1.93,0-3.5,1.57-3.5,3.5v5c0,1.93,1.57,3.5,3.5,3.5h5.965c2.706,0,5.292-1.159,7.093-3.18l6.806-7.64c.91-1.022,.828-2.604-.184-3.526Zm-.563,2.86l-6.806,7.64c-1.612,1.809-3.925,2.846-6.347,2.846H3.5c-1.378,0-2.5-1.121-2.5-2.5v-5c0-1.379,1.122-2.5,2.5-2.5H13.358c.905,0,1.642,.737,1.642,1.643,0,.812-.606,1.511-1.399,1.624l-6.161,.737c-.274,.032-.47,.281-.437,.556,.034,.273,.274,.48,.556,.437l6.171-.738c1.022-.146,1.846-.878,2.146-1.824l4.495-4.939c.272-.299,.644-.474,1.047-.492,.398-.021,.79,.121,1.088,.392,.608,.556,.658,1.507,.11,2.121Z" }) });
|
|
252
|
+
};
|
|
253
|
+
const Directorio = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
254
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m18.5,0H7.5c-1.956,0-3.624,1.254-4.243,3h-1.757c-.276,0-.5.224-.5.5s.224.5.5.5h1.528c-.018.164-.028.331-.028.5v2.5h-1.5c-.276,0-.5.224-.5.5s.224.5.5.5h1.5v3.5h-1.5c-.276,0-.5.224-.5.5s.224.5.5.5h1.5v3.5h-1.5c-.276,0-.5.224-.5.5s.224.5.5.5h1.5v2.5c0,.169.01.336.028.5h-1.528c-.276,0-.5.224-.5.5s.224.5.5.5h1.757c.619,1.746,2.287,3,4.243,3h11c2.481,0,4.5-2.019,4.5-4.5V4.5c0-2.481-2.019-4.5-4.5-4.5Zm3.5,19.5c0,1.93-1.57,3.5-3.5,3.5H7.5c-1.93,0-3.5-1.57-3.5-3.5V4.5c0-1.93,1.57-3.5,3.5-3.5h11c1.93,0,3.5,1.57,3.5,3.5v15Zm-9-7.5c1.654,0,3-1.346,3-3s-1.346-3-3-3-3,1.346-3,3,1.346,3,3,3Zm0-5c1.103,0,2,.897,2,2s-.897,2-2,2-2-.897-2-2,.897-2,2-2Zm5,11v.5c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-.5c0-2.206-1.794-4-4-4s-4,1.794-4,4v.5c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-.5c0-2.757,2.243-5,5-5s5,2.243,5,5Z" }) });
|
|
255
|
+
};
|
|
256
|
+
const Tablero = ({ fill = "currentColor", filled, size, height, width, ...props }) => {
|
|
257
|
+
return /* @__PURE__ */ jsx("svg", { fill: filled ? fill : "none", height: size || height || 16, width: size || width || 16, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "M21,7.5c0,.276-.224,.5-.5,.5h-3c-.276,0-.5-.224-.5-.5s.224-.5,.5-.5h3c.276,0,.5,.224,.5,.5Zm-.5,2.5h-3c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5h3c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5Zm0,3h-3c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5h3c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5Zm0,3h-3c-.276,0-.5,.224-.5,.5s.224,.5,.5,.5h3c.276,0,.5-.224,.5-.5s-.224-.5-.5-.5Zm3.5-8.5v9c0,2.481-2.019,4.5-4.5,4.5H4.5c-2.481,0-4.5-2.019-4.5-4.5V7.5C0,5.019,2.019,3,4.5,3h15c2.481,0,4.5,2.019,4.5,4.5Zm-1,0c0-1.93-1.57-3.5-3.5-3.5H4.5c-1.93,0-3.5,1.57-3.5,3.5v9c0,1.93,1.57,3.5,3.5,3.5h15c1.93,0,3.5-1.57,3.5-3.5V7.5Zm-8,4.5c0,3.309-2.691,6-6,6s-6-2.691-6-6,2.691-6,6-6,6,2.691,6,6Zm-6,5c1.198,0,2.284-.441,3.146-1.146l-3.207-3.207c-.283-.283-.439-.66-.439-1.061V7.051c-2.52,.255-4.5,2.364-4.5,4.949,0,2.757,2.243,5,5,5Zm5-5c0-2.586-1.98-4.694-4.5-4.949v4.535c0,.131,.054,.26,.146,.354l3.207,3.207c.706-.862,1.147-1.948,1.147-3.147Z" }) });
|
|
258
|
+
};
|
|
259
|
+
const AuditarDocumento = ({ fill = "currentColor", size, height, width, ...props }) => {
|
|
260
|
+
return /* @__PURE__ */ jsx("svg", { fill: "none", height: size || height || 24, width: size || width || 24, ...props, xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", children: /* @__PURE__ */ jsx("path", { stroke: fill, d: "m1,23V2.5c0-.827.673-1.5,1.5-1.5h9.5v7h7v.587c.347.14.679.306,1,.492v-1.786L12.707,0H2.5C1.122,0,0,1.122,0,2.5v21.5h16c-1.404,0-2.723-.364-3.87-1H1ZM13,1.707l5.293,5.293h-5.293V1.707Zm10.995,21.581l-3.417-3.417c.886-1.046,1.423-2.396,1.423-3.87,0-3.309-2.691-6-6-6s-6,2.691-6,6,2.691,6,6,6c1.475,0,2.825-.537,3.87-1.423l3.417,3.417.707-.707Zm-7.995-2.288c-2.757,0-5-2.243-5-5s2.243-5,5-5,5,2.243,5,5-2.243,5-5,5Zm3.641-6.238l-3.457,3.399c-.226.226-.523.338-.821.338s-.598-.113-.826-.341l-1.852-1.794.696-.718,1.856,1.799c.07.069.176.07.241.005l3.459-3.402.701.713Zm-9.881-3.762h-5.76v-1h6.721c-.348.306-.67.639-.96,1Zm-1.498,3c-.084.326-.151.659-.193,1h-4.069v-1h4.262Zm-4.262,4h4.262c.088.342.194.677.325,1h-4.587v-1Z" }) });
|
|
261
|
+
};
|
|
262
|
+
const RolesIcon = ({ fill = "currentColor" }) => {
|
|
263
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "m21.944,11.115l-3.287-1.09c-.102-.034-.213-.034-.314,0l-3.287,1.09c-1.229.408-2.056,1.552-2.056,2.848v3.431c0,3.613,3.868,5.83,5.054,6.423l.224.112c.07.035.146.053.224.053.063,0,.127-.012.188-.036l.231-.094c1.191-.479,5.08-2.361,5.08-6.458v-3.431c0-1.296-.826-2.44-2.056-2.848Zm1.056,6.278c0,3.469-3.408,5.11-4.454,5.53l-.022.01-.022-.011c-1.056-.528-4.501-2.489-4.501-5.528v-3.431c0-.864.551-1.627,1.37-1.898l3.13-1.038,3.13,1.038c.819.271,1.37,1.035,1.37,1.898v3.431ZM8,0C4.691,0,2,2.691,2,6s2.691,6,6,6,6-2.691,6-6S11.309,0,8,0Zm0,11c-2.757,0-5-2.243-5-5S5.243,1,8,1s5,2.243,5,5-2.243,5-5,5Zm2.972,4.093c-.093.261-.376.396-.639.305-.747-.265-1.532-.398-2.333-.398-3.859,0-7,3.14-7,7v1.5c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1.5c0-4.411,3.589-8,8-8,.914,0,1.812.153,2.667.455.26.092.396.378.305.638Z" }) });
|
|
264
|
+
};
|
|
265
|
+
const PermsIcon = ({ fill = "currentColor" }) => {
|
|
266
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "m8,12c3.309,0,6-2.691,6-6S11.309,0,8,0,2,2.691,2,6s2.691,6,6,6Zm0-11c2.757,0,5,2.243,5,5s-2.243,5-5,5-5-2.243-5-5S5.243,1,8,1Zm12.698,12.302c.391.391.391,1.024,0,1.414s-1.024.391-1.414,0-.391-1.024,0-1.414c.391-.391,1.024-.391,1.414,0Zm-1.698-3.302c-2.757,0-5,2.243-5,5,0,.428.063.858.192,1.31l-.573.588c-.092.095-.144.223-.142.355l.016,1.247h-.493c-.551,0-1,.448-1,1v1h-1c-.551,0-1,.448-1,1v1c0,.827.673,1.5,1.5,1.5h1.002c.668,0,1.296-.262,1.767-.732l3.451-3.452c.444.124.866.185,1.28.185,2.757,0,5-2.243,5-5s-2.243-5-5-5Zm0,9c-.396,0-.81-.073-1.262-.226-.184-.057-.378-.013-.513.121l-3.664,3.665c-.282.282-.66.438-1.061.439h-1.001c-.276,0-.5-.225-.5-.5v-1s1.5,0,1.5,0c.276,0,.5-.224.5-.5v-1.5h1c.134,0,.262-.054.355-.148.095-.096.146-.225.145-.358l-.02-1.547.637-.653c.132-.135.176-.333.114-.511-.155-.454-.231-.874-.231-1.282,0-2.206,1.794-4,4-4s4,1.794,4,4-1.794,4-4,4Zm-7.734-3.192c-.998-.528-2.127-.808-3.266-.808-3.86,0-7,3.141-7,7v1.5c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1.5c0-4.411,3.589-8,8-8,1.301,0,2.592.319,3.734.923.244.13.337.432.208.676-.129.244-.431.337-.676.209Z" }) });
|
|
267
|
+
};
|
|
268
|
+
const OrdersIcon = ({ fill = "currentColor" }) => {
|
|
269
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "M18.5,11c3.033,0,5.5-2.468,5.5-5.5S21.533,0,18.5,0s-5.5,2.468-5.5,5.5,2.467,5.5,5.5,5.5Zm0-10c2.481,0,4.5,2.019,4.5,4.5s-2.019,4.5-4.5,4.5-4.5-2.019-4.5-4.5,2.019-4.5,4.5-4.5Zm-.354,4.854c-.094-.094-.146-.221-.146-.354V3c0-.276,.224-.5,.5-.5s.5,.224,.5,.5v2.293l1.354,1.354c.195,.195,.195,.512,0,.707-.098,.098-.226,.146-.354,.146s-.256-.049-.354-.146l-1.5-1.5Zm-1.146,14.146c-1.103,0-2,.897-2,2s.897,2,2,2,2-.897,2-2-.897-2-2-2Zm0,3c-.551,0-1-.448-1-1s.449-1,1-1,1,.448,1,1-.449,1-1,1Zm-10-3c-1.103,0-2,.897-2,2s.897,2,2,2,2-.897,2-2-.897-2-2-2Zm0,3c-.551,0-1-.448-1-1s.449-1,1-1,1,.448,1,1-.449,1-1,1Zm15.565-10.264c-.8,1.396-2.297,2.264-3.906,2.264H6.02c.247,1.711,1.732,3,3.462,3h10.017c.276,0,.5,.224,.5,.5s-.224,.5-.5,.5H9.483c-2.234,0-4.15-1.669-4.457-3.882L3.245,2.293c-.103-.737-.742-1.293-1.486-1.293H.5c-.276,0-.5-.224-.5-.5S.224,0,.5,0H1.759c1.24,0,2.305,.927,2.476,2.155l.256,1.845h6.009c.276,0,.5,.224,.5,.5s-.224,.5-.5,.5H4.63l1.25,9h12.78c1.251,0,2.416-.675,3.039-1.762,.136-.24,.442-.321,.682-.185s.323,.442,.185,.683Z" }) });
|
|
270
|
+
};
|
|
271
|
+
const PromoIcon = ({ fill = "currentColor" }) => {
|
|
272
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "M12,24c-1.539,0-2.99-.676-3.982-1.854-.095-.113-.219-.165-.376-.155-1.528,.127-3.039-.417-4.127-1.505-1.088-1.088-1.637-2.592-1.505-4.127,.013-.147-.043-.281-.155-.375-1.179-.993-1.854-2.445-1.854-3.983s.676-2.99,1.854-3.982c.113-.095,.169-.229,.156-.376-.132-1.535,.417-3.039,1.505-4.127,1.087-1.087,2.584-1.638,4.127-1.505,.145,.012,.281-.042,.376-.155,.992-1.179,2.443-1.854,3.982-1.854s2.99,.676,3.982,1.854c.096,.113,.22,.165,.376,.155,1.521-.134,3.039,.417,4.127,1.505,1.088,1.088,1.637,2.592,1.505,4.127-.013,.147,.043,.281,.155,.375,1.179,.993,1.854,2.445,1.854,3.983s-.676,2.99-1.854,3.982c-.113,.095-.169,.229-.156,.376,.132,1.535-.417,3.039-1.505,4.127-1.087,1.087-2.582,1.64-4.127,1.505-.144-.008-.281,.043-.376,.155-.992,1.179-2.443,1.854-3.982,1.854Zm-4.314-3.012c.425,0,.819,.183,1.098,.514,.801,.952,1.974,1.498,3.217,1.498s2.416-.546,3.217-1.498c.306-.364,.757-.554,1.228-.508,1.241,.105,2.455-.337,3.334-1.216s1.322-2.094,1.216-3.335c-.04-.474,.145-.92,.509-1.226,.951-.802,1.497-1.975,1.497-3.217s-.546-2.416-1.498-3.218c-.363-.305-.548-.752-.508-1.226,.106-1.241-.337-2.456-1.216-3.335-.88-.879-2.103-1.323-3.334-1.216-.48,.04-.921-.144-1.228-.508-.801-.952-1.974-1.498-3.217-1.498s-2.416,.546-3.217,1.498c-.307,.364-.762,.547-1.228,.508-1.243-.107-2.455,.337-3.334,1.216-.879,.879-1.322,2.094-1.216,3.335,.04,.474-.145,.92-.509,1.226-.951,.802-1.497,1.975-1.497,3.217s.546,2.416,1.498,3.218c.363,.305,.548,.752,.508,1.226-.106,1.241,.337,2.456,1.216,3.335s2.099,1.318,3.334,1.216c.044-.004,.087-.006,.13-.006Zm1.314-12.988c-.552,0-1,.448-1,1s.448,1,1,1,1-.448,1-1-.448-1-1-1Zm6,6c-.552,0-1,.448-1,1s.448,1,1,1,1-.448,1-1-.448-1-1-1Zm-5.084,2.277l5-7.5c.153-.23,.091-.54-.139-.693-.228-.152-.539-.091-.693,.139l-5,7.5c-.153,.23-.091,.54,.139,.693,.085,.057,.182,.084,.277,.084,.161,0,.319-.078,.416-.223Z" }) });
|
|
273
|
+
};
|
|
274
|
+
const ProductsIcon = ({ fill = "currentColor" }) => {
|
|
275
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "M23.636,10.281l-1.197-2.236c-.439-.821-1.4-1.209-2.291-.92l-8.147,2.657L3.853,7.125c-.893-.29-1.852,.099-2.291,.92L.376,10.26c-.412,.685-.49,1.508-.213,2.258,.276,.75,.871,1.325,1.629,1.578l.21,.07-.006,3.621c0,1.941,1.235,3.658,3.077,4.272l4.862,1.621c.663,.221,1.359,.331,2.056,.331s1.393-.11,2.056-.331l4.866-1.622c1.843-.614,3.082-2.329,3.083-4.267v-3.625l.212-.071c.758-.253,1.353-.828,1.629-1.578,.277-.75,.199-1.573-.201-2.236ZM1.101,12.172c-.171-.464-.123-.973,.145-1.418l1.197-2.236c.164-.307,.48-.487,.813-.487,.095,0,.191,.015,.286,.046l7.719,2.517-1.972,3.635c-.387,.645-1.156,.931-1.867,.69l-5.313-1.771c-.469-.156-.836-.512-1.008-.975Zm10.384,10.816c-.419-.038-.833-.124-1.233-.258l-4.862-1.621c-1.433-.478-2.395-1.812-2.394-3.322l.005-3.288,4.104,1.368c.274,.091,.553,.135,.827,.135,.89,0,1.735-.463,2.225-1.279l1.334-2.457-.006,10.722Zm9.511-5.197c0,1.507-.965,2.84-2.399,3.317l-4.866,1.622c-.404,.135-.823,.221-1.246,.259l.006-10.758,1.362,2.51c.48,.802,1.323,1.261,2.212,1.261,.275,0,.555-.044,.829-.135l4.102-1.367v3.291Zm1.903-5.619c-.172,.463-.539,.818-1.008,.975l-5.313,1.771c-.715,.239-1.481-.047-1.856-.672l-1.982-3.653,7.719-2.517c.428-.141,.889,.048,1.1,.441l1.209,2.258c.256,.424,.304,.933,.133,1.396ZM4.759,5.851c-.193-.196-.191-.514,.006-.707L9.547,.437c.58-.582,1.532-.583,2.118,.003l1.885,1.885c.568-.508,1.515-.493,2.063,.055l2.754,2.753c.195,.195,.195,.512,0,.707-.195,.195-.512,.195-.707,0l-2.754-2.753c-.195-.195-.512-.195-.707,0l-4.349,4.27c-.098,.096-.225,.144-.351,.144-.13,0-.259-.05-.356-.149-.193-.197-.19-.514,.006-.707l3.686-3.619-1.878-1.878c-.195-.195-.512-.195-.707,0L5.466,5.856c-.098,.096-.224,.144-.351,.144-.129,0-.259-.05-.356-.149Z" }) });
|
|
276
|
+
};
|
|
277
|
+
const ClientsIcon = ({ fill = "currentColor" }) => {
|
|
278
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: fill, strokeWidth: "1", children: [
|
|
279
|
+
/* @__PURE__ */ jsx("path", { d: "m12,13c1.654,0,3-1.346,3-3s-1.346-3-3-3-3,1.346-3,3,1.346,3,3,3Zm0-5c1.103,0,2,.897,2,2s-.897,2-2,2-2-.897-2-2,.897-2,2-2Z" }),
|
|
280
|
+
/* @__PURE__ */ jsx("path", { d: "m12,15c-1.967,0-3.663,1.474-3.944,3.429-.04.273.15.526.423.566.274.039.527-.15.566-.424.212-1.466,1.482-2.571,2.955-2.571s2.743,1.105,2.955,2.571c.036.249.25.429.494.429.023,0,.048-.002.072-.005.273-.04.463-.293.423-.566-.282-1.955-1.978-3.429-3.944-3.429Z" }),
|
|
281
|
+
/* @__PURE__ */ jsx("path", { d: "m15.716,14.29c.402-.192.834-.29,1.284-.29,1.473,0,2.743,1.105,2.955,2.571.036.249.25.429.494.429.023,0,.048-.002.072-.005.273-.04.463-.293.423-.566-.282-1.955-1.978-3.429-3.944-3.429-.6,0-1.177.131-1.716.388-.249.119-.354.418-.235.667.119.249.417.353.667.235Z" }),
|
|
282
|
+
/* @__PURE__ */ jsx("path", { d: "m8.666,13.388c-.539-.257-1.116-.388-1.716-.388-1.967,0-3.663,1.474-3.944,3.429-.04.273.15.526.423.566.024.003.048.005.072.005.245,0,.458-.18.494-.429.212-1.466,1.482-2.571,2.955-2.571.45,0,.882.098,1.284.29.25.118.548.014.667-.235s.014-.548-.235-.667Z" }),
|
|
283
|
+
/* @__PURE__ */ jsx("path", { d: "m15.8,6.399c.348-.261.763-.399,1.2-.399,1.103,0,2,.897,2,2,0,.948-.673,1.772-1.6,1.96-.271.055-.445.319-.391.59.048.237.257.4.49.4.033,0,.066-.003.1-.01,1.391-.282,2.4-1.519,2.4-2.94,0-1.654-1.346-3-3-3-.655,0-1.277.208-1.8.601-.221.165-.265.479-.1.699.167.222.481.269.7.1Z" }),
|
|
284
|
+
/* @__PURE__ */ jsx("path", { d: "m4,8c0,1.422,1.01,2.658,2.4,2.94.034.007.067.01.1.01.233,0,.441-.163.49-.4.055-.271-.12-.535-.391-.59-.927-.188-1.6-1.012-1.6-1.96,0-1.103.897-2,2-2,.437,0,.852.139,1.2.399.221.168.535.122.7-.1.166-.221.121-.534-.1-.699-.523-.393-1.146-.601-1.8-.601-1.654,0-3,1.346-3,3Z" }),
|
|
285
|
+
/* @__PURE__ */ jsx("path", { d: "m.5,7c.276,0,.5-.224.5-.5v-2c0-1.93,1.57-3.5,3.5-3.5h2c.276,0,.5-.224.5-.5s-.224-.5-.5-.5h-2C2.019,0,0,2.019,0,4.5v2c0,.276.224.5.5.5Z" }),
|
|
286
|
+
/* @__PURE__ */ jsx("path", { d: "m6.5,23h-2c-1.93,0-3.5-1.57-3.5-3.5v-2c0-.276-.224-.5-.5-.5s-.5.224-.5.5v2c0,2.481,2.019,4.5,4.5,4.5h2c.276,0,.5-.224.5-.5s-.224-.5-.5-.5Z" }),
|
|
287
|
+
/* @__PURE__ */ jsx("path", { d: "m23.5,17c-.276,0-.5.224-.5.5v2c0,1.93-1.57,3.5-3.5,3.5h-2c-.276,0-.5.224-.5.5s.224.5.5.5h2c2.481,0,4.5-2.019,4.5-4.5v-2c0-.276-.224-.5-.5-.5Z" }),
|
|
288
|
+
/* @__PURE__ */ jsx("path", { d: "m19.5,0h-2c-.276,0-.5.224-.5.5s.224.5.5.5h2c1.93,0,3.5,1.57,3.5,3.5v2c0,.276.224.5.5.5s.5-.224.5-.5v-2c0-2.481-2.019-4.5-4.5-4.5Z" })
|
|
289
|
+
] });
|
|
290
|
+
};
|
|
291
|
+
const EyeIcon = () => {
|
|
292
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", className: "h-4.5 w-4.5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
|
|
293
|
+
/* @__PURE__ */ jsx("path", { d: "M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12Z" }),
|
|
294
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
295
|
+
] });
|
|
296
|
+
};
|
|
297
|
+
const PencilIcon = () => {
|
|
298
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", className: "h-4.5 w-4.5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
|
|
299
|
+
/* @__PURE__ */ jsx("path", { d: "M12 20h9" }),
|
|
300
|
+
/* @__PURE__ */ jsx("path", { d: "M16.5 3.5a2.1 2.1 0 1 1 3 3L7 19l-4 1 1-4 12.5-12.5Z" })
|
|
301
|
+
] });
|
|
302
|
+
};
|
|
303
|
+
const TrashIcon = ({ clase }) => {
|
|
304
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", className: `${clase} h-4.5 w-4.5`, strokeWidth: "2", children: [
|
|
305
|
+
/* @__PURE__ */ jsx("path", { d: "M3 6h18" }),
|
|
306
|
+
/* @__PURE__ */ jsx("path", { d: "M8 6V4h8v2" }),
|
|
307
|
+
/* @__PURE__ */ jsx("path", { d: "M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6" })
|
|
308
|
+
] });
|
|
309
|
+
};
|
|
310
|
+
const DashboardIcon = () => {
|
|
311
|
+
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx("path", { d: "M3 13h8V3H3zM13 21h8v-8h-8zM13 3v8h8V3zM3 21h8v-4H3z" }) });
|
|
312
|
+
};
|
|
313
|
+
const UserIcon = () => {
|
|
314
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
|
|
315
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "8", r: "4" }),
|
|
316
|
+
/* @__PURE__ */ jsx("path", { d: "M6 20a6 6 0 0 1 12 0" })
|
|
317
|
+
] });
|
|
318
|
+
};
|
|
319
|
+
const UsersIcon = () => {
|
|
320
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", id: "Layer_1", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "1", children: /* @__PURE__ */ jsx("path", { d: "m7.5,13c2.481,0,4.5-2.019,4.5-4.5s-2.019-4.5-4.5-4.5-4.5,2.019-4.5,4.5,2.019,4.5,4.5,4.5Zm0-8c1.93,0,3.5,1.57,3.5,3.5s-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5,1.57-3.5,3.5-3.5Zm7.5,17.5v1c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1c0-3.584-2.916-6.5-6.5-6.5s-6.5,2.916-6.5,6.5v1c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-1c0-4.136,3.364-7.5,7.5-7.5s7.5,3.364,7.5,7.5Zm9-4.637v.637c0,.276-.224.5-.5.5s-.5-.224-.5-.5v-.637c0-3.233-2.63-5.863-5.863-5.863-1.357,0-2.485.307-3.351.91-.228.158-.539.103-.696-.124s-.103-.538.124-.696c1.037-.724,2.357-1.09,3.923-1.09,3.784,0,6.863,3.079,6.863,6.863Zm-6.5-8.863c2.481,0,4.5-2.019,4.5-4.5S19.981,0,17.5,0s-4.5,2.019-4.5,4.5,2.019,4.5,4.5,4.5Zm0-8c1.93,0,3.5,1.57,3.5,3.5s-1.57,3.5-3.5,3.5-3.5-1.57-3.5-3.5,1.57-3.5,3.5-3.5Z" }) });
|
|
321
|
+
};
|
|
322
|
+
const LogoutIcon = () => {
|
|
323
|
+
return /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
|
|
324
|
+
/* @__PURE__ */ jsx("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
325
|
+
/* @__PURE__ */ jsx("path", { d: "M16 17l5-5-5-5" }),
|
|
326
|
+
/* @__PURE__ */ jsx("path", { d: "M21 12H9" })
|
|
327
|
+
] });
|
|
328
|
+
};
|
|
329
|
+
const MenuIcon = () => {
|
|
330
|
+
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx("path", { d: "M4 6h16M4 12h16M4 18h16" }) });
|
|
331
|
+
};
|
|
332
|
+
const CloseIcon = () => {
|
|
333
|
+
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", className: "h-5 w-5", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx("path", { d: "M6 6l12 12M18 6L6 18" }) });
|
|
334
|
+
};
|
|
335
|
+
const ChevronLeftRightIcon = ({ collapsed }) => {
|
|
336
|
+
return /* @__PURE__ */ jsxs(
|
|
337
|
+
"svg",
|
|
338
|
+
{
|
|
339
|
+
viewBox: "0 0 24 24",
|
|
340
|
+
className: `h-5 w-5 transition-transform ${collapsed ? "rotate-180" : ""}`,
|
|
341
|
+
fill: "none",
|
|
342
|
+
stroke: "currentColor",
|
|
343
|
+
strokeWidth: "2",
|
|
344
|
+
children: [
|
|
345
|
+
/* @__PURE__ */ jsx("path", { d: "M9 18l-6-6 6-6" }),
|
|
346
|
+
/* @__PURE__ */ jsx("path", { d: "M15 6l6 6-6 6" })
|
|
347
|
+
]
|
|
348
|
+
}
|
|
349
|
+
);
|
|
350
|
+
};
|
|
351
|
+
const MenuPuntosVerticalIcon = () => {
|
|
352
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", className: "h-4.5 w-4.5", fill: "currentColor", children: [
|
|
353
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "2", r: "2" }),
|
|
354
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2" }),
|
|
355
|
+
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "22", r: "2" })
|
|
356
|
+
] });
|
|
357
|
+
};
|
|
358
|
+
const ContraseniaDeEmailIcon = () => {
|
|
359
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", "data-name": "Layer 1", viewBox: "0 0 24 24", className: "h-4.5 w-4.5", fill: "currentColor", children: /* @__PURE__ */ jsx("path", { d: "M22.294 9.412a1 1 0 0 0-.71-.303.96.96 0 0 0-.714.293l-6.719 6.719c-1.131 1.129-3.114 1.129-4.243 0L3.141 9.353a1 1 0 0 0-.707-.293h-.005a1 1 0 0 0-.709.3A5.97 5.97 0 0 0 0 13.559V19c0 2.757 2.243 5 5 5h14c2.757 0 5-2.243 5-5v-5.408a5.97 5.97 0 0 0-1.706-4.18M22 19c0 1.654-1.346 3-3 3H5c-1.654 0-3-1.346-3-3v-5.441c0-.706.185-1.386.531-1.986l5.963 5.964c.943.941 2.199 1.46 3.536 1.46s2.593-.52 3.535-1.462l5.912-5.912c.341.596.523 1.271.523 1.968zM6 9h2.655l2.281 1.883a1.694 1.694 0 0 0 2.15.006L15.4 9H18a3 3 0 0 0 3-3V3a3 3 0 0 0-3-3H6a3 3 0 0 0-3 3v3a3 3 0 0 0 3 3m9.601-5.234a.8.8 0 0 1 1.131-1.131l.735.735.735-.735a.8.8 0 0 1 1.131 1.131l-.734.734.734.734a.8.8 0 0 1-1.13 1.131l-.735-.735-.735.735a.796.796 0 0 1-1.13 0 .8.8 0 0 1 0-1.131l.734-.734-.734-.734Zm-5.53 0a.8.8 0 0 1 1.131-1.132l.734.734.734-.734a.8.8 0 0 1 1.131 1.132l-.734.734.734.734a.802.802 0 0 1-.565 1.366.8.8 0 0 1-.565-.234l-.734-.734-.734.734a.796.796 0 0 1-1.13 0 .8.8 0 0 1 0-1.132l.734-.734-.734-.734Zm-5.495 0a.8.8 0 0 1 1.131-1.132l.734.734.734-.734a.8.8 0 0 1 1.131 1.132l-.734.734.734.734A.802.802 0 0 1 7.741 6.6a.8.8 0 0 1-.565-.234l-.734-.734-.734.734a.796.796 0 0 1-1.13 0 .8.8 0 0 1 0-1.132l.734-.734-.734-.734Z" }) });
|
|
360
|
+
};
|
|
361
|
+
const UsuarioProhibidoIcon = ({ clase }) => {
|
|
362
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", "data-name": "Layer 1", viewBox: "0 0 24 24", className: `${clase} h-4.5 w-4.5`, children: /* @__PURE__ */ jsx("path", { d: "M22.251 22.229A5.98 5.98 0 0 0 24 18c0-3.309-2.691-6-6-6a6.01 6.01 0 0 0-6 6c0 3.309 2.691 6 6 6 1.66 0 3.165-.679 4.251-1.771M22 18c0 .74-.216 1.424-.567 2.019l-5.452-5.453A3.96 3.96 0 0 1 18 13.999c2.206 0 4 1.794 4 4Zm-8 0c0-.74.216-1.424.567-2.019l5.452 5.453a3.96 3.96 0 0 1-2.019.567c-2.206 0-4-1.794-4-4Zm-5-6c3.309 0 6-2.691 6-6s-2.691-6-6-6-6 2.691-6 6 2.691 6 6 6M9 2c2.206 0 4 1.794 4 4s-1.794 4-4 4-4-1.794-4-4 1.794-4 4-4m1.992 13.187a.996.996 0 0 1-1.116.868A7 7 0 0 0 9 16.001c-3.859 0-7 3.14-7 7a1 1 0 1 1-2 0c0-4.962 4.037-9 9-9 .377 0 .755.023 1.124.07a1 1 0 0 1 .868 1.117Z" }) });
|
|
363
|
+
};
|
|
364
|
+
const MarketingDigital = ({ fill = "currentColor" }) => {
|
|
365
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
366
|
+
/* @__PURE__ */ jsx("path", { d: "M401 452.5c-6.075 0-11 4.925-11 11v7.5c0 10.477-8.523 19-19 19H141c-10.477 0-19-8.523-19-19V351c0-6.075-4.925-11-11-11s-11 4.925-11 11v120c0 22.607 18.393 41 41 41h230c22.607 0 41-18.393 41-41v-7.5c0-6.075-4.925-11-11-11m0-225c-6.075 0-11 4.925-11 11v35c0 6.075 4.925 11 11 11s11-4.925 11-11v-35c0-6.076-4.925-11-11-11M371 0H141c-22.607 0-41 18.393-41 41v120c0 6.075 4.925 11 11 11s11-4.925 11-11V41c0-10.477 8.523-19 19-19h49.573l12.492 37.479a11 11 0 0 0 10.436 7.522h85c4.734 0 8.938-3.03 10.436-7.521L321.428 22H371c10.477 0 19 8.523 19 19v7.5c0 6.075 4.925 11 11 11s11-4.925 11-11V41c0-22.607-18.393-41-41-41m-80.429 45h-69.143l-7.667-23h84.476z" }),
|
|
367
|
+
/* @__PURE__ */ jsx("path", { d: "M271 467c6.075 0 11-4.925 11-11s-4.925-11-11-11h-30c-6.075 0-11 4.925-11 11s4.925 11 11 11zm127.153-272.375a11 11 0 0 0 5.694 0c11.407-3.057 31.038-18.449 40.969-35.65 12.682-21.965 5.853-41.393-6.541-50.902-11.085-8.506-25.583-9.257-37.274-2.699-11.692-6.559-26.19-5.807-37.274 2.699-12.394 9.51-19.223 28.938-6.541 50.902 9.929 17.201 29.56 32.593 40.967 35.65m-21.035-69.099c2.024-1.553 4.622-2.548 7.371-2.548 2.908 0 5.986 1.114 8.732 3.861 4.297 4.296 11.26 4.296 15.557 0 5.343-5.342 11.938-4.508 16.104-1.312 6.006 4.609 6.336 13.001.881 22.449-6.191 10.725-18.099 20.664-24.763 24.194-6.664-3.53-18.571-13.469-24.763-24.194-5.455-9.449-5.125-17.841.881-22.45m-225.276 98.589c1.354-5.761-2.106-11.594-7.862-13.136-5.865-1.574-11.9 1.91-13.472 7.778l-1.427 5.326h-19.065c1.334-5.75-2.124-11.565-7.869-13.104-5.865-1.574-11.899 1.91-13.472 7.778l-1.427 5.326h-5.039c-6.075 0-11 4.925-11 11 0 5.79 4.474 10.535 10.153 10.968l-5.323 19.865H71c-6.075 0-11 4.925-11 11 0 5.792 4.477 10.539 10.159 10.968-1.354 5.761 2.106 11.593 7.862 13.136.953.256 1.911.378 2.854.378 4.856 0 9.302-3.242 10.618-8.156l1.427-5.326h19.064c-1.333 5.75 2.124 11.565 7.87 13.104.953.256 1.911.378 2.854.378 4.856 0 9.302-3.242 10.618-8.156l1.427-5.326h5.039c6.075 0 11-4.925 11-11 0-5.79-4.473-10.535-10.152-10.968l5.323-19.865H151c6.075 0 11-4.925 11-11 0-5.791-4.476-10.538-10.158-10.968m-33.97 41.802H98.815l5.314-19.833h19.057zm292.236 94.45-9.798-4.059c-3.559-1.474-5.32-5.726-3.846-9.286.719-1.735 2.087-3.094 3.854-3.825s3.695-.739 5.431-.02l4.898 2.029c5.61 2.324 12.046-.34 14.372-5.953 2.325-5.612-.34-12.047-5.952-14.373l-4.899-2.029a29 29 0 0 0-2.168-.8V318.5c0-6.075-4.925-11-11-11s-11 4.925-11 11v5.237a28.86 28.86 0 0 0-13.861 14.867c-6.141 14.827.926 31.887 15.753 38.028l9.798 4.059c1.735.719 3.094 2.087 3.825 3.854s.739 3.695.02 5.432c-.719 1.735-2.087 3.093-3.854 3.825-1.766.731-3.693.739-5.431.02l-4.899-2.029c-5.608-2.326-12.047.339-14.372 5.953s.341 12.047 5.954 14.372l4.899 2.029q1.074.444 2.168.8v3.552c0 6.075 4.925 11 11 11s11-4.925 11-11v-5.238a28.85 28.85 0 0 0 13.859-14.866c2.969-7.165 2.962-15.073-.019-22.269s-8.567-12.792-15.732-15.759" }),
|
|
368
|
+
/* @__PURE__ */ jsx("path", { d: "M111 155c-55.691 0-101 45.309-101 101s45.309 101 101 101c17.246 0 34.129-4.386 49.094-12.72l31.789 5.331a11 11 0 0 0 12.672-12.645l-5.277-31.866C207.613 290.134 212 273.25 212 256c0-55.691-45.309-101-101-101m65.924 149.777 3.41 20.59-20.529-3.443a11 11 0 0 0-7.57 1.472C139.856 330.987 125.599 335 111 335c-43.561 0-79-35.439-79-79s35.439-79 79-79 79 35.439 79 79c0 14.598-4.012 28.854-11.601 41.229a11 11 0 0 0-1.475 7.548m130.521-80.313a11 11 0 0 0 12.672 12.645l31.789-5.331c14.965 8.333 31.848 12.72 49.094 12.72 55.691 0 101-45.309 101-101s-45.309-101-101-101-101 45.309-101 101c0 17.25 4.387 34.134 12.723 49.099zM401 64.5c43.561 0 79 35.439 79 79s-35.439 79-79 79c-14.599 0-28.856-4.013-41.234-11.604a11 11 0 0 0-7.57-1.472l-20.529 3.442 3.41-20.589a11 11 0 0 0-1.476-7.548C326.012 172.354 322 158.098 322 143.5c0-43.561 35.439-79 79-79m0 203c-17.246 0-34.129 4.386-49.094 12.72l-31.789-5.331a11 11 0 0 0-12.672 12.645l5.277 31.866C304.387 334.366 300 351.25 300 368.5c0 55.691 45.309 101 101 101s101-45.309 101-101-45.309-101-101-101m0 180c-43.561 0-79-35.439-79-79 0-14.598 4.012-28.854 11.601-41.229a11 11 0 0 0 1.476-7.548l-3.41-20.59 20.529 3.443a11 11 0 0 0 7.57-1.472C372.144 293.513 386.401 289.5 401 289.5c43.561 0 79 35.439 79 79s-35.439 79-79 79" }),
|
|
369
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
370
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
371
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
372
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
373
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
374
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
375
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
376
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
377
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
378
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
379
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
380
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
381
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
382
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
383
|
+
/* @__PURE__ */ jsx("g", {})
|
|
384
|
+
] });
|
|
385
|
+
};
|
|
386
|
+
const Retroalimentacion = ({ fill = "currentColor" }) => {
|
|
387
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
388
|
+
/* @__PURE__ */ jsx("path", { d: "M51.667 265.987a11 11 0 0 1-10.998-11v-39.83h-9.332c-17.276 0-31.332-14.055-31.332-31.332V61.834c0-17.276 14.056-31.332 31.332-31.332h164.688c6.075 0 11 4.925 11 11s-4.925 11-11 11H31.336c-5.145 0-9.332 4.187-9.332 9.332v121.992c0 5.146 4.187 9.332 9.332 9.332h20.332c6.075 0 11 4.925 11 11v27.345l42.954-35.795a11 11 0 0 1 7.042-2.55h83.361c6.075 0 11 4.925 11 11s-4.925 11-11 11h-79.378l-57.936 48.28a11 11 0 0 1-7.044 2.549m71.163 195.187c-2.815 0-5.63-1.074-7.778-3.222l-47.483-47.483c-15.51-15.51-15.51-40.747 0-56.257 7.513-7.513 17.502-11.651 28.128-11.651 10.163 0 19.744 3.786 27.133 10.69 7.389-6.904 16.97-10.69 27.133-10.69 10.626 0 20.615 4.138 28.128 11.652 15.51 15.51 15.51 40.746 0 56.256l-47.483 47.483a10.97 10.97 0 0 1-7.778 3.222M95.697 364.56c-4.749 0-9.214 1.85-12.572 5.207-6.932 6.933-6.932 18.212 0 25.144l39.705 39.706 39.705-39.706c6.932-6.932 6.932-18.211 0-25.144a17.66 17.66 0 0 0-12.572-5.208c-4.749 0-9.214 1.85-12.572 5.208l-6.783 6.783c-4.296 4.296-11.261 4.296-15.557 0l-6.783-6.783a17.66 17.66 0 0 0-12.571-5.207m306.541-68.075h-78.065a31.23 31.23 0 0 1-17.38-5.263l-22.604-15.069h-27.168c-6.075 0-11-4.925-11-11V143.161c0-6.075 4.925-11 11-11h27.168l18.673-12.448a9.31 9.31 0 0 0 4.155-7.765V61.834c0-6.075 4.925-11 11-11h10.166c28.488 0 51.664 23.176 51.664 51.664v29.664h39.818c12.592 0 24.355 5.616 32.271 15.409s10.944 22.471 8.305 34.784l-17.427 81.328c-4.072 19.006-21.137 32.802-40.576 32.802m-134.217-42.332h19.498c2.172 0 4.295.643 6.102 1.848l25.375 16.917a9.3 9.3 0 0 0 5.177 1.567h78.065c9.133 0 17.151-6.482 19.065-15.413l17.427-81.328a19.41 19.41 0 0 0-3.902-16.343 19.41 19.41 0 0 0-15.163-7.24h-50.818c-6.075 0-11-4.925-11-11v-40.664c0-16.078-12.857-29.209-28.83-29.652v39.102a31.27 31.27 0 0 1-13.952 26.07l-21.444 14.295a11 11 0 0 1-6.102 1.848h-19.498z" }),
|
|
389
|
+
/* @__PURE__ */ jsx("path", { d: "M470.51 0H226.52c-22.88 0-41.5 18.62-41.5 41.5v245.18H31.34C14.06 286.68 0 300.74 0 318.02v162.65C0 497.95 14.06 512 31.34 512h182.98c17.28 0 31.34-14.05 31.34-31.33v-16.35l48.28-57.93a11.01 11.01 0 0 0 1.51-11.71c-1.81-3.87-5.7-6.34-9.96-6.34h-39.83v-41.03h122.35v50c0 4.45 2.68 8.46 6.79 10.16 1.36.57 2.79.84 4.21.84 2.86 0 5.68-1.12 7.78-3.22l57.77-57.78h25.95c22.88 0 41.49-18.61 41.49-41.49V41.5C512 18.62 493.39 0 470.51 0M262 410.34l-35.79 42.96a10.97 10.97 0 0 0-2.55 7.04v20.33c0 5.15-4.19 9.33-9.34 9.33H31.34c-5.15 0-9.34-4.18-9.34-9.33V318.02c0-5.15 4.19-9.34 9.34-9.34h153.78c1.41 20.61 17.93 37.12 38.54 38.53v52.13c0 6.08 4.92 11 11 11zm228-104.52c0 10.75-8.74 19.49-19.49 19.49h-30.5c-2.92 0-5.72 1.16-7.78 3.23l-42.22 42.21v-34.44c0-6.07-4.92-11-11-11H226.52c-10.75 0-19.5-8.74-19.5-19.49V41.5c0-10.75 8.75-19.5 19.5-19.5h243.99C481.26 22 490 30.75 490 41.5z" })
|
|
390
|
+
] });
|
|
391
|
+
};
|
|
392
|
+
const Calendario = ({ fill = "currentColor" }) => {
|
|
393
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
394
|
+
/* @__PURE__ */ jsx("path", { d: "M127.03 305.926H92.929c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.485 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518zm180.121 81.137h-34.101c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.485 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518zm180.121 81.137h-34.101c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.484 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518zM127.03 443.32H92.929c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.485 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518zM419.07 443.32h-34.101c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.484 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518zM273.05 443.32h-34.101c-19.033 0-34.518-15.485-34.518-34.518v-34.101c0-19.033 15.485-34.518 34.518-34.518h34.101c19.033 0 34.518 15.485 34.518 34.518v34.101c0 19.033-15.485 34.518-34.518 34.518m-34.101-81.137c-6.902 0-12.518 5.616-12.518 12.518v34.101c0 6.902 5.616 12.518 12.518 12.518h34.101c6.902 0 12.518-5.616 12.518-12.518v-34.101c0-6.902-5.616-12.518-12.518-12.518z" }),
|
|
395
|
+
/* @__PURE__ */ jsx("path", { d: "M461.163 39.277H436.15c-.647-20.816-17.77-37.553-38.74-37.553s-38.093 16.738-38.74 37.553H153.329c-.647-20.816-17.77-37.553-38.74-37.553s-38.093 16.738-38.74 37.553H50.837C22.806 39.277 0 62.083 0 90.115v369.324c0 28.032 22.806 50.837 50.837 50.837h410.325c28.032 0 50.837-22.806 50.837-50.837V90.115c.001-28.032-22.805-50.838-50.836-50.838m-80.524 1.218c0-9.247 7.523-16.771 16.771-16.771s16.771 7.523 16.771 16.771v25.566c0 9.248-7.523 16.771-16.771 16.771s-16.771-7.523-16.771-16.771zm-282.821 0c0-9.247 7.523-16.771 16.771-16.771s16.771 7.523 16.771 16.771v25.566c0 9.248-7.523 16.771-16.771 16.771s-16.771-7.523-16.771-16.771zM22 90.115c0-15.901 12.937-28.837 28.837-28.837h24.981v4.783c0 21.378 17.393 38.771 38.771 38.771s38.771-17.393 38.771-38.771v-4.783h205.279v4.783c0 21.378 17.393 38.771 38.771 38.771s38.771-17.393 38.771-38.771v-4.783h24.981c15.901 0 28.837 12.937 28.837 28.837v45.719H22zm439.163 398.161H50.837c-15.9 0-28.837-12.937-28.837-28.838V157.833h468v301.605c0 15.901-12.937 28.838-28.837 28.838" }),
|
|
396
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
397
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
398
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
399
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
400
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
401
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
402
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
403
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
404
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
405
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
406
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
407
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
408
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
409
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
410
|
+
/* @__PURE__ */ jsx("g", {})
|
|
411
|
+
] });
|
|
412
|
+
};
|
|
413
|
+
const MediosDeComunicacionSocial = ({ fill = "currentColor" }) => {
|
|
414
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 519 519", className: "h-6 w-6", fill, children: [
|
|
415
|
+
/* @__PURE__ */ jsx("path", { d: "M401.083 190.962h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11m0 42h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11m0-82h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11m0 236.936h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11m0 42h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11m0-82h-90.5c-6.075 0-11-4.925-11-11s4.925-11 11-11h90.5c6.075 0 11 4.925 11 11s-4.925 11-11 11" }),
|
|
416
|
+
/* @__PURE__ */ jsx("path", { d: "m279.69 383.28-16.02-16.02c-4.79-4.79-11.31-6.84-17.58-6.13-6.28-10.01-17.45-16.61-29.81-16.61-11.01 0-20.95 5.11-27.41 13.18l-12.23-12.23c-4.04-4.04-9.43-6.27-15.16-6.27s-11.11 2.23-15.16 6.27l-34.18 34.18c-4.3 4.3-4.3 11.27 0 15.56 4.29 4.3 11.26 4.3 15.55 0l33.79-33.79 22.94 22.94 15.91 15.91-38.42 38.43c-4.3 4.3-4.3 11.26 0 15.56a10.98 10.98 0 0 0 7.78 3.22c2.81 0 5.63-1.08 7.77-3.22l71.05-71.05 15.63 15.63c4.29 4.29 11.26 4.29 15.55 0 4.3-4.3 4.3-11.26 0-15.56m-63.8 1.44-11.21-11.21a13.13 13.13 0 0 1 11.6-6.99c4.74 0 9.01 2.59 11.32 6.49z" }),
|
|
417
|
+
/* @__PURE__ */ jsx("path", { d: "M254.917 457.479h-118c-15.439 0-28-12.561-28-28v-99c0-15.439 12.561-28 28-28h118c15.439 0 28 12.561 28 28v99c0 15.439-12.561 28-28 28m-118-133c-3.309 0-6 2.691-6 6v99c0 3.309 2.691 6 6 6h118c3.309 0 6-2.691 6-6v-99c0-3.309-2.691-6-6-6z" }),
|
|
418
|
+
/* @__PURE__ */ jsx("path", { d: "m279.69 183.45-16.02-16.03c-4.79-4.79-11.31-6.83-17.58-6.12-6.28-10.01-17.45-16.61-29.81-16.61-11 0-20.94 5.1-27.42 13.17l-12.22-12.22c-4.04-4.05-9.43-6.28-15.16-6.28s-11.11 2.23-15.16 6.28l-34.18 34.18c-4.3 4.3-4.3 11.26 0 15.56 4.29 4.29 11.26 4.29 15.55 0l33.79-33.79 38.85 38.85-38.42 38.43c-4.3 4.29-4.3 11.26 0 15.55 2.14 2.15 4.96 3.23 7.78 3.23 2.81 0 5.63-1.08 7.77-3.23l46.21-46.2.07-.07 24.11-24.12.66-.65L264.14 199c4.29 4.3 11.26 4.3 15.55 0 4.3-4.29 4.3-11.26 0-15.55m-63.8 1.43-11.21-11.2a13.11 13.11 0 0 1 11.6-6.99c4.74 0 9 2.59 11.32 6.48z" }),
|
|
419
|
+
/* @__PURE__ */ jsx("path", { d: "M254.917 257.646h-118c-15.439 0-28-12.561-28-28v-99c0-15.439 12.561-28 28-28h118c15.439 0 28 12.561 28 28v99c0 15.439-12.561 28-28 28m-118-133c-3.309 0-6 2.691-6 6v99c0 3.309 2.691 6 6 6h118c3.309 0 6-2.691 6-6v-99c0-3.309-2.691-6-6-6z" }),
|
|
420
|
+
/* @__PURE__ */ jsx("path", { d: "M423.8 0H95.2C80.31 0 68.21 12.11 68.21 26.99v465.02c0 14.88 12.1 26.99 26.99 26.99h328.6c14.89 0 26.99-12.11 26.99-26.99V26.99C450.79 12.11 438.69 0 423.8 0m4.99 26.99V47.6h-284.2V22H423.8c2.75 0 4.99 2.24 4.99 4.99m-338.58 0c0-2.75 2.24-4.99 4.99-4.99h27.39v25.6H90.21zm338.58 465.02c0 2.75-2.24 4.99-4.99 4.99H95.2c-2.75 0-4.99-2.24-4.99-4.99V69.6h338.58z" }),
|
|
421
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
422
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
423
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
424
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
425
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
426
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
427
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
428
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
429
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
430
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
431
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
432
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
433
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
434
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
435
|
+
/* @__PURE__ */ jsx("g", {})
|
|
436
|
+
] });
|
|
437
|
+
};
|
|
438
|
+
const Imagenes = ({ fill = "currentColor" }) => {
|
|
439
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
440
|
+
/* @__PURE__ */ jsx("path", { d: "m292.491 144.786-70.105-40.476c-7.494-4.326-16.442-4.327-23.937 0-7.493 4.327-11.968 12.076-11.968 20.729v80.951c0 8.654 4.475 16.403 11.969 20.73 3.747 2.163 7.857 3.245 11.968 3.245s8.221-1.082 11.968-3.245l70.104-40.476c7.495-4.326 11.97-12.076 11.97-20.729s-4.475-16.403-11.969-20.729m-11 22.406-70.105 40.476c-.644.371-1.295.37-1.937 0-.642-.371-.968-.936-.968-1.677V125.04c0-.742.326-1.306.969-1.677q.482-.279.968-.278c.486.001.646.093.968.278l70.105 40.476h.001c.642.371.968.935.968 1.677s-.326 1.305-.969 1.676m13.1 178.647H166.248c-6.075 0-11 4.925-11 11s4.925 11 11 11h128.343c6.075 0 11-4.925 11-11s-4.925-11-11-11m0 51.974H166.248c-6.075 0-11 4.925-11 11s4.925 11 11 11h128.343c6.075 0 11-4.925 11-11s-4.925-11-11-11" }),
|
|
441
|
+
/* @__PURE__ */ jsx("path", { d: "M469.062 207.367h-46.39v-175.6C422.672 14.25 408.422 0 390.905 0H80.033C62.517 0 48.267 14.25 48.267 31.767v175.601h-4.489c-17.445 0-31.638 14.192-31.638 31.638v241.357C12.14 497.808 26.332 512 43.777 512h419.502c20.171 0 36.581-16.41 36.581-36.58V238.166c0-16.983-13.816-30.799-30.798-30.799m-68.39-175.6v23.611h-51.734L368.029 22h22.876c5.386 0 9.767 4.381 9.767 9.767M193.76 22l-19.091 33.378h-49.117L144.642 22zm25.345 0h49.116L249.13 55.378h-49.117zm74.462 0h49.116l-19.091 33.378h-49.117zM80.033 22h39.264l-19.091 33.378h-29.94V31.767C70.267 26.381 74.647 22 80.033 22m-9.766 55.378h330.405v176.274H183.87a8.48 8.48 0 0 1-7.019-3.716l-19.858-29.22a30.46 30.46 0 0 0-25.214-13.349H70.267zM43.777 490c-5.314 0-9.638-4.324-9.638-9.638V239.005c0-5.314 4.323-9.638 9.638-9.638h88.002a8.48 8.48 0 0 1 7.019 3.716l19.858 29.219a30.46 30.46 0 0 0 25.214 13.35h233.829c4.963 0 9 4.038 9 9V475.42a36.4 36.4 0 0 0 3.032 14.58zm434.083-14.58c0 8.04-6.541 14.58-14.581 14.58s-14.58-6.541-14.58-14.58V284.652c0-15.4-11.29-28.209-26.027-30.596v-24.689h46.39c4.852 0 8.799 3.947 8.799 8.798z" }),
|
|
442
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
443
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
444
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
445
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
446
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
447
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
448
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
449
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
450
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
451
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
452
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
453
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
454
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
455
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
456
|
+
/* @__PURE__ */ jsx("g", {})
|
|
457
|
+
] });
|
|
458
|
+
};
|
|
459
|
+
const EscaneoFacial = ({ fill = "currentColor" }) => {
|
|
460
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
461
|
+
/* @__PURE__ */ jsx("path", { d: "M154.34 109.571c-6.075 0-11-4.925-11-11V71.996c0-6.075 4.925-11 11-11h26.573c6.075 0 11 4.925 11 11s-4.925 11-11 11H165.34v15.575c0 6.075-4.925 11-11 11m203.32 0c-6.075 0-11-4.925-11-11V82.996h-15.573c-6.075 0-11-4.925-11-11s4.925-11 11-11h26.573c6.075 0 11 4.925 11 11v26.575c0 6.075-4.925 11-11 11m-176.746 249.94H154.34c-6.075 0-11-4.925-11-11v-26.576c0-6.075 4.925-11 11-11s11 4.925 11 11v15.576h15.573c6.075 0 11 4.925 11 11 .001 6.075-4.924 11-10.999 11m176.746 0h-26.573c-6.075 0-11-4.925-11-11s4.925-11 11-11h15.573v-15.576c0-6.075 4.925-11 11-11s11 4.925 11 11v26.576c0 6.075-4.925 11-11 11" }),
|
|
462
|
+
/* @__PURE__ */ jsx("path", { d: "M388.158 0H123.842C100.96 0 82.344 18.616 82.344 41.498v429.004c0 22.882 18.616 41.498 41.498 41.498h264.316c22.882 0 41.498-18.616 41.498-41.498V41.498C429.656 18.616 411.04 0 388.158 0M123.842 22h264.316c10.751 0 19.498 8.747 19.498 19.498v357.009H104.344V41.498c0-10.751 8.747-19.498 19.498-19.498m264.316 468H123.842c-10.751 0-19.498-8.747-19.498-19.498v-49.995h303.312v49.995c0 10.751-8.747 19.498-19.498 19.498" }),
|
|
463
|
+
/* @__PURE__ */ jsx("path", { d: "M318.521 283.566c-8.906 0-16.151-7.245-16.151-16.15v-5.333a114 114 0 0 0 6.157-6.187c13.614-14.796 20.517-32.494 20.517-52.601v-21.618c0-19.145-7.237-36.954-20.379-50.146-13.102-13.152-30.865-20.509-50.017-20.717-19.15-.203-37.15 7.042-50.67 20.414-13.521 13.376-20.968 31.292-20.968 50.448v24.469c0 23.158 9.227 43.403 26.675 58.58v2.69c0 8.905-7.245 16.15-16.151 16.15-6.075 0-11 4.925-11 11s4.925 11 11 11c17.082 0 31.578-11.285 36.424-26.792 8.545 4.526 16.729 7.119 23.19 7.119 6.705 0 15.499-3.159 24.579-8.418 4.426 16.169 19.24 28.091 36.795 28.091 6.075 0 11-4.925 11-11s-4.926-10.999-11.001-10.999m-90.186-35.244c-12.823-11.055-19.325-25.245-19.325-42.176v-24.469c0-13.235 5.128-25.596 14.44-34.808 9.179-9.08 21.376-14.06 34.403-14.06q.279 0 .556.003c27.727.301 48.636 21.308 48.636 48.864v21.618c0 14.616-4.811 26.95-14.707 37.705a96 96 0 0 1-7.692 7.459 11 11 0 0 0-.824.705c-11.439 9.698-22.732 14.73-26.674 14.73-4.336.001-16.491-4.948-28.813-15.571m59.4 217.931h-63.47c-6.075 0-11-4.925-11-11s4.925-11 11-11h63.47c6.075 0 11 4.925 11 11s-4.925 11-11 11" }),
|
|
464
|
+
/* @__PURE__ */ jsx("path", { d: "M351.122 209.119H160.879c-6.075 0-11-4.925-11-11s4.925-11 11-11h190.243c6.075 0 11 4.925 11 11s-4.925 11-11 11" })
|
|
465
|
+
] });
|
|
466
|
+
};
|
|
467
|
+
const Empresa = ({ fill = "currentColor" }) => {
|
|
468
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
469
|
+
/* @__PURE__ */ jsx("path", { d: "M457 446h-70.266v-22H446v-22h-59.266v-22H457c6.075 0 11 4.925 11 11v44c0 6.075-4.925 11-11 11m0-88h-70.266v-22H446v-22h-59.266v-22H457c6.075 0 11 4.925 11 11v44c0 6.075-4.925 11-11 11m0-88h-70.266v-22H446v-22h-59.266v-22H457c6.075 0 11 4.925 11 11v44c0 6.075-4.925 11-11 11M254.734 154.082h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm121 22h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm-55 110h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm121 22h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm-55 110h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm121 22h-44c-6.075 0-11-4.925-11-11v-44c0-6.075 4.925-11 11-11h44c6.075 0 11 4.925 11 11v44c0 6.075-4.924 11-11 11m-33-22h22v-22h-22zm-187-6.443H55c-6.075 0-11-4.925-11-11s4.925-11 11-11h67.734c6.075 0 11 4.925 11 11s-4.924 11-11 11m0 44H55c-6.075 0-11-4.925-11-11s4.925-11 11-11h67.734c6.075 0 11 4.925 11 11s-4.924 11-11 11m0 44H55c-6.075 0-11-4.925-11-11s4.925-11 11-11h67.734c6.075 0 11 4.925 11 11s-4.924 11-11 11m0 44H55c-6.075 0-11-4.925-11-11s4.925-11 11-11h67.734c6.075 0 11 4.925 11 11s-4.924 11-11 11" }),
|
|
470
|
+
/* @__PURE__ */ jsx("path", { d: "m505.124 174.884-107.39-43.427V33c0-6.075-4.925-11-11-11h-220c-6.075 0-11 4.925-11 11v57.759l-69.858 19.737a11 11 0 0 0-8.009 10.585v102.196H11c-6.075 0-11 4.925-11 11V479c0 6.075 4.925 11 11 11h490c6.075 0 11-4.925 11-11V185.082a11 11 0 0 0-6.876-10.198m-405.257-45.48 55.867-15.784v109.658H99.867zM22 245.278h133.734V468H22zM331.734 468h-44v-93.918h44zm-66 0h-44v-93.918h44zm110 0h-22V363.082c0-6.075-4.925-11-11-11h-132c-6.075 0-11 4.925-11 11V468h-22V44h198zM490 468h-92.266V155.188L490 192.499z" }),
|
|
471
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
472
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
473
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
474
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
475
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
476
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
477
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
478
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
479
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
480
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
481
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
482
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
483
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
484
|
+
/* @__PURE__ */ jsx("g", {}),
|
|
485
|
+
/* @__PURE__ */ jsx("g", {})
|
|
486
|
+
] });
|
|
487
|
+
};
|
|
488
|
+
const TrabajoEnEquipo = ({ fill = "currentColor" }) => {
|
|
489
|
+
return /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", className: "h-6 w-6", fill, children: [
|
|
490
|
+
/* @__PURE__ */ jsx("path", { d: "M132.992 290.069H11c-6.075 0-11-4.925-11-11s4.925-11 11-11h121.992c6.075 0 11 4.925 11 11s-4.925 11-11 11m184.004 0H195.004c-6.075 0-11-4.925-11-11s4.925-11 11-11h121.992c6.075 0 11 4.925 11 11s-4.925 11-11 11m184.004 0H379.008c-6.075 0-11-4.925-11-11s4.925-11 11-11H501c6.075 0 11 4.925 11 11s-4.925 11-11 11M71.996 244.322c-6.075 0-11-4.925-11-11V133.5c0-6.075 4.925-11 11-11s11 4.925 11 11v99.822c0 6.076-4.925 11-11 11m184.004 0c-6.075 0-11-4.925-11-11V133.5c0-6.075 4.925-11 11-11s11 4.925 11 11v99.822c0 6.076-4.925 11-11 11m184.004 0c-6.075 0-11-4.925-11-11V133.5c0-6.075 4.925-11 11-11s11 4.925 11 11v99.822c0 6.076-4.925 11-11 11" }),
|
|
491
|
+
/* @__PURE__ */ jsx("path", { d: "M475.562 131.933c12.909-10.411 21.189-26.343 21.189-44.179 0-31.291-25.457-56.747-56.747-56.747s-56.747 25.457-56.747 56.747c0 13.084 4.463 25.137 11.93 34.747h-94.769c7.708-9.69 12.33-21.94 12.33-35.255 0-31.29-25.457-56.747-56.747-56.747s-56.747 25.457-56.747 56.747c0 13.316 4.622 25.565 12.33 35.255h-94.77c7.467-9.609 11.93-21.663 11.93-34.747 0-31.291-25.456-56.747-56.746-56.747S15.249 56.463 15.249 87.753c0 17.837 8.28 33.769 21.189 44.179C14.698 144.337 0 167.725 0 194.496v276.006c0 6.075 4.925 11 11 11h121.992c6.075 0 11-4.925 11-11V205.496h40.012v265.006c0 6.075 4.925 11 11 11h121.992c6.075 0 11-4.925 11-11V205.496h40.012v265.006c0 6.075 4.925 11 11 11H501c6.075 0 11-4.925 11-11V194.496c0-26.771-14.698-50.159-36.438-62.563M256 52.498c19.159 0 34.747 15.587 34.747 34.747S275.159 121.992 256 121.992s-34.747-15.587-34.747-34.747S236.841 52.498 256 52.498m149.257 35.255c0-19.16 15.588-34.747 34.747-34.747s34.747 15.587 34.747 34.747c0 19.159-15.588 34.747-34.747 34.747s-34.747-15.587-34.747-34.747m-368.008 0c0-19.16 15.588-34.747 34.747-34.747s34.746 15.587 34.746 34.747c0 19.159-15.587 34.747-34.746 34.747s-34.747-15.587-34.747-34.747m84.743 371.749H82.996V324.816c0-6.075-4.925-11-11-11s-11 4.925-11 11v134.686H22V194.496c0-27.568 22.428-49.996 49.996-49.996s49.996 22.428 49.996 49.996zm195.004-276.006c-6.075 0-11 4.925-11 11v265.006H267V324.816c0-6.075-4.925-11-11-11s-11 4.925-11 11v134.686h-38.996V194.496c0-6.075-4.925-11-11-11h-51.852c-2.314-15.031-9.307-28.532-19.423-38.996h264.542c-10.116 10.464-17.109 23.964-19.423 38.996zM490 459.502h-38.996V324.816c0-6.075-4.925-11-11-11s-11 4.925-11 11v134.686h-38.996V194.496c0-27.568 22.428-49.996 49.996-49.996S490 166.928 490 194.496z" })
|
|
492
|
+
] });
|
|
493
|
+
};
|
|
494
|
+
const Aficionados = ({ fill = "currentColor" }) => {
|
|
495
|
+
return /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512.003 512.003", className: "h-6 w-6", fill, children: /* @__PURE__ */ jsx("path", { d: "m511.786 481.875-.69-3.41c-6.25-30.93-27.55-55.83-55.29-67.65 10.34-9.72 16.81-23.53 16.81-38.83v-18.19c0-29.42-23.93-53.35-53.35-53.35s-53.36 23.93-53.36 53.35v18.19c0 15.38 6.54 29.26 16.99 39-9.89 4.32-19.12 10.39-27.25 18.01a123.3 123.3 0 0 0-21.54-22.79c-10.8-8.82-22.98-15.7-35.95-20.41 16.06-12.56 26.39-32.1 26.39-54.01v-24.71c0-37.8-30.75-68.55-68.55-68.55-37.79 0-68.54 30.75-68.54 68.55v24.71c0 21.91 10.33 41.45 26.38 54.01a123.3 123.3 0 0 0-35.94 20.41c-8.1 6.63-15.28 14.25-21.4 22.62a98.7 98.7 0 0 0-27.45-17.79c10.48-9.74 17.05-23.64 17.05-39.05v-18.19c0-29.42-23.94-53.35-53.36-53.35s-53.35 23.93-53.35 53.35v18.19c0 15.29 6.46 29.09 16.8 38.83-27.73 11.83-49.03 36.73-55.28 67.65l-.69 3.41c-.65 3.24.18 6.59 2.27 9.15 2.09 2.55 5.22 4.03 8.51 4.03h490c3.3 0 6.43-1.48 8.52-4.03a11.02 11.02 0 0 0 2.27-9.15m-450.4-128.081c0-17.29 14.06-31.35 31.35-31.35s31.36 14.06 31.36 31.35v18.19c0 17.29-14.07 31.35-31.36 31.35s-31.35-14.06-31.35-31.35zm74.64 119.26H25.176c10.02-28.16 37-47.72 67.56-47.72 19.02 0 38.19 8.47 52.14 22.86a123 123 0 0 0-8.85 24.86m73.43-141.27v-24.71c0-25.67 20.88-46.55 46.54-46.55 25.67 0 46.55 20.88 46.55 46.55v24.71c0 25.67-20.88 46.55-46.55 46.55-25.66 0-46.54-20.88-46.54-46.55m-50.68 141.27c12.57-42.62 52.14-72.72 97.22-72.72 45.09 0 84.66 30.1 97.22 72.72zm229.13-119.26c0-17.29 14.07-31.35 31.36-31.35s31.35 14.06 31.35 31.35v18.19c0 17.29-14.06 31.35-31.35 31.35s-31.36-14.06-31.36-31.35zm-11.929 119.26c-2.03-8.52-4.96-16.76-8.72-24.59 13.91-14.75 32.64-23.13 52.01-23.13 30.56 0 57.54 19.56 67.55 47.72zm43.287-222.578c-2.815 0-5.63-1.074-7.778-3.222l-44.98-44.98c-8.062-8.062-12.502-18.781-12.502-30.183s4.44-22.121 12.502-30.183 18.782-12.503 30.183-12.503c8.111 0 15.876 2.248 22.586 6.447 16.467-10.255 38.456-8.237 52.749 6.056 8.062 8.062 12.502 18.781 12.502 30.183 0 11.401-4.44 22.121-12.502 30.183l-44.98 44.98a10.97 10.97 0 0 1-7.78 3.222m-22.575-99.06c-5.297 0-10.594 2.016-14.627 6.049a20.55 20.55 0 0 0-6.059 14.626 20.55 20.55 0 0 0 6.059 14.626l37.202 37.203 37.202-37.203a20.55 20.55 0 0 0 6.059-14.626c0-5.525-2.152-10.72-6.059-14.626-3.907-3.907-9.101-6.059-14.626-6.059s-10.72 2.152-14.627 6.059l-.171.171c-4.296 4.296-11.261 4.296-15.557 0l-.171-.171c-4.031-4.033-9.329-6.049-14.625-6.049m-303.951 99.06c-2.815 0-5.63-1.074-7.778-3.222l-44.981-44.98c-8.062-8.062-12.502-18.781-12.502-30.183s4.44-22.121 12.502-30.183 18.782-12.503 30.183-12.503c8.111 0 15.877 2.248 22.586 6.447 16.467-10.255 38.456-8.237 52.749 6.056 8.062 8.062 12.502 18.781 12.502 30.183 0 11.401-4.44 22.121-12.502 30.183l-44.981 44.98a10.96 10.96 0 0 1-7.778 3.222m-22.576-99.06c-5.297 0-10.594 2.016-14.626 6.049a20.55 20.55 0 0 0-6.059 14.626 20.55 20.55 0 0 0 6.059 14.626l37.202 37.203 37.202-37.203a20.55 20.55 0 0 0 6.059-14.626c0-5.525-2.152-10.72-6.059-14.626a20.55 20.55 0 0 0-14.626-6.059 20.55 20.55 0 0 0-14.626 6.059l-.171.171c-4.296 4.296-11.261 4.296-15.557 0l-.171-.171c-4.033-4.033-9.33-6.049-14.627-6.049m185.839 35.077c-2.815 0-5.63-1.074-7.778-3.222l-67.002-67.001c-22.691-22.691-22.691-59.613 0-82.304 20.328-20.327 52.075-22.443 74.782-6.353 22.712-16.093 54.454-13.972 74.778 6.353 22.691 22.691 22.691 59.613 0 82.304l-67.002 67.001a10.96 10.96 0 0 1-7.778 3.222M222.373 38.938c-9.27 0-18.538 3.527-25.596 10.585-14.113 14.113-14.113 37.078.001 51.191l59.224 59.224 59.224-59.224c14.114-14.113 14.114-37.078 0-51.191-14.114-14.114-37.079-14.113-51.191 0l-.247.247a11 11 0 0 1-7.78 3.229h-.005a11 11 0 0 1-7.778-3.222l-.255-.255c-7.058-7.055-16.329-10.584-25.597-10.584" }) });
|
|
496
|
+
};
|
|
497
|
+
export {
|
|
498
|
+
Aficionados,
|
|
499
|
+
AuditarDocumento,
|
|
500
|
+
Borrar,
|
|
501
|
+
CajaDeMano,
|
|
502
|
+
Cajas,
|
|
503
|
+
Calendario,
|
|
504
|
+
ChevronLeftRightIcon,
|
|
505
|
+
CirculoAdvertencia,
|
|
506
|
+
CirculoExito,
|
|
507
|
+
CirculoPeligro,
|
|
508
|
+
CirculoPorDefecto,
|
|
509
|
+
ClientsIcon,
|
|
510
|
+
CloseIcon,
|
|
511
|
+
ContraseniaDeEmailIcon,
|
|
512
|
+
Cotizaciones,
|
|
513
|
+
DashboardIcon,
|
|
514
|
+
Directorio,
|
|
515
|
+
Edificio,
|
|
516
|
+
Editar,
|
|
517
|
+
Empresa,
|
|
518
|
+
EscaneoFacial,
|
|
519
|
+
EyeIcon,
|
|
520
|
+
FlechaAbajo,
|
|
521
|
+
FlechaArriba,
|
|
522
|
+
Imagenes,
|
|
523
|
+
LlamadaTelefonica,
|
|
524
|
+
LogoutIcon,
|
|
525
|
+
MarketingDigital,
|
|
526
|
+
MediosDeComunicacionSocial,
|
|
527
|
+
MenuIcon,
|
|
528
|
+
MenuPuntosVerticalIcon,
|
|
529
|
+
Nota,
|
|
530
|
+
Ojo,
|
|
531
|
+
OrdersIcon,
|
|
532
|
+
PencilIcon,
|
|
533
|
+
PermsIcon,
|
|
534
|
+
ProductsIcon,
|
|
535
|
+
PromoIcon,
|
|
536
|
+
Retroalimentacion,
|
|
537
|
+
RolesIcon,
|
|
538
|
+
Sobre,
|
|
539
|
+
Tablero,
|
|
540
|
+
Tarea,
|
|
541
|
+
Tickets,
|
|
542
|
+
TrabajoEnEquipo,
|
|
543
|
+
TrashIcon,
|
|
544
|
+
UserIcon,
|
|
545
|
+
UsersIcon,
|
|
546
|
+
UsuarioProhibidoIcon,
|
|
547
|
+
Usuarios
|
|
548
|
+
};
|