bmi-next-brokers 2.7.4 → 2.7.5
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/assets/index8.css +1 -1
- package/dist/components/modal/index.d.ts +4 -1
- package/dist/components/modal/index.js +100 -91
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/ChevronLeft.js +6 -6
- package/dist/icons/components/Kidneys.d.ts +3 -0
- package/dist/icons/components/Kidneys.js +10 -0
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/icons/components/index.js +250 -248
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +188 -186
- package/dist/{index-DHFu2TLh.js → index-6XrDWEmb.js} +190 -188
- package/package.json +1 -1
package/dist/assets/index8.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._modalOverlay_y7vpx_1{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#0009;display:flex;justify-content:center;align-items:center;animation:_overlayFadeIn_y7vpx_1 .25s ease-in-out forwards;overflow:hidden}._modalOverlay_y7vpx_1._closing_y7vpx_15{animation:_overlayFadeOut_y7vpx_1 .25s ease-in-out forwards}@keyframes _overlayFadeIn_y7vpx_1{0%{opacity:0}to{opacity:1}}@keyframes _overlayFadeOut_y7vpx_1{0%{opacity:1}to{opacity:0}}._modalLayout_y7vpx_37{display:flex;gap:20px;justify-content:center;align-items:flex-start;width:100%}._modal_y7vpx_1{display:flex;flex-direction:column;border-radius:24px;background-color:#fff;box-shadow:0 4px 6px #0000001a;max-height:calc(100dvh - 15px);margin-inline:15px;width:100%}._modalHeader_y7vpx_57{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;gap:8px}._modalHeader_y7vpx_57._withBorder_y7vpx_65{border-bottom:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._modalTitle_y7vpx_70{color:var(--Blacks-Black, #000);font-size:20px;font-style:normal;font-weight:600;line-height:24px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%}._closeIcon_y7vpx_82{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}._modalBody_y7vpx_90{display:flex;flex-direction:column;flex:1;padding:0 16px 16px}._modalBody_y7vpx_90::-webkit-scrollbar{display:none}._modalFooter_y7vpx_101._withBorder_y7vpx_65{border-top:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._buttonsDiv_y7vpx_106{display:grid;grid-template-columns:1fr 1fr;margin-left:auto;width:fit-content;gap:19px;padding-inline:16px;margin-block:16px}._buttonsDiv_y7vpx_106._fullWidthFooter_y7vpx_116{width:100%}._buttonsDiv_y7vpx_106 :only-child{grid-column:2}._titleDiv_y7vpx_125{display:flex;flex-direction:row;gap:8px}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
+
import { IconName } from '../../icons/Icon';
|
|
2
3
|
import { ButtonSize, ButtonVariant } from '../Button';
|
|
3
4
|
import { IconConfig } from '../Button/Button';
|
|
4
5
|
type ModalButtonProps = {
|
|
@@ -34,6 +35,8 @@ export interface ModalProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
34
35
|
titleClassName?: string;
|
|
35
36
|
contentClassName?: string;
|
|
36
37
|
footerClassName?: string;
|
|
38
|
+
useBlueTitle?: boolean;
|
|
39
|
+
icon?: IconName;
|
|
37
40
|
}
|
|
38
41
|
/**
|
|
39
42
|
* Modal con overlay, header, body y footer configurable.
|
|
@@ -114,5 +117,5 @@ export interface ModalProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
114
117
|
* }
|
|
115
118
|
* ```
|
|
116
119
|
*/
|
|
117
|
-
export declare const Modal: ({ isOpen, title, children, width, confirmButton, cancelButton, zIndex, className, titleClassName, contentClassName, footerClassName, style, onClickOverlay, onClose, closeModal, withScroll, fullWidthFooter, helperElement, ...props }: ModalProps) => React.ReactPortal | null;
|
|
120
|
+
export declare const Modal: ({ isOpen, title, children, width, confirmButton, cancelButton, zIndex, className, titleClassName, contentClassName, footerClassName, style, onClickOverlay, onClose, closeModal, withScroll, fullWidthFooter, helperElement, useBlueTitle, icon, ...props }: ModalProps) => React.ReactPortal | null;
|
|
118
121
|
export {};
|
|
@@ -1,134 +1,143 @@
|
|
|
1
|
-
import { jsx as a, jsxs as
|
|
2
|
-
import { useRef as L, useState as
|
|
3
|
-
import { Icon as
|
|
1
|
+
import { jsx as a, jsxs as o } from "react/jsx-runtime";
|
|
2
|
+
import { useRef as L, useState as _, useEffect as Q } from "react";
|
|
3
|
+
import { Icon as O } from "../../icons/Icon.js";
|
|
4
4
|
import { useScrollLock as U } from "../../hooks/useScrollLock.js";
|
|
5
|
-
import { CloseContext as
|
|
6
|
-
import { Button as
|
|
7
|
-
import { createPortal as
|
|
8
|
-
import '../../assets/index8.css';const
|
|
9
|
-
modalOverlay:
|
|
10
|
-
closing:
|
|
11
|
-
modalLayout:
|
|
12
|
-
modal:
|
|
13
|
-
modalHeader:
|
|
14
|
-
withBorder:
|
|
15
|
-
modalTitle:
|
|
16
|
-
closeIcon:
|
|
17
|
-
modalBody:
|
|
18
|
-
modalFooter:
|
|
19
|
-
buttonsDiv:
|
|
20
|
-
fullWidthFooter:
|
|
21
|
-
|
|
5
|
+
import { CloseContext as n } from "../../hooks/useClose.js";
|
|
6
|
+
import { Button as f } from "../Button/Button.js";
|
|
7
|
+
import { createPortal as u } from "react-dom";
|
|
8
|
+
import '../../assets/index8.css';const B = "_modalOverlay_y7vpx_1", ss = "_closing_y7vpx_15", es = "_modalLayout_y7vpx_37", ls = "_modal_y7vpx_1", as = "_modalHeader_y7vpx_57", ds = "_withBorder_y7vpx_65", is = "_modalTitle_y7vpx_70", rs = "_closeIcon_y7vpx_82", os = "_modalBody_y7vpx_90", vs = "_modalFooter_y7vpx_101", hs = "_buttonsDiv_y7vpx_106", ys = "_fullWidthFooter_y7vpx_116", _s = "_titleDiv_y7vpx_125", l = {
|
|
9
|
+
modalOverlay: B,
|
|
10
|
+
closing: ss,
|
|
11
|
+
modalLayout: es,
|
|
12
|
+
modal: ls,
|
|
13
|
+
modalHeader: as,
|
|
14
|
+
withBorder: ds,
|
|
15
|
+
modalTitle: is,
|
|
16
|
+
closeIcon: rs,
|
|
17
|
+
modalBody: os,
|
|
18
|
+
modalFooter: vs,
|
|
19
|
+
buttonsDiv: hs,
|
|
20
|
+
fullWidthFooter: ys,
|
|
21
|
+
titleDiv: _s
|
|
22
|
+
}, Cs = ({
|
|
22
23
|
isOpen: m,
|
|
23
|
-
title:
|
|
24
|
-
children:
|
|
25
|
-
width:
|
|
24
|
+
title: p,
|
|
25
|
+
children: x,
|
|
26
|
+
width: t = 752,
|
|
26
27
|
confirmButton: s,
|
|
27
28
|
cancelButton: e,
|
|
28
|
-
zIndex:
|
|
29
|
-
className:
|
|
30
|
-
titleClassName:
|
|
31
|
-
contentClassName:
|
|
32
|
-
footerClassName:
|
|
33
|
-
style:
|
|
34
|
-
onClickOverlay:
|
|
35
|
-
onClose:
|
|
36
|
-
closeModal:
|
|
37
|
-
withScroll:
|
|
38
|
-
fullWidthFooter:
|
|
39
|
-
helperElement:
|
|
40
|
-
|
|
29
|
+
zIndex: z,
|
|
30
|
+
className: F,
|
|
31
|
+
titleClassName: w,
|
|
32
|
+
contentClassName: b,
|
|
33
|
+
footerClassName: g,
|
|
34
|
+
style: H,
|
|
35
|
+
onClickOverlay: h,
|
|
36
|
+
onClose: v,
|
|
37
|
+
closeModal: k,
|
|
38
|
+
withScroll: W = !0,
|
|
39
|
+
fullWidthFooter: A = !1,
|
|
40
|
+
helperElement: R,
|
|
41
|
+
useBlueTitle: $ = !1,
|
|
42
|
+
icon: N,
|
|
43
|
+
...T
|
|
41
44
|
}) => {
|
|
42
|
-
const C = L(null), [
|
|
45
|
+
const C = L(null), [j, D] = _(!1), y = L(null), [Y, c] = _(!1), [P, V] = _(!1);
|
|
43
46
|
U(m);
|
|
44
|
-
const
|
|
45
|
-
|
|
46
|
-
|
|
47
|
+
const r = () => {
|
|
48
|
+
D(!0), setTimeout(() => {
|
|
49
|
+
k(), D(!1);
|
|
47
50
|
}, 250);
|
|
48
|
-
},
|
|
49
|
-
var
|
|
50
|
-
(
|
|
51
|
-
}, X = async () => {
|
|
52
|
-
o !== !1 && (typeof o == "function" && await o(), i());
|
|
51
|
+
}, X = async (d) => {
|
|
52
|
+
var i;
|
|
53
|
+
(i = C.current) != null && i.contains(d.target) || h !== !1 && (typeof h == "function" && await h(), r());
|
|
53
54
|
}, Z = async () => {
|
|
55
|
+
v !== !1 && (typeof v == "function" && await v(), r());
|
|
56
|
+
}, M = async () => {
|
|
54
57
|
try {
|
|
55
|
-
s != null && s.action && await s.action(),
|
|
58
|
+
s != null && s.action && await s.action(), r();
|
|
56
59
|
} catch {
|
|
57
60
|
return;
|
|
58
61
|
}
|
|
59
|
-
},
|
|
62
|
+
}, q = async () => {
|
|
60
63
|
try {
|
|
61
|
-
e != null && e.action && await e.action(),
|
|
64
|
+
e != null && e.action && await e.action(), r();
|
|
62
65
|
} catch {
|
|
63
66
|
return;
|
|
64
67
|
}
|
|
65
|
-
},
|
|
66
|
-
return
|
|
67
|
-
if (!
|
|
68
|
-
const d =
|
|
69
|
-
|
|
68
|
+
}, G = e && Object.keys(e).length > 0, J = s && Object.keys(s).length > 0, I = G && (e.show ?? !0), E = J && (s.show ?? !0), K = `${l.modal} ${F || ""}`;
|
|
69
|
+
return Q(() => {
|
|
70
|
+
if (!y.current) return;
|
|
71
|
+
const d = y.current, i = () => {
|
|
72
|
+
V(d.scrollTop > 0), c(d.scrollHeight > d.clientHeight);
|
|
70
73
|
};
|
|
71
|
-
|
|
72
|
-
const S = new ResizeObserver(
|
|
74
|
+
i(), d.addEventListener("scroll", i);
|
|
75
|
+
const S = new ResizeObserver(i);
|
|
73
76
|
return S.observe(d), () => {
|
|
74
|
-
d.removeEventListener("scroll",
|
|
77
|
+
d.removeEventListener("scroll", i), S.disconnect();
|
|
75
78
|
};
|
|
76
|
-
}, [
|
|
79
|
+
}, [x]), m ? u(
|
|
77
80
|
/* @__PURE__ */ a(
|
|
78
81
|
"div",
|
|
79
82
|
{
|
|
80
|
-
className: `${l.modalOverlay} ${
|
|
81
|
-
style: { zIndex: 3e3 + (
|
|
82
|
-
onClick:
|
|
83
|
-
children: /* @__PURE__ */
|
|
84
|
-
/* @__PURE__ */
|
|
83
|
+
className: `${l.modalOverlay} ${j ? l.closing : ""}`,
|
|
84
|
+
style: { zIndex: 3e3 + (z || 0) },
|
|
85
|
+
onClick: X,
|
|
86
|
+
children: /* @__PURE__ */ o("div", { ref: C, className: l.modalLayout, children: [
|
|
87
|
+
/* @__PURE__ */ o(
|
|
85
88
|
"div",
|
|
86
89
|
{
|
|
87
|
-
className:
|
|
88
|
-
style: { maxWidth:
|
|
89
|
-
...
|
|
90
|
+
className: K,
|
|
91
|
+
style: { maxWidth: t, ...H },
|
|
92
|
+
...T,
|
|
90
93
|
children: [
|
|
91
|
-
/* @__PURE__ */
|
|
94
|
+
/* @__PURE__ */ o(
|
|
92
95
|
"div",
|
|
93
96
|
{
|
|
94
|
-
className: `${l.modalHeader} ${
|
|
97
|
+
className: `${l.modalHeader} ${P ? l.withBorder : ""} `,
|
|
95
98
|
children: [
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
99
|
+
p && /* @__PURE__ */ o("div", { className: l.titleDiv, children: [
|
|
100
|
+
N && /* @__PURE__ */ a("div", { className: l.titleIcon, children: /* @__PURE__ */ a(O, { name: N, size: 24, fill: $ ? "#2054A5" : "inherit" }) }),
|
|
101
|
+
/* @__PURE__ */ a(
|
|
102
|
+
"span",
|
|
103
|
+
{
|
|
104
|
+
className: `${l.modalTitle} ${w || ""} `,
|
|
105
|
+
style: {
|
|
106
|
+
color: $ ? "#2054A5" : "inherit"
|
|
107
|
+
},
|
|
108
|
+
children: p
|
|
109
|
+
}
|
|
110
|
+
)
|
|
111
|
+
] }),
|
|
112
|
+
v !== !1 && /* @__PURE__ */ a("div", { className: l.closeIcon, onClick: Z, children: /* @__PURE__ */ a(O, { name: "CloseDrawer", size: 24 }) })
|
|
104
113
|
]
|
|
105
114
|
}
|
|
106
115
|
),
|
|
107
116
|
/* @__PURE__ */ a(
|
|
108
117
|
"div",
|
|
109
118
|
{
|
|
110
|
-
className: `${l.modalBody} ${
|
|
119
|
+
className: `${l.modalBody} ${b || ""}`,
|
|
111
120
|
style: {
|
|
112
|
-
overflowY:
|
|
121
|
+
overflowY: W ? "auto" : "hidden"
|
|
113
122
|
},
|
|
114
|
-
ref:
|
|
115
|
-
children: /* @__PURE__ */ a(
|
|
123
|
+
ref: y,
|
|
124
|
+
children: /* @__PURE__ */ a(n.Provider, { value: r, children: x })
|
|
116
125
|
}
|
|
117
126
|
),
|
|
118
|
-
(
|
|
127
|
+
(I || E) && /* @__PURE__ */ a(
|
|
119
128
|
"div",
|
|
120
129
|
{
|
|
121
|
-
className: `${l.modalFooter} ${
|
|
122
|
-
children: /* @__PURE__ */
|
|
130
|
+
className: `${l.modalFooter} ${Y ? l.withBorder : ""}`,
|
|
131
|
+
children: /* @__PURE__ */ o(
|
|
123
132
|
"div",
|
|
124
133
|
{
|
|
125
|
-
className: `${l.buttonsDiv} ${
|
|
134
|
+
className: `${l.buttonsDiv} ${A ? l.fullWidthFooter : ""} ${g || ""}`,
|
|
126
135
|
children: [
|
|
127
|
-
|
|
128
|
-
|
|
136
|
+
I && /* @__PURE__ */ a(
|
|
137
|
+
f,
|
|
129
138
|
{
|
|
130
139
|
variant: (e == null ? void 0 : e.variant) || "outline",
|
|
131
|
-
onClick:
|
|
140
|
+
onClick: q,
|
|
132
141
|
disabled: (e == null ? void 0 : e.disabled) || !1,
|
|
133
142
|
size: (e == null ? void 0 : e.size) || "small",
|
|
134
143
|
loading: e == null ? void 0 : e.loading,
|
|
@@ -138,13 +147,13 @@ import '../../assets/index8.css';const u = "_modalOverlay_1ss8l_1", n = "_closin
|
|
|
138
147
|
children: (e == null ? void 0 : e.text) || "Cancelar"
|
|
139
148
|
}
|
|
140
149
|
),
|
|
141
|
-
|
|
142
|
-
|
|
150
|
+
E && /* @__PURE__ */ a(
|
|
151
|
+
f,
|
|
143
152
|
{
|
|
144
153
|
type: "submit",
|
|
145
154
|
form: s == null ? void 0 : s.id,
|
|
146
155
|
variant: (s == null ? void 0 : s.variant) || "brand",
|
|
147
|
-
onClick:
|
|
156
|
+
onClick: M,
|
|
148
157
|
disabled: (s == null ? void 0 : s.disabled) || !1,
|
|
149
158
|
size: (s == null ? void 0 : s.size) || "small",
|
|
150
159
|
loading: s == null ? void 0 : s.loading,
|
|
@@ -162,7 +171,7 @@ import '../../assets/index8.css';const u = "_modalOverlay_1ss8l_1", n = "_closin
|
|
|
162
171
|
]
|
|
163
172
|
}
|
|
164
173
|
),
|
|
165
|
-
|
|
174
|
+
R
|
|
166
175
|
] })
|
|
167
176
|
}
|
|
168
177
|
),
|
|
@@ -170,5 +179,5 @@ import '../../assets/index8.css';const u = "_modalOverlay_1ss8l_1", n = "_closin
|
|
|
170
179
|
) : null;
|
|
171
180
|
};
|
|
172
181
|
export {
|
|
173
|
-
|
|
182
|
+
Cs as Modal
|
|
174
183
|
};
|
package/dist/icons/Icon.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
/* @__PURE__ */ e("mask", { id: "
|
|
1
|
+
import { jsxs as s, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const h = (l) => /* @__PURE__ */ s("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...l, children: [
|
|
3
|
+
/* @__PURE__ */ e("mask", { id: "chevron_left_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
|
|
4
4
|
maskType: "alpha"
|
|
5
|
-
}, children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0
|
|
6
|
-
/* @__PURE__ */ e("g", { mask: "url(#
|
|
5
|
+
}, children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0 0h18v18H0z" }) }),
|
|
6
|
+
/* @__PURE__ */ e("g", { mask: "url(#chevron_left_svg__a)", children: /* @__PURE__ */ e("path", { fill: "#2054A5", d: "m8.354 9 3.004 3.003a.756.756 0 0 1 0 1.1.755.755 0 0 1-1.106-.006L6.7 9.545a.9.9 0 0 1-.165-.255.76.76 0 0 1 0-.587.8.8 0 0 1 .165-.248l3.552-3.552a.755.755 0 0 1 1.106-.006.756.756 0 0 1 0 1.1z" }) })
|
|
7
7
|
] });
|
|
8
8
|
export {
|
|
9
|
-
|
|
9
|
+
h as default
|
|
10
10
|
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs as s, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const e = (q) => /* @__PURE__ */ s("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...q, children: [
|
|
3
|
+
/* @__PURE__ */ a("mask", { id: "Kidneys_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
|
|
4
|
+
maskType: "alpha"
|
|
5
|
+
}, children: /* @__PURE__ */ a("path", { fill: "#2054A5", d: "M0 0h17.722v17.722H0z" }) }),
|
|
6
|
+
/* @__PURE__ */ a("g", { mask: "url(#Kidneys_svg__a)", children: /* @__PURE__ */ a("path", { fill: "#2054A5", d: "M5.907 12.692q-1.846 0-3.138-1.293-1.293-1.291-1.292-3.138V6.784q0-1.846 1.292-3.138Q4.06 2.353 5.907 2.354q.923 0 1.57.646.645.645.645 1.569t-.646 1.569q-.645.646-1.569.646H5.17a.72.72 0 0 1-.526-.212.72.72 0 0 1-.213-.526q0-.315.213-.526a.71.71 0 0 1 .526-.213h.738q.315 0 .526-.212a.71.71 0 0 0 .213-.526q0-.315-.213-.526a.71.71 0 0 0-.526-.213q-1.218 0-2.086.868a2.84 2.84 0 0 0-.868 2.086v1.477q0 1.218.868 2.086a2.84 2.84 0 0 0 2.086.868q.315 0 .526-.213a.72.72 0 0 0 .213-.526q0-.313-.213-.526a.71.71 0 0 0-.526-.212H5.17a.72.72 0 0 1-.526-.212.72.72 0 0 1-.213-.527q0-.313.213-.526a.71.71 0 0 1 .526-.212h.738q.923 0 1.57.646.645.646.645 1.57v4.43q0 .313-.212.526a.72.72 0 0 1-.526.212.72.72 0 0 1-.526-.212.72.72 0 0 1-.212-.526v-2.345a1.7 1.7 0 0 1-.36.102 2.4 2.4 0 0 1-.379.027m5.908 0q-.204 0-.379-.028a1.7 1.7 0 0 1-.36-.102v2.345q0 .313-.212.526a.72.72 0 0 1-.526.212.72.72 0 0 1-.526-.212.72.72 0 0 1-.213-.526v-4.43q0-.924.646-1.57t1.57-.646h.738q.315 0 .526.212a.71.71 0 0 1 .212.526q0 .315-.212.527a.71.71 0 0 1-.526.212h-.738q-.315 0-.526.212a.71.71 0 0 0-.213.526q0 .315.213.526a.72.72 0 0 0 .526.213q1.218 0 2.086-.868a2.84 2.84 0 0 0 .867-2.086V6.784q0-1.218-.867-2.086a2.84 2.84 0 0 0-2.086-.868q-.315 0-.526.213a.71.71 0 0 0-.213.526q0 .313.213.526a.71.71 0 0 0 .526.212h.738q.315 0 .526.213a.71.71 0 0 1 .212.526q0 .313-.212.526a.71.71 0 0 1-.526.212h-.738a2.14 2.14 0 0 1-1.57-.646 2.14 2.14 0 0 1-.646-1.57q0-.923.646-1.568.646-.646 1.57-.646 1.845 0 3.138 1.292 1.292 1.291 1.292 3.138v1.477q0 1.846-1.292 3.138-1.293 1.293-3.138 1.293" }) })
|
|
7
|
+
] });
|
|
8
|
+
export {
|
|
9
|
+
e as default
|
|
10
|
+
};
|
|
@@ -4,6 +4,7 @@ export { default as ArrowUp } from './ArrowUp';
|
|
|
4
4
|
export { default as Circulatorio } from './Circulatorio';
|
|
5
5
|
export { default as Gastro } from './Gastro';
|
|
6
6
|
export { default as Heart } from './Heart';
|
|
7
|
+
export { default as Kidneys } from './Kidneys';
|
|
7
8
|
export { default as MaleCopy } from './MaleCopy';
|
|
8
9
|
export { default as Pincel } from './Pincel';
|
|
9
10
|
export { default as Swich } from './Swich';
|