bmi-next-brokers 1.0.3 → 1.0.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/components/navbar/index.d.ts +1 -1
- package/dist/components/navbar/index.js +77 -74
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/ImpagoIcon.d.ts +3 -0
- package/dist/icons/components/ImpagoIcon.js +39 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/icons/components/index.js +96 -94
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +100 -98
- package/dist/index-DULNt1Ev.js +206 -0
- package/package.json +1 -1
- package/dist/index-CyqvUUfR.js +0 -204
|
@@ -46,5 +46,5 @@ interface NavbarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
46
46
|
* />
|
|
47
47
|
* ```
|
|
48
48
|
*/
|
|
49
|
-
export declare const Navbar: React.
|
|
49
|
+
export declare const Navbar: React.ForwardRefExoticComponent<NavbarProps & React.RefAttributes<HTMLDivElement>>;
|
|
50
50
|
export {};
|
|
@@ -1,82 +1,85 @@
|
|
|
1
1
|
import { jsx as o, jsxs as n } from "react/jsx-runtime";
|
|
2
|
-
import { useState as
|
|
2
|
+
import { forwardRef as u, useState as v } from "react";
|
|
3
3
|
import { Icon as i } from "../../icons/Icon.js";
|
|
4
|
-
import { MenuItem as
|
|
5
|
-
import '../../assets/index2.css';const
|
|
6
|
-
sidebar:
|
|
7
|
-
open:
|
|
8
|
-
content:
|
|
9
|
-
header:
|
|
10
|
-
toggleButton:
|
|
11
|
-
menuList:
|
|
12
|
-
bottomDiv:
|
|
13
|
-
},
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
width: t ? 80.86 : 26.62,
|
|
36
|
-
height: 32
|
|
37
|
-
}
|
|
38
|
-
),
|
|
39
|
-
t && /* @__PURE__ */ o("div", { className: e.toggleButton, onClick: m, children: /* @__PURE__ */ o(
|
|
40
|
-
i,
|
|
41
|
-
{
|
|
42
|
-
name: "ClosePanel",
|
|
43
|
-
width: 20,
|
|
44
|
-
height: 20,
|
|
45
|
-
fill: "var(--black-60)"
|
|
46
|
-
}
|
|
47
|
-
) })
|
|
48
|
-
] }),
|
|
49
|
-
/* @__PURE__ */ n("ul", { className: e.menuList, children: [
|
|
50
|
-
c.map((a, p) => /* @__PURE__ */ o(
|
|
51
|
-
r,
|
|
52
|
-
{
|
|
53
|
-
option: a,
|
|
54
|
-
activeItem: l,
|
|
55
|
-
open: t
|
|
56
|
-
},
|
|
57
|
-
p
|
|
58
|
-
)),
|
|
59
|
-
/* @__PURE__ */ n("div", { className: `${e.bottomDiv} ${t && e.open}`, children: [
|
|
60
|
-
!t && /* @__PURE__ */ o("div", { className: e.toggleButton, onClick: m, children: /* @__PURE__ */ o(i, { name: "OpenPanel", width: 20, height: 20, fill: "black" }) }),
|
|
61
|
-
h && /* @__PURE__ */ o(
|
|
62
|
-
r,
|
|
4
|
+
import { MenuItem as m } from "./menuItem/index.js";
|
|
5
|
+
import '../../assets/index2.css';const f = "_sidebar_1e8mb_1", B = "_open_1e8mb_17", N = "_content_1e8mb_21", $ = "_header_1e8mb_28", w = "_toggleButton_1e8mb_40", C = "_menuList_1e8mb_51", L = "_bottomDiv_1e8mb_67", e = {
|
|
6
|
+
sidebar: f,
|
|
7
|
+
open: B,
|
|
8
|
+
content: N,
|
|
9
|
+
header: $,
|
|
10
|
+
toggleButton: w,
|
|
11
|
+
menuList: C,
|
|
12
|
+
bottomDiv: L
|
|
13
|
+
}, O = u(
|
|
14
|
+
({
|
|
15
|
+
options: c,
|
|
16
|
+
className: d,
|
|
17
|
+
activeItem: l,
|
|
18
|
+
withConfig: h = !1,
|
|
19
|
+
configAction: s,
|
|
20
|
+
..._
|
|
21
|
+
}, b) => {
|
|
22
|
+
const [t, p] = v(!0), r = () => {
|
|
23
|
+
p((a) => !a);
|
|
24
|
+
};
|
|
25
|
+
return /* @__PURE__ */ o(
|
|
26
|
+
"aside",
|
|
27
|
+
{
|
|
28
|
+
ref: b,
|
|
29
|
+
className: `${e.sidebar} ${t ? e.open : ""} ${d || ""}`,
|
|
30
|
+
..._,
|
|
31
|
+
children: /* @__PURE__ */ n("div", { className: e.content, children: [
|
|
32
|
+
/* @__PURE__ */ n("header", { className: `${e.header} ${t && e.open}`, children: [
|
|
33
|
+
/* @__PURE__ */ o(
|
|
34
|
+
i,
|
|
63
35
|
{
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
iconAfter: "Settings",
|
|
68
|
-
iconBefore: "ArrowRight"
|
|
69
|
-
},
|
|
70
|
-
open: t,
|
|
71
|
-
activeItem: l
|
|
36
|
+
name: t ? "BmiLogo" : "BmiCollapsed",
|
|
37
|
+
width: t ? 80.86 : 26.62,
|
|
38
|
+
height: 32
|
|
72
39
|
}
|
|
73
|
-
)
|
|
40
|
+
),
|
|
41
|
+
t && /* @__PURE__ */ o("div", { className: e.toggleButton, onClick: r, children: /* @__PURE__ */ o(
|
|
42
|
+
i,
|
|
43
|
+
{
|
|
44
|
+
name: "ClosePanel",
|
|
45
|
+
width: 20,
|
|
46
|
+
height: 20,
|
|
47
|
+
fill: "var(--black-60)"
|
|
48
|
+
}
|
|
49
|
+
) })
|
|
50
|
+
] }),
|
|
51
|
+
/* @__PURE__ */ n("ul", { className: e.menuList, children: [
|
|
52
|
+
c.map((a, g) => /* @__PURE__ */ o(
|
|
53
|
+
m,
|
|
54
|
+
{
|
|
55
|
+
option: a,
|
|
56
|
+
activeItem: l,
|
|
57
|
+
open: t
|
|
58
|
+
},
|
|
59
|
+
g
|
|
60
|
+
)),
|
|
61
|
+
/* @__PURE__ */ n("div", { className: `${e.bottomDiv} ${t && e.open}`, children: [
|
|
62
|
+
!t && /* @__PURE__ */ o("div", { className: e.toggleButton, onClick: r, children: /* @__PURE__ */ o(i, { name: "OpenPanel", width: 20, height: 20, fill: "black" }) }),
|
|
63
|
+
h && /* @__PURE__ */ o(
|
|
64
|
+
m,
|
|
65
|
+
{
|
|
66
|
+
option: {
|
|
67
|
+
label: "Configuración",
|
|
68
|
+
action: () => s == null ? void 0 : s(),
|
|
69
|
+
iconAfter: "Settings",
|
|
70
|
+
iconBefore: "ArrowRight"
|
|
71
|
+
},
|
|
72
|
+
open: t,
|
|
73
|
+
activeItem: l
|
|
74
|
+
}
|
|
75
|
+
)
|
|
76
|
+
] })
|
|
74
77
|
] })
|
|
75
78
|
] })
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
79
|
+
}
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
);
|
|
80
83
|
export {
|
|
81
|
-
|
|
84
|
+
O as Navbar
|
|
82
85
|
};
|
package/dist/icons/Icon.js
CHANGED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as l, jsx as h } from "react/jsx-runtime";
|
|
2
|
+
const i = (a) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...a,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ h(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "impago_icon_svg__a",
|
|
16
|
+
width: 16,
|
|
17
|
+
height: 16,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ h("path", { fill: "currentColor", d: "M0 0h16v16H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ h("g", { mask: "url(#impago_icon_svg__a)", children: /* @__PURE__ */ h(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "m14.235 12.391-1.083-1.083v-3.32H9.827l-2.4-2.4h5.725v-1.14H6.29L4.907 3.063h8.245q.575 0 .979.404.404.405.404.98v7.104q0 .245-.067.452a1 1 0 0 1-.233.387M6.268 7.987h-3.42v3.565h6.988zm-3.42 4.948q-.576 0-.98-.405a1.33 1.33 0 0 1-.404-.98V4.444q0-.543.365-.935t.89-.432h.417l1.471 1.471h-1.76v1.04h1.02L1.35 3.053a.56.56 0 0 1-.181-.437.64.64 0 0 1 .202-.437.6.6 0 0 1 .436-.19q.244 0 .442.196l11.633 11.633q.196.198.197.445 0 .248-.192.434a.64.64 0 0 1-.445.2.58.58 0 0 1-.445-.184l-1.778-1.778z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
export {
|
|
38
|
+
i as default
|
|
39
|
+
};
|
|
@@ -43,6 +43,7 @@ export { default as HeightIcon } from './HeightIcon';
|
|
|
43
43
|
export { default as Help } from './Help';
|
|
44
44
|
export { default as HistorialIcon } from './HistorialIcon';
|
|
45
45
|
export { default as IdCodigoBroker } from './IdCodigoBroker';
|
|
46
|
+
export { default as ImpagoIcon } from './ImpagoIcon';
|
|
46
47
|
export { default as Info } from './Info';
|
|
47
48
|
export { default as InfoFinanciera } from './InfoFinanciera';
|
|
48
49
|
export { default as KeyboardArrowDown } from './KeyboardArrowDown';
|
|
@@ -2,9 +2,9 @@ import { default as r } from "./ArrowDown.js";
|
|
|
2
2
|
import { default as t } from "./ArrowUp.js";
|
|
3
3
|
import { default as l } from "./Add.js";
|
|
4
4
|
import { default as d } from "./AddAPhoto.js";
|
|
5
|
-
import { default as
|
|
5
|
+
import { default as m } from "./AddIcon.js";
|
|
6
6
|
import { default as x } from "./AlertIcon.js";
|
|
7
|
-
import { default as
|
|
7
|
+
import { default as c } from "./Apnfd.js";
|
|
8
8
|
import { default as I } from "./Approve.js";
|
|
9
9
|
import { default as A } from "./ArrowBack.js";
|
|
10
10
|
import { default as w } from "./ArrowBackIosNew.js";
|
|
@@ -29,9 +29,9 @@ import { default as ro } from "./CreditCard.js";
|
|
|
29
29
|
import { default as to } from "./DashboardIcon.js";
|
|
30
30
|
import { default as lo } from "./Delete.js";
|
|
31
31
|
import { default as po } from "./DeniedIcon.js";
|
|
32
|
-
import { default as
|
|
32
|
+
import { default as uo } from "./Distance.js";
|
|
33
33
|
import { default as no } from "./Documentos.js";
|
|
34
|
-
import { default as
|
|
34
|
+
import { default as io } from "./DownloadIcon.js";
|
|
35
35
|
import { default as Co } from "./EditIcon.js";
|
|
36
36
|
import { default as ho } from "./Female.js";
|
|
37
37
|
import { default as bo } from "./Filter.js";
|
|
@@ -43,55 +43,56 @@ import { default as Bo } from "./HeightIcon.js";
|
|
|
43
43
|
import { default as Ho } from "./Help.js";
|
|
44
44
|
import { default as Oo } from "./HistorialIcon.js";
|
|
45
45
|
import { default as Vo } from "./IdCodigoBroker.js";
|
|
46
|
-
import { default as zo } from "./
|
|
47
|
-
import { default as Eo } from "./
|
|
48
|
-
import { default as jo } from "./
|
|
49
|
-
import { default as qo } from "./
|
|
50
|
-
import { default as Jo } from "./
|
|
51
|
-
import { default as Xo } from "./
|
|
52
|
-
import { default as Zo } from "./
|
|
53
|
-
import { default as $o } from "./
|
|
54
|
-
import { default as ee } from "./
|
|
55
|
-
import { default as ae } from "./
|
|
56
|
-
import { default as fe } from "./
|
|
57
|
-
import { default as se } from "./
|
|
58
|
-
import { default as pe } from "./
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as ne } from "./
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as Ce } from "./
|
|
63
|
-
import { default as he } from "./
|
|
64
|
-
import { default as be } from "./
|
|
65
|
-
import { default as Fe } from "./
|
|
66
|
-
import { default as De } from "./
|
|
67
|
-
import { default as ge } from "./
|
|
68
|
-
import { default as Se } from "./
|
|
69
|
-
import { default as Be } from "./
|
|
70
|
-
import { default as He } from "./
|
|
71
|
-
import { default as Oe } from "./
|
|
72
|
-
import { default as Ve } from "./
|
|
73
|
-
import { default as ze } from "./
|
|
74
|
-
import { default as Ee } from "./
|
|
75
|
-
import { default as je } from "./
|
|
76
|
-
import { default as qe } from "./
|
|
77
|
-
import { default as Je } from "./
|
|
78
|
-
import { default as Xe } from "./
|
|
79
|
-
import { default as Ze } from "./
|
|
80
|
-
import { default as $e } from "./
|
|
81
|
-
import { default as er } from "./
|
|
82
|
-
import { default as ar } from "./
|
|
83
|
-
import { default as fr } from "./
|
|
84
|
-
import { default as sr } from "./
|
|
85
|
-
import { default as pr } from "./
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as nr } from "./
|
|
88
|
-
import { default as
|
|
46
|
+
import { default as zo } from "./ImpagoIcon.js";
|
|
47
|
+
import { default as Eo } from "./Info.js";
|
|
48
|
+
import { default as jo } from "./InfoFinanciera.js";
|
|
49
|
+
import { default as qo } from "./KeyboardArrowDown.js";
|
|
50
|
+
import { default as Jo } from "./KeyboardArrowUp.js";
|
|
51
|
+
import { default as Xo } from "./LocationOn.js";
|
|
52
|
+
import { default as Zo } from "./LocationSearching.js";
|
|
53
|
+
import { default as $o } from "./LockIcon.js";
|
|
54
|
+
import { default as ee } from "./MailIcon.js";
|
|
55
|
+
import { default as ae } from "./Male.js";
|
|
56
|
+
import { default as fe } from "./MasAcciones.js";
|
|
57
|
+
import { default as se } from "./Medical.js";
|
|
58
|
+
import { default as pe } from "./Menu.js";
|
|
59
|
+
import { default as ue } from "./MoreVert.js";
|
|
60
|
+
import { default as ne } from "./NextIcon.js";
|
|
61
|
+
import { default as ie } from "./Notes.js";
|
|
62
|
+
import { default as Ce } from "./NumPolizaIcon.js";
|
|
63
|
+
import { default as he } from "./OpenInFull.js";
|
|
64
|
+
import { default as be } from "./Pep.js";
|
|
65
|
+
import { default as Fe } from "./Person.js";
|
|
66
|
+
import { default as De } from "./PersonCancel.js";
|
|
67
|
+
import { default as ge } from "./PhotoLibrary.js";
|
|
68
|
+
import { default as Se } from "./Planet.js";
|
|
69
|
+
import { default as Be } from "./PolizaIcon.js";
|
|
70
|
+
import { default as He } from "./Public.js";
|
|
71
|
+
import { default as Oe } from "./ReembolsosIcon.js";
|
|
72
|
+
import { default as Ve } from "./Refresh.js";
|
|
73
|
+
import { default as ze } from "./RembolsosIcon.js";
|
|
74
|
+
import { default as Ee } from "./Renovaciones.js";
|
|
75
|
+
import { default as je } from "./Replay.js";
|
|
76
|
+
import { default as qe } from "./Reply.js";
|
|
77
|
+
import { default as Je } from "./SearchIcon.js";
|
|
78
|
+
import { default as Xe } from "./Send.js";
|
|
79
|
+
import { default as Ze } from "./Share.js";
|
|
80
|
+
import { default as $e } from "./SmallFamily.js";
|
|
81
|
+
import { default as er } from "./Smartphone.js";
|
|
82
|
+
import { default as ar } from "./Tutoriales.js";
|
|
83
|
+
import { default as fr } from "./UnfoldMore.js";
|
|
84
|
+
import { default as sr } from "./VerifiedUser.js";
|
|
85
|
+
import { default as pr } from "./Visibility.js";
|
|
86
|
+
import { default as ur } from "./VisibilityOff.js";
|
|
87
|
+
import { default as nr } from "./Warning.js";
|
|
88
|
+
import { default as ir } from "./WeightIcon.js";
|
|
89
|
+
import { default as Cr } from "./Whatsapp.js";
|
|
89
90
|
export {
|
|
90
91
|
l as Add,
|
|
91
92
|
d as AddAPhoto,
|
|
92
|
-
|
|
93
|
+
m as AddIcon,
|
|
93
94
|
x as AlertIcon,
|
|
94
|
-
|
|
95
|
+
c as Apnfd,
|
|
95
96
|
I as Approve,
|
|
96
97
|
A as ArrowBack,
|
|
97
98
|
w as ArrowBackIosNew,
|
|
@@ -118,9 +119,9 @@ export {
|
|
|
118
119
|
to as DashboardIcon,
|
|
119
120
|
lo as Delete,
|
|
120
121
|
po as DeniedIcon,
|
|
121
|
-
|
|
122
|
+
uo as Distance,
|
|
122
123
|
no as Documentos,
|
|
123
|
-
|
|
124
|
+
io as DownloadIcon,
|
|
124
125
|
Co as EditIcon,
|
|
125
126
|
ho as Female,
|
|
126
127
|
bo as Filter,
|
|
@@ -132,47 +133,48 @@ export {
|
|
|
132
133
|
Ho as Help,
|
|
133
134
|
Oo as HistorialIcon,
|
|
134
135
|
Vo as IdCodigoBroker,
|
|
135
|
-
zo as
|
|
136
|
-
Eo as
|
|
137
|
-
jo as
|
|
138
|
-
qo as
|
|
139
|
-
Jo as
|
|
140
|
-
Xo as
|
|
141
|
-
Zo as
|
|
142
|
-
$o as
|
|
143
|
-
ee as
|
|
144
|
-
ae as
|
|
145
|
-
fe as
|
|
146
|
-
se as
|
|
147
|
-
pe as
|
|
148
|
-
|
|
149
|
-
ne as
|
|
150
|
-
|
|
151
|
-
Ce as
|
|
152
|
-
he as
|
|
153
|
-
be as
|
|
154
|
-
Fe as
|
|
155
|
-
De as
|
|
156
|
-
ge as
|
|
157
|
-
Se as
|
|
158
|
-
Be as
|
|
159
|
-
He as
|
|
160
|
-
Oe as
|
|
161
|
-
Ve as
|
|
162
|
-
ze as
|
|
163
|
-
Ee as
|
|
164
|
-
je as
|
|
165
|
-
qe as
|
|
166
|
-
Je as
|
|
167
|
-
Xe as
|
|
168
|
-
Ze as
|
|
169
|
-
$e as
|
|
170
|
-
er as
|
|
171
|
-
ar as
|
|
172
|
-
fr as
|
|
173
|
-
sr as
|
|
174
|
-
pr as
|
|
175
|
-
|
|
176
|
-
nr as
|
|
177
|
-
|
|
136
|
+
zo as ImpagoIcon,
|
|
137
|
+
Eo as Info,
|
|
138
|
+
jo as InfoFinanciera,
|
|
139
|
+
qo as KeyboardArrowDown,
|
|
140
|
+
Jo as KeyboardArrowUp,
|
|
141
|
+
Xo as LocationOn,
|
|
142
|
+
Zo as LocationSearching,
|
|
143
|
+
$o as LockIcon,
|
|
144
|
+
ee as MailIcon,
|
|
145
|
+
ae as Male,
|
|
146
|
+
fe as MasAcciones,
|
|
147
|
+
se as Medical,
|
|
148
|
+
pe as Menu,
|
|
149
|
+
ue as MoreVert,
|
|
150
|
+
ne as NextIcon,
|
|
151
|
+
ie as Notes,
|
|
152
|
+
Ce as NumPolizaIcon,
|
|
153
|
+
he as OpenInFull,
|
|
154
|
+
be as Pep,
|
|
155
|
+
Fe as Person,
|
|
156
|
+
De as PersonCancel,
|
|
157
|
+
ge as PhotoLibrary,
|
|
158
|
+
Se as Planet,
|
|
159
|
+
Be as PolizaIcon,
|
|
160
|
+
He as Public,
|
|
161
|
+
Oe as ReembolsosIcon,
|
|
162
|
+
Ve as Refresh,
|
|
163
|
+
ze as RembolsosIcon,
|
|
164
|
+
Ee as Renovaciones,
|
|
165
|
+
je as Replay,
|
|
166
|
+
qe as Reply,
|
|
167
|
+
Je as SearchIcon,
|
|
168
|
+
Xe as Send,
|
|
169
|
+
Ze as Share,
|
|
170
|
+
$e as SmallFamily,
|
|
171
|
+
er as Smartphone,
|
|
172
|
+
ar as Tutoriales,
|
|
173
|
+
fr as UnfoldMore,
|
|
174
|
+
sr as VerifiedUser,
|
|
175
|
+
pr as Visibility,
|
|
176
|
+
ur as VisibilityOff,
|
|
177
|
+
nr as Warning,
|
|
178
|
+
ir as WeightIcon,
|
|
179
|
+
Cr as Whatsapp
|
|
178
180
|
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export { default as HeightIcon } from './components/HeightIcon';
|
|
|
48
48
|
export { default as Help } from './components/Help';
|
|
49
49
|
export { default as HistorialIcon } from './components/HistorialIcon';
|
|
50
50
|
export { default as IdCodigoBroker } from './components/IdCodigoBroker';
|
|
51
|
+
export { default as ImpagoIcon } from './components/ImpagoIcon';
|
|
51
52
|
export { default as Info } from './components/Info';
|
|
52
53
|
export { default as InfoFinanciera } from './components/InfoFinanciera';
|
|
53
54
|
export { default as KeyboardArrowDown } from './components/KeyboardArrowDown';
|
package/dist/icons/index.js
CHANGED
|
@@ -48,55 +48,56 @@ import { default as Eo } from "./components/HeightIcon.js";
|
|
|
48
48
|
import { default as jo } from "./components/Help.js";
|
|
49
49
|
import { default as To } from "./components/HistorialIcon.js";
|
|
50
50
|
import { default as Jo } from "./components/IdCodigoBroker.js";
|
|
51
|
-
import { default as Xo } from "./components/
|
|
52
|
-
import { default as Zo } from "./components/
|
|
53
|
-
import { default as $o } from "./components/
|
|
54
|
-
import { default as ee } from "./components/
|
|
55
|
-
import { default as ae } from "./components/
|
|
56
|
-
import { default as fe } from "./components/
|
|
57
|
-
import { default as se } from "./components/
|
|
58
|
-
import { default as pe } from "./components/
|
|
59
|
-
import { default as ue } from "./components/
|
|
60
|
-
import { default as ne } from "./components/
|
|
61
|
-
import { default as ce } from "./components/
|
|
62
|
-
import { default as Ce } from "./components/
|
|
63
|
-
import { default as he } from "./components/
|
|
64
|
-
import { default as Pe } from "./components/
|
|
65
|
-
import { default as ge } from "./components/
|
|
66
|
-
import { default as Fe } from "./components/
|
|
67
|
-
import { default as De } from "./components/
|
|
68
|
-
import { default as Be } from "./components/
|
|
69
|
-
import { default as Le } from "./components/
|
|
70
|
-
import { default as Oe } from "./components/
|
|
71
|
-
import { default as He } from "./components/
|
|
72
|
-
import { default as Ve } from "./components/
|
|
73
|
-
import { default as ze } from "./components/
|
|
74
|
-
import { default as Ee } from "./components/
|
|
75
|
-
import { default as je } from "./components/
|
|
76
|
-
import { default as Te } from "./components/
|
|
77
|
-
import { default as Je } from "./components/
|
|
78
|
-
import { default as Xe } from "./components/
|
|
79
|
-
import { default as Ze } from "./components/
|
|
80
|
-
import { default as $e } from "./components/
|
|
81
|
-
import { default as er } from "./components/
|
|
82
|
-
import { default as ar } from "./components/
|
|
83
|
-
import { default as fr } from "./components/
|
|
84
|
-
import { default as sr } from "./components/
|
|
85
|
-
import { default as pr } from "./components/
|
|
86
|
-
import { default as ur } from "./components/
|
|
87
|
-
import { default as nr } from "./components/
|
|
88
|
-
import { default as cr } from "./components/
|
|
89
|
-
import { default as Cr } from "./components/
|
|
90
|
-
import { default as hr } from "./components/
|
|
91
|
-
import { default as Pr } from "./components/
|
|
92
|
-
import { default as gr } from "./components/
|
|
93
|
-
import { default as Fr } from "./components/
|
|
94
|
-
import { default as Dr } from "./components/
|
|
95
|
-
import { default as Br } from "./components/
|
|
96
|
-
import { default as Lr } from "./components/
|
|
97
|
-
import { default as Or } from "./components/
|
|
98
|
-
import { default as Hr } from "./components/
|
|
99
|
-
import { default as Vr } from "./components/
|
|
51
|
+
import { default as Xo } from "./components/ImpagoIcon.js";
|
|
52
|
+
import { default as Zo } from "./components/Info.js";
|
|
53
|
+
import { default as $o } from "./components/InfoFinanciera.js";
|
|
54
|
+
import { default as ee } from "./components/KeyboardArrowDown.js";
|
|
55
|
+
import { default as ae } from "./components/KeyboardArrowUp.js";
|
|
56
|
+
import { default as fe } from "./components/LocationOn.js";
|
|
57
|
+
import { default as se } from "./components/LocationSearching.js";
|
|
58
|
+
import { default as pe } from "./components/LockIcon.js";
|
|
59
|
+
import { default as ue } from "./components/MailIcon.js";
|
|
60
|
+
import { default as ne } from "./components/Male.js";
|
|
61
|
+
import { default as ce } from "./components/MasAcciones.js";
|
|
62
|
+
import { default as Ce } from "./components/Medical.js";
|
|
63
|
+
import { default as he } from "./components/Menu.js";
|
|
64
|
+
import { default as Pe } from "./components/MoreVert.js";
|
|
65
|
+
import { default as ge } from "./components/NextIcon.js";
|
|
66
|
+
import { default as Fe } from "./components/Notes.js";
|
|
67
|
+
import { default as De } from "./components/NumPolizaIcon.js";
|
|
68
|
+
import { default as Be } from "./components/OpenInFull.js";
|
|
69
|
+
import { default as Le } from "./components/OpenPanel.js";
|
|
70
|
+
import { default as Oe } from "./components/Pep.js";
|
|
71
|
+
import { default as He } from "./components/Person.js";
|
|
72
|
+
import { default as Ve } from "./components/PersonCancel.js";
|
|
73
|
+
import { default as ze } from "./components/PhotoLibrary.js";
|
|
74
|
+
import { default as Ee } from "./components/Planet.js";
|
|
75
|
+
import { default as je } from "./components/PolizaIcon.js";
|
|
76
|
+
import { default as Te } from "./components/Public.js";
|
|
77
|
+
import { default as Je } from "./components/ReembolsosIcon.js";
|
|
78
|
+
import { default as Xe } from "./components/Refresh.js";
|
|
79
|
+
import { default as Ze } from "./components/RembolsosIcon.js";
|
|
80
|
+
import { default as $e } from "./components/Renovaciones.js";
|
|
81
|
+
import { default as er } from "./components/Replay.js";
|
|
82
|
+
import { default as ar } from "./components/Reply.js";
|
|
83
|
+
import { default as fr } from "./components/SearchIcon.js";
|
|
84
|
+
import { default as sr } from "./components/Send.js";
|
|
85
|
+
import { default as pr } from "./components/Settings.js";
|
|
86
|
+
import { default as ur } from "./components/Share.js";
|
|
87
|
+
import { default as nr } from "./components/SmallFamily.js";
|
|
88
|
+
import { default as cr } from "./components/Smartphone.js";
|
|
89
|
+
import { default as Cr } from "./components/StepDone.js";
|
|
90
|
+
import { default as hr } from "./components/StepInProgress.js";
|
|
91
|
+
import { default as Pr } from "./components/StepPending.js";
|
|
92
|
+
import { default as gr } from "./components/Tutoriales.js";
|
|
93
|
+
import { default as Fr } from "./components/UnfoldMore.js";
|
|
94
|
+
import { default as Dr } from "./components/UserGroup.js";
|
|
95
|
+
import { default as Br } from "./components/VerifiedUser.js";
|
|
96
|
+
import { default as Lr } from "./components/Visibility.js";
|
|
97
|
+
import { default as Or } from "./components/VisibilityOff.js";
|
|
98
|
+
import { default as Hr } from "./components/Warning.js";
|
|
99
|
+
import { default as Vr } from "./components/WeightIcon.js";
|
|
100
|
+
import { default as zr } from "./components/Whatsapp.js";
|
|
100
101
|
export {
|
|
101
102
|
r as Add,
|
|
102
103
|
t as AddAPhoto,
|
|
@@ -148,53 +149,54 @@ export {
|
|
|
148
149
|
jo as Help,
|
|
149
150
|
To as HistorialIcon,
|
|
150
151
|
Jo as IdCodigoBroker,
|
|
151
|
-
Xo as
|
|
152
|
-
Zo as
|
|
153
|
-
$o as
|
|
154
|
-
ee as
|
|
155
|
-
ae as
|
|
156
|
-
fe as
|
|
157
|
-
se as
|
|
158
|
-
pe as
|
|
159
|
-
ue as
|
|
160
|
-
ne as
|
|
161
|
-
ce as
|
|
162
|
-
Ce as
|
|
163
|
-
he as
|
|
164
|
-
Pe as
|
|
165
|
-
ge as
|
|
166
|
-
Fe as
|
|
167
|
-
De as
|
|
168
|
-
Be as
|
|
169
|
-
Le as
|
|
170
|
-
Oe as
|
|
171
|
-
He as
|
|
172
|
-
Ve as
|
|
173
|
-
ze as
|
|
174
|
-
Ee as
|
|
175
|
-
je as
|
|
176
|
-
Te as
|
|
177
|
-
Je as
|
|
178
|
-
Xe as
|
|
179
|
-
Ze as
|
|
180
|
-
$e as
|
|
181
|
-
er as
|
|
182
|
-
ar as
|
|
183
|
-
fr as
|
|
184
|
-
sr as
|
|
185
|
-
pr as
|
|
186
|
-
ur as
|
|
187
|
-
nr as
|
|
188
|
-
cr as
|
|
189
|
-
Cr as
|
|
190
|
-
hr as
|
|
191
|
-
Pr as
|
|
192
|
-
gr as
|
|
193
|
-
Fr as
|
|
194
|
-
Dr as
|
|
195
|
-
Br as
|
|
196
|
-
Lr as
|
|
197
|
-
Or as
|
|
198
|
-
Hr as
|
|
199
|
-
Vr as
|
|
152
|
+
Xo as ImpagoIcon,
|
|
153
|
+
Zo as Info,
|
|
154
|
+
$o as InfoFinanciera,
|
|
155
|
+
ee as KeyboardArrowDown,
|
|
156
|
+
ae as KeyboardArrowUp,
|
|
157
|
+
fe as LocationOn,
|
|
158
|
+
se as LocationSearching,
|
|
159
|
+
pe as LockIcon,
|
|
160
|
+
ue as MailIcon,
|
|
161
|
+
ne as Male,
|
|
162
|
+
ce as MasAcciones,
|
|
163
|
+
Ce as Medical,
|
|
164
|
+
he as Menu,
|
|
165
|
+
Pe as MoreVert,
|
|
166
|
+
ge as NextIcon,
|
|
167
|
+
Fe as Notes,
|
|
168
|
+
De as NumPolizaIcon,
|
|
169
|
+
Be as OpenInFull,
|
|
170
|
+
Le as OpenPanel,
|
|
171
|
+
Oe as Pep,
|
|
172
|
+
He as Person,
|
|
173
|
+
Ve as PersonCancel,
|
|
174
|
+
ze as PhotoLibrary,
|
|
175
|
+
Ee as Planet,
|
|
176
|
+
je as PolizaIcon,
|
|
177
|
+
Te as Public,
|
|
178
|
+
Je as ReembolsosIcon,
|
|
179
|
+
Xe as Refresh,
|
|
180
|
+
Ze as RembolsosIcon,
|
|
181
|
+
$e as Renovaciones,
|
|
182
|
+
er as Replay,
|
|
183
|
+
ar as Reply,
|
|
184
|
+
fr as SearchIcon,
|
|
185
|
+
sr as Send,
|
|
186
|
+
pr as Settings,
|
|
187
|
+
ur as Share,
|
|
188
|
+
nr as SmallFamily,
|
|
189
|
+
cr as Smartphone,
|
|
190
|
+
Cr as StepDone,
|
|
191
|
+
hr as StepInProgress,
|
|
192
|
+
Pr as StepPending,
|
|
193
|
+
gr as Tutoriales,
|
|
194
|
+
Fr as UnfoldMore,
|
|
195
|
+
Dr as UserGroup,
|
|
196
|
+
Br as VerifiedUser,
|
|
197
|
+
Lr as Visibility,
|
|
198
|
+
Or as VisibilityOff,
|
|
199
|
+
Hr as Warning,
|
|
200
|
+
Vr as WeightIcon,
|
|
201
|
+
zr as Whatsapp
|
|
200
202
|
};
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import o from "./icons/components/Add.js";
|
|
2
|
+
import r from "./icons/components/AddAPhoto.js";
|
|
3
|
+
import m from "./icons/components/AddIcon.js";
|
|
4
|
+
import i from "./icons/components/AlertIcon.js";
|
|
5
|
+
import t from "./icons/components/Apnfd.js";
|
|
6
|
+
import e from "./icons/components/Approve.js";
|
|
7
|
+
import n from "./icons/components/ArrowBack.js";
|
|
8
|
+
import p from "./icons/components/ArrowBackIosNew.js";
|
|
9
|
+
import g from "./icons/components/ArrowDown.js";
|
|
10
|
+
import f from "./icons/components/ArrowForwardIos.js";
|
|
11
|
+
import S from "./icons/components/ArrowRight.js";
|
|
12
|
+
import a from "./icons/components/ArrowUp.js";
|
|
13
|
+
import v from "./icons/components/ArrowsOutward.js";
|
|
14
|
+
import c from "./icons/components/AttachFile.js";
|
|
15
|
+
import l from "./icons/components/BmiCollapsed.js";
|
|
16
|
+
import s from "./icons/components/BmiLogo.js";
|
|
17
|
+
import I from "./icons/components/BusinessCenter.js";
|
|
18
|
+
import d from "./icons/components/CalendarIcon.js";
|
|
19
|
+
import C from "./icons/components/Call.js";
|
|
20
|
+
import A from "./icons/components/CancelIcon.js";
|
|
21
|
+
import h from "./icons/components/Certificado.js";
|
|
22
|
+
import w from "./icons/components/ChatBubble.js";
|
|
23
|
+
import u from "./icons/components/CheckIcon.js";
|
|
24
|
+
import b from "./icons/components/ChevronLeft.js";
|
|
25
|
+
import P from "./icons/components/ClosePanel.js";
|
|
26
|
+
import y from "./icons/components/CobrarIcon.js";
|
|
27
|
+
import F from "./icons/components/Comisiones.js";
|
|
28
|
+
import D from "./icons/components/ComunicacionesIcon.js";
|
|
29
|
+
import M from "./icons/components/ContentCopy.js";
|
|
30
|
+
import B from "./icons/components/ConyugeIcon.js";
|
|
31
|
+
import R from "./icons/components/CotizacionesIcon.js";
|
|
32
|
+
import L from "./icons/components/Credentials.js";
|
|
33
|
+
import O from "./icons/components/CreditCard.js";
|
|
34
|
+
import k from "./icons/components/DashboardIcon.js";
|
|
35
|
+
import U from "./icons/components/Delete.js";
|
|
36
|
+
import H from "./icons/components/DeniedIcon.js";
|
|
37
|
+
import N from "./icons/components/Distance.js";
|
|
38
|
+
import V from "./icons/components/Documentos.js";
|
|
39
|
+
import z from "./icons/components/DownloadIcon.js";
|
|
40
|
+
import W from "./icons/components/EditIcon.js";
|
|
41
|
+
import x from "./icons/components/Female.js";
|
|
42
|
+
import j from "./icons/components/Filter.js";
|
|
43
|
+
import E from "./icons/components/Folder.js";
|
|
44
|
+
import K from "./icons/components/FondosExtranjero.js";
|
|
45
|
+
import _ from "./icons/components/Fumador.js";
|
|
46
|
+
import T from "./icons/components/HeadsetMic.js";
|
|
47
|
+
import G from "./icons/components/HeightIcon.js";
|
|
48
|
+
import q from "./icons/components/Help.js";
|
|
49
|
+
import J from "./icons/components/HistorialIcon.js";
|
|
50
|
+
import Q from "./icons/components/IdCodigoBroker.js";
|
|
51
|
+
import X from "./icons/components/ImpagoIcon.js";
|
|
52
|
+
import Y from "./icons/components/Info.js";
|
|
53
|
+
import Z from "./icons/components/InfoFinanciera.js";
|
|
54
|
+
import $ from "./icons/components/KeyboardArrowDown.js";
|
|
55
|
+
import oo from "./icons/components/KeyboardArrowUp.js";
|
|
56
|
+
import ro from "./icons/components/LocationOn.js";
|
|
57
|
+
import mo from "./icons/components/LocationSearching.js";
|
|
58
|
+
import io from "./icons/components/LockIcon.js";
|
|
59
|
+
import to from "./icons/components/MailIcon.js";
|
|
60
|
+
import eo from "./icons/components/Male.js";
|
|
61
|
+
import no from "./icons/components/MasAcciones.js";
|
|
62
|
+
import po from "./icons/components/Medical.js";
|
|
63
|
+
import go from "./icons/components/Menu.js";
|
|
64
|
+
import fo from "./icons/components/MoreVert.js";
|
|
65
|
+
import So from "./icons/components/NextIcon.js";
|
|
66
|
+
import ao from "./icons/components/Notes.js";
|
|
67
|
+
import vo from "./icons/components/NumPolizaIcon.js";
|
|
68
|
+
import co from "./icons/components/OpenInFull.js";
|
|
69
|
+
import lo from "./icons/components/OpenPanel.js";
|
|
70
|
+
import so from "./icons/components/Pep.js";
|
|
71
|
+
import Io from "./icons/components/Person.js";
|
|
72
|
+
import Co from "./icons/components/PersonCancel.js";
|
|
73
|
+
import Ao from "./icons/components/PhotoLibrary.js";
|
|
74
|
+
import ho from "./icons/components/Planet.js";
|
|
75
|
+
import wo from "./icons/components/PolizaIcon.js";
|
|
76
|
+
import uo from "./icons/components/Public.js";
|
|
77
|
+
import bo from "./icons/components/ReembolsosIcon.js";
|
|
78
|
+
import Po from "./icons/components/Refresh.js";
|
|
79
|
+
import yo from "./icons/components/RembolsosIcon.js";
|
|
80
|
+
import Fo from "./icons/components/Renovaciones.js";
|
|
81
|
+
import Do from "./icons/components/Replay.js";
|
|
82
|
+
import Mo from "./icons/components/Reply.js";
|
|
83
|
+
import Bo from "./icons/components/SearchIcon.js";
|
|
84
|
+
import Ro from "./icons/components/Send.js";
|
|
85
|
+
import Lo from "./icons/components/Settings.js";
|
|
86
|
+
import Oo from "./icons/components/Share.js";
|
|
87
|
+
import ko from "./icons/components/SmallFamily.js";
|
|
88
|
+
import Uo from "./icons/components/Smartphone.js";
|
|
89
|
+
import Ho from "./icons/components/StepDone.js";
|
|
90
|
+
import No from "./icons/components/StepInProgress.js";
|
|
91
|
+
import Vo from "./icons/components/StepPending.js";
|
|
92
|
+
import zo from "./icons/components/Tutoriales.js";
|
|
93
|
+
import Wo from "./icons/components/UnfoldMore.js";
|
|
94
|
+
import xo from "./icons/components/UserGroup.js";
|
|
95
|
+
import jo from "./icons/components/VerifiedUser.js";
|
|
96
|
+
import Eo from "./icons/components/Visibility.js";
|
|
97
|
+
import Ko from "./icons/components/VisibilityOff.js";
|
|
98
|
+
import _o from "./icons/components/Warning.js";
|
|
99
|
+
import To from "./icons/components/WeightIcon.js";
|
|
100
|
+
import Go from "./icons/components/Whatsapp.js";
|
|
101
|
+
const Wm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
102
|
+
__proto__: null,
|
|
103
|
+
Add: o,
|
|
104
|
+
AddAPhoto: r,
|
|
105
|
+
AddIcon: m,
|
|
106
|
+
AlertIcon: i,
|
|
107
|
+
Apnfd: t,
|
|
108
|
+
Approve: e,
|
|
109
|
+
ArrowBack: n,
|
|
110
|
+
ArrowBackIosNew: p,
|
|
111
|
+
ArrowDown: g,
|
|
112
|
+
ArrowForwardIos: f,
|
|
113
|
+
ArrowRight: S,
|
|
114
|
+
ArrowUp: a,
|
|
115
|
+
ArrowsOutward: v,
|
|
116
|
+
AttachFile: c,
|
|
117
|
+
BmiCollapsed: l,
|
|
118
|
+
BmiLogo: s,
|
|
119
|
+
BusinessCenter: I,
|
|
120
|
+
CalendarIcon: d,
|
|
121
|
+
Call: C,
|
|
122
|
+
CancelIcon: A,
|
|
123
|
+
Certificado: h,
|
|
124
|
+
ChatBubble: w,
|
|
125
|
+
CheckIcon: u,
|
|
126
|
+
ChevronLeft: b,
|
|
127
|
+
ClosePanel: P,
|
|
128
|
+
CobrarIcon: y,
|
|
129
|
+
Comisiones: F,
|
|
130
|
+
ComunicacionesIcon: D,
|
|
131
|
+
ContentCopy: M,
|
|
132
|
+
ConyugeIcon: B,
|
|
133
|
+
CotizacionesIcon: R,
|
|
134
|
+
Credentials: L,
|
|
135
|
+
CreditCard: O,
|
|
136
|
+
DashboardIcon: k,
|
|
137
|
+
Delete: U,
|
|
138
|
+
DeniedIcon: H,
|
|
139
|
+
Distance: N,
|
|
140
|
+
Documentos: V,
|
|
141
|
+
DownloadIcon: z,
|
|
142
|
+
EditIcon: W,
|
|
143
|
+
Female: x,
|
|
144
|
+
Filter: j,
|
|
145
|
+
Folder: E,
|
|
146
|
+
FondosExtranjero: K,
|
|
147
|
+
Fumador: _,
|
|
148
|
+
HeadsetMic: T,
|
|
149
|
+
HeightIcon: G,
|
|
150
|
+
Help: q,
|
|
151
|
+
HistorialIcon: J,
|
|
152
|
+
IdCodigoBroker: Q,
|
|
153
|
+
ImpagoIcon: X,
|
|
154
|
+
Info: Y,
|
|
155
|
+
InfoFinanciera: Z,
|
|
156
|
+
KeyboardArrowDown: $,
|
|
157
|
+
KeyboardArrowUp: oo,
|
|
158
|
+
LocationOn: ro,
|
|
159
|
+
LocationSearching: mo,
|
|
160
|
+
LockIcon: io,
|
|
161
|
+
MailIcon: to,
|
|
162
|
+
Male: eo,
|
|
163
|
+
MasAcciones: no,
|
|
164
|
+
Medical: po,
|
|
165
|
+
Menu: go,
|
|
166
|
+
MoreVert: fo,
|
|
167
|
+
NextIcon: So,
|
|
168
|
+
Notes: ao,
|
|
169
|
+
NumPolizaIcon: vo,
|
|
170
|
+
OpenInFull: co,
|
|
171
|
+
OpenPanel: lo,
|
|
172
|
+
Pep: so,
|
|
173
|
+
Person: Io,
|
|
174
|
+
PersonCancel: Co,
|
|
175
|
+
PhotoLibrary: Ao,
|
|
176
|
+
Planet: ho,
|
|
177
|
+
PolizaIcon: wo,
|
|
178
|
+
Public: uo,
|
|
179
|
+
ReembolsosIcon: bo,
|
|
180
|
+
Refresh: Po,
|
|
181
|
+
RembolsosIcon: yo,
|
|
182
|
+
Renovaciones: Fo,
|
|
183
|
+
Replay: Do,
|
|
184
|
+
Reply: Mo,
|
|
185
|
+
SearchIcon: Bo,
|
|
186
|
+
Send: Ro,
|
|
187
|
+
Settings: Lo,
|
|
188
|
+
Share: Oo,
|
|
189
|
+
SmallFamily: ko,
|
|
190
|
+
Smartphone: Uo,
|
|
191
|
+
StepDone: Ho,
|
|
192
|
+
StepInProgress: No,
|
|
193
|
+
StepPending: Vo,
|
|
194
|
+
Tutoriales: zo,
|
|
195
|
+
UnfoldMore: Wo,
|
|
196
|
+
UserGroup: xo,
|
|
197
|
+
VerifiedUser: jo,
|
|
198
|
+
Visibility: Eo,
|
|
199
|
+
VisibilityOff: Ko,
|
|
200
|
+
Warning: _o,
|
|
201
|
+
WeightIcon: To,
|
|
202
|
+
Whatsapp: Go
|
|
203
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
204
|
+
export {
|
|
205
|
+
Wm as I
|
|
206
|
+
};
|
package/package.json
CHANGED
package/dist/index-CyqvUUfR.js
DELETED
|
@@ -1,204 +0,0 @@
|
|
|
1
|
-
import o from "./icons/components/Add.js";
|
|
2
|
-
import r from "./icons/components/AddAPhoto.js";
|
|
3
|
-
import m from "./icons/components/AddIcon.js";
|
|
4
|
-
import i from "./icons/components/AlertIcon.js";
|
|
5
|
-
import t from "./icons/components/Apnfd.js";
|
|
6
|
-
import e from "./icons/components/Approve.js";
|
|
7
|
-
import n from "./icons/components/ArrowBack.js";
|
|
8
|
-
import p from "./icons/components/ArrowBackIosNew.js";
|
|
9
|
-
import g from "./icons/components/ArrowDown.js";
|
|
10
|
-
import f from "./icons/components/ArrowForwardIos.js";
|
|
11
|
-
import S from "./icons/components/ArrowRight.js";
|
|
12
|
-
import a from "./icons/components/ArrowUp.js";
|
|
13
|
-
import v from "./icons/components/ArrowsOutward.js";
|
|
14
|
-
import c from "./icons/components/AttachFile.js";
|
|
15
|
-
import l from "./icons/components/BmiCollapsed.js";
|
|
16
|
-
import s from "./icons/components/BmiLogo.js";
|
|
17
|
-
import d from "./icons/components/BusinessCenter.js";
|
|
18
|
-
import I from "./icons/components/CalendarIcon.js";
|
|
19
|
-
import C from "./icons/components/Call.js";
|
|
20
|
-
import A from "./icons/components/CancelIcon.js";
|
|
21
|
-
import h from "./icons/components/Certificado.js";
|
|
22
|
-
import w from "./icons/components/ChatBubble.js";
|
|
23
|
-
import u from "./icons/components/CheckIcon.js";
|
|
24
|
-
import b from "./icons/components/ChevronLeft.js";
|
|
25
|
-
import P from "./icons/components/ClosePanel.js";
|
|
26
|
-
import y from "./icons/components/CobrarIcon.js";
|
|
27
|
-
import F from "./icons/components/Comisiones.js";
|
|
28
|
-
import D from "./icons/components/ComunicacionesIcon.js";
|
|
29
|
-
import M from "./icons/components/ContentCopy.js";
|
|
30
|
-
import B from "./icons/components/ConyugeIcon.js";
|
|
31
|
-
import R from "./icons/components/CotizacionesIcon.js";
|
|
32
|
-
import L from "./icons/components/Credentials.js";
|
|
33
|
-
import O from "./icons/components/CreditCard.js";
|
|
34
|
-
import k from "./icons/components/DashboardIcon.js";
|
|
35
|
-
import U from "./icons/components/Delete.js";
|
|
36
|
-
import H from "./icons/components/DeniedIcon.js";
|
|
37
|
-
import N from "./icons/components/Distance.js";
|
|
38
|
-
import V from "./icons/components/Documentos.js";
|
|
39
|
-
import z from "./icons/components/DownloadIcon.js";
|
|
40
|
-
import W from "./icons/components/EditIcon.js";
|
|
41
|
-
import x from "./icons/components/Female.js";
|
|
42
|
-
import j from "./icons/components/Filter.js";
|
|
43
|
-
import E from "./icons/components/Folder.js";
|
|
44
|
-
import K from "./icons/components/FondosExtranjero.js";
|
|
45
|
-
import _ from "./icons/components/Fumador.js";
|
|
46
|
-
import T from "./icons/components/HeadsetMic.js";
|
|
47
|
-
import G from "./icons/components/HeightIcon.js";
|
|
48
|
-
import q from "./icons/components/Help.js";
|
|
49
|
-
import J from "./icons/components/HistorialIcon.js";
|
|
50
|
-
import Q from "./icons/components/IdCodigoBroker.js";
|
|
51
|
-
import X from "./icons/components/Info.js";
|
|
52
|
-
import Y from "./icons/components/InfoFinanciera.js";
|
|
53
|
-
import Z from "./icons/components/KeyboardArrowDown.js";
|
|
54
|
-
import $ from "./icons/components/KeyboardArrowUp.js";
|
|
55
|
-
import oo from "./icons/components/LocationOn.js";
|
|
56
|
-
import ro from "./icons/components/LocationSearching.js";
|
|
57
|
-
import mo from "./icons/components/LockIcon.js";
|
|
58
|
-
import io from "./icons/components/MailIcon.js";
|
|
59
|
-
import to from "./icons/components/Male.js";
|
|
60
|
-
import eo from "./icons/components/MasAcciones.js";
|
|
61
|
-
import no from "./icons/components/Medical.js";
|
|
62
|
-
import po from "./icons/components/Menu.js";
|
|
63
|
-
import go from "./icons/components/MoreVert.js";
|
|
64
|
-
import fo from "./icons/components/NextIcon.js";
|
|
65
|
-
import So from "./icons/components/Notes.js";
|
|
66
|
-
import ao from "./icons/components/NumPolizaIcon.js";
|
|
67
|
-
import vo from "./icons/components/OpenInFull.js";
|
|
68
|
-
import co from "./icons/components/OpenPanel.js";
|
|
69
|
-
import lo from "./icons/components/Pep.js";
|
|
70
|
-
import so from "./icons/components/Person.js";
|
|
71
|
-
import Io from "./icons/components/PersonCancel.js";
|
|
72
|
-
import Co from "./icons/components/PhotoLibrary.js";
|
|
73
|
-
import Ao from "./icons/components/Planet.js";
|
|
74
|
-
import ho from "./icons/components/PolizaIcon.js";
|
|
75
|
-
import wo from "./icons/components/Public.js";
|
|
76
|
-
import uo from "./icons/components/ReembolsosIcon.js";
|
|
77
|
-
import bo from "./icons/components/Refresh.js";
|
|
78
|
-
import Po from "./icons/components/RembolsosIcon.js";
|
|
79
|
-
import yo from "./icons/components/Renovaciones.js";
|
|
80
|
-
import Fo from "./icons/components/Replay.js";
|
|
81
|
-
import Do from "./icons/components/Reply.js";
|
|
82
|
-
import Mo from "./icons/components/SearchIcon.js";
|
|
83
|
-
import Bo from "./icons/components/Send.js";
|
|
84
|
-
import Ro from "./icons/components/Settings.js";
|
|
85
|
-
import Lo from "./icons/components/Share.js";
|
|
86
|
-
import Oo from "./icons/components/SmallFamily.js";
|
|
87
|
-
import ko from "./icons/components/Smartphone.js";
|
|
88
|
-
import Uo from "./icons/components/StepDone.js";
|
|
89
|
-
import Ho from "./icons/components/StepInProgress.js";
|
|
90
|
-
import No from "./icons/components/StepPending.js";
|
|
91
|
-
import Vo from "./icons/components/Tutoriales.js";
|
|
92
|
-
import zo from "./icons/components/UnfoldMore.js";
|
|
93
|
-
import Wo from "./icons/components/UserGroup.js";
|
|
94
|
-
import xo from "./icons/components/VerifiedUser.js";
|
|
95
|
-
import jo from "./icons/components/Visibility.js";
|
|
96
|
-
import Eo from "./icons/components/VisibilityOff.js";
|
|
97
|
-
import Ko from "./icons/components/Warning.js";
|
|
98
|
-
import _o from "./icons/components/WeightIcon.js";
|
|
99
|
-
import To from "./icons/components/Whatsapp.js";
|
|
100
|
-
const Vm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
101
|
-
__proto__: null,
|
|
102
|
-
Add: o,
|
|
103
|
-
AddAPhoto: r,
|
|
104
|
-
AddIcon: m,
|
|
105
|
-
AlertIcon: i,
|
|
106
|
-
Apnfd: t,
|
|
107
|
-
Approve: e,
|
|
108
|
-
ArrowBack: n,
|
|
109
|
-
ArrowBackIosNew: p,
|
|
110
|
-
ArrowDown: g,
|
|
111
|
-
ArrowForwardIos: f,
|
|
112
|
-
ArrowRight: S,
|
|
113
|
-
ArrowUp: a,
|
|
114
|
-
ArrowsOutward: v,
|
|
115
|
-
AttachFile: c,
|
|
116
|
-
BmiCollapsed: l,
|
|
117
|
-
BmiLogo: s,
|
|
118
|
-
BusinessCenter: d,
|
|
119
|
-
CalendarIcon: I,
|
|
120
|
-
Call: C,
|
|
121
|
-
CancelIcon: A,
|
|
122
|
-
Certificado: h,
|
|
123
|
-
ChatBubble: w,
|
|
124
|
-
CheckIcon: u,
|
|
125
|
-
ChevronLeft: b,
|
|
126
|
-
ClosePanel: P,
|
|
127
|
-
CobrarIcon: y,
|
|
128
|
-
Comisiones: F,
|
|
129
|
-
ComunicacionesIcon: D,
|
|
130
|
-
ContentCopy: M,
|
|
131
|
-
ConyugeIcon: B,
|
|
132
|
-
CotizacionesIcon: R,
|
|
133
|
-
Credentials: L,
|
|
134
|
-
CreditCard: O,
|
|
135
|
-
DashboardIcon: k,
|
|
136
|
-
Delete: U,
|
|
137
|
-
DeniedIcon: H,
|
|
138
|
-
Distance: N,
|
|
139
|
-
Documentos: V,
|
|
140
|
-
DownloadIcon: z,
|
|
141
|
-
EditIcon: W,
|
|
142
|
-
Female: x,
|
|
143
|
-
Filter: j,
|
|
144
|
-
Folder: E,
|
|
145
|
-
FondosExtranjero: K,
|
|
146
|
-
Fumador: _,
|
|
147
|
-
HeadsetMic: T,
|
|
148
|
-
HeightIcon: G,
|
|
149
|
-
Help: q,
|
|
150
|
-
HistorialIcon: J,
|
|
151
|
-
IdCodigoBroker: Q,
|
|
152
|
-
Info: X,
|
|
153
|
-
InfoFinanciera: Y,
|
|
154
|
-
KeyboardArrowDown: Z,
|
|
155
|
-
KeyboardArrowUp: $,
|
|
156
|
-
LocationOn: oo,
|
|
157
|
-
LocationSearching: ro,
|
|
158
|
-
LockIcon: mo,
|
|
159
|
-
MailIcon: io,
|
|
160
|
-
Male: to,
|
|
161
|
-
MasAcciones: eo,
|
|
162
|
-
Medical: no,
|
|
163
|
-
Menu: po,
|
|
164
|
-
MoreVert: go,
|
|
165
|
-
NextIcon: fo,
|
|
166
|
-
Notes: So,
|
|
167
|
-
NumPolizaIcon: ao,
|
|
168
|
-
OpenInFull: vo,
|
|
169
|
-
OpenPanel: co,
|
|
170
|
-
Pep: lo,
|
|
171
|
-
Person: so,
|
|
172
|
-
PersonCancel: Io,
|
|
173
|
-
PhotoLibrary: Co,
|
|
174
|
-
Planet: Ao,
|
|
175
|
-
PolizaIcon: ho,
|
|
176
|
-
Public: wo,
|
|
177
|
-
ReembolsosIcon: uo,
|
|
178
|
-
Refresh: bo,
|
|
179
|
-
RembolsosIcon: Po,
|
|
180
|
-
Renovaciones: yo,
|
|
181
|
-
Replay: Fo,
|
|
182
|
-
Reply: Do,
|
|
183
|
-
SearchIcon: Mo,
|
|
184
|
-
Send: Bo,
|
|
185
|
-
Settings: Ro,
|
|
186
|
-
Share: Lo,
|
|
187
|
-
SmallFamily: Oo,
|
|
188
|
-
Smartphone: ko,
|
|
189
|
-
StepDone: Uo,
|
|
190
|
-
StepInProgress: Ho,
|
|
191
|
-
StepPending: No,
|
|
192
|
-
Tutoriales: Vo,
|
|
193
|
-
UnfoldMore: zo,
|
|
194
|
-
UserGroup: Wo,
|
|
195
|
-
VerifiedUser: xo,
|
|
196
|
-
Visibility: jo,
|
|
197
|
-
VisibilityOff: Eo,
|
|
198
|
-
Warning: Ko,
|
|
199
|
-
WeightIcon: _o,
|
|
200
|
-
Whatsapp: To
|
|
201
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
202
|
-
export {
|
|
203
|
-
Vm as I
|
|
204
|
-
};
|