bmi-next-brokers 2.7.3 → 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.
@@ -1 +1 @@
1
- ._modalOverlay_1ss8l_1{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#0009;display:flex;justify-content:center;align-items:center;animation:_overlayFadeIn_1ss8l_1 .25s ease-in-out forwards;overflow:hidden}._modalOverlay_1ss8l_1._closing_1ss8l_15{animation:_overlayFadeOut_1ss8l_1 .25s ease-in-out forwards}@keyframes _overlayFadeIn_1ss8l_1{0%{opacity:0}to{opacity:1}}@keyframes _overlayFadeOut_1ss8l_1{0%{opacity:1}to{opacity:0}}._modalLayout_1ss8l_37{display:flex;gap:20px;justify-content:center;align-items:flex-start;width:100%}._modal_1ss8l_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_1ss8l_57{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;gap:8px}._modalHeader_1ss8l_57._withBorder_1ss8l_65{border-bottom:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._modalTitle_1ss8l_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_1ss8l_82{display:flex;flex-direction:column;justify-content:center;align-items:center;cursor:pointer}._modalBody_1ss8l_90{display:flex;flex-direction:column;flex:1;padding:0 16px 16px}._modalBody_1ss8l_90::-webkit-scrollbar{display:none}._modalFooter_1ss8l_101._withBorder_1ss8l_65{border-top:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._buttonsDiv_1ss8l_106{display:grid;grid-template-columns:1fr 1fr;margin-left:auto;width:fit-content;gap:19px;padding-inline:16px;margin-block:16px}._buttonsDiv_1ss8l_106._fullWidthFooter_1ss8l_116{width:100%}._buttonsDiv_1ss8l_106 :only-child{grid-column:2}
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 h } from "react/jsx-runtime";
2
- import { useRef as L, useState as y, useEffect as K } from "react";
3
- import { Icon as Q } from "../../icons/Icon.js";
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 c } from "../../hooks/useClose.js";
6
- import { Button as O } from "../Button/Button.js";
7
- import { createPortal as t } from "react-dom";
8
- import '../../assets/index8.css';const u = "_modalOverlay_1ss8l_1", n = "_closing_1ss8l_15", B = "_modalLayout_1ss8l_37", ss = "_modal_1ss8l_1", es = "_modalHeader_1ss8l_57", ls = "_withBorder_1ss8l_65", as = "_modalTitle_1ss8l_70", ds = "_closeIcon_1ss8l_82", rs = "_modalBody_1ss8l_90", is = "_modalFooter_1ss8l_101", os = "_buttonsDiv_1ss8l_106", hs = "_fullWidthFooter_1ss8l_116", l = {
9
- modalOverlay: u,
10
- closing: n,
11
- modalLayout: B,
12
- modal: ss,
13
- modalHeader: es,
14
- withBorder: ls,
15
- modalTitle: as,
16
- closeIcon: ds,
17
- modalBody: rs,
18
- modalFooter: is,
19
- buttonsDiv: os,
20
- fullWidthFooter: hs
21
- }, ps = ({
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: w,
24
- children: b,
25
- width: x = 752,
24
+ title: p,
25
+ children: x,
26
+ width: t = 752,
26
27
  confirmButton: s,
27
28
  cancelButton: e,
28
- zIndex: F,
29
- className: H,
30
- titleClassName: g,
31
- contentClassName: $,
32
- footerClassName: p,
33
- style: k,
34
- onClickOverlay: _,
35
- onClose: o,
36
- closeModal: z,
37
- withScroll: D = !0,
38
- fullWidthFooter: W = !1,
39
- helperElement: f,
40
- ...R
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), [T, N] = y(!1), v = L(null), [j, A] = y(!1), [Y, P] = y(!1);
45
+ const C = L(null), [j, D] = _(!1), y = L(null), [Y, c] = _(!1), [P, V] = _(!1);
43
46
  U(m);
44
- const i = () => {
45
- N(!0), setTimeout(() => {
46
- z(), N(!1);
47
+ const r = () => {
48
+ D(!0), setTimeout(() => {
49
+ k(), D(!1);
47
50
  }, 250);
48
- }, V = async (d) => {
49
- var r;
50
- (r = C.current) != null && r.contains(d.target) || _ !== !1 && (typeof _ == "function" && await _(), i());
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(), i();
58
+ s != null && s.action && await s.action(), r();
56
59
  } catch {
57
60
  return;
58
61
  }
59
- }, M = async () => {
62
+ }, q = async () => {
60
63
  try {
61
- e != null && e.action && await e.action(), i();
64
+ e != null && e.action && await e.action(), r();
62
65
  } catch {
63
66
  return;
64
67
  }
65
- }, q = e && Object.keys(e).length > 0, G = s && Object.keys(s).length > 0, E = q && (e.show ?? !0), I = G && (s.show ?? !0), J = `${l.modal} ${H || ""}`;
66
- return K(() => {
67
- if (!v.current) return;
68
- const d = v.current, r = () => {
69
- P(d.scrollTop > 0), A(d.scrollHeight > d.clientHeight);
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
- r(), d.addEventListener("scroll", r);
72
- const S = new ResizeObserver(r);
74
+ i(), d.addEventListener("scroll", i);
75
+ const S = new ResizeObserver(i);
73
76
  return S.observe(d), () => {
74
- d.removeEventListener("scroll", r), S.disconnect();
77
+ d.removeEventListener("scroll", i), S.disconnect();
75
78
  };
76
- }, [b]), m ? t(
79
+ }, [x]), m ? u(
77
80
  /* @__PURE__ */ a(
78
81
  "div",
79
82
  {
80
- className: `${l.modalOverlay} ${T ? l.closing : ""}`,
81
- style: { zIndex: 3e3 + (F || 0) },
82
- onClick: V,
83
- children: /* @__PURE__ */ h("div", { ref: C, className: l.modalLayout, children: [
84
- /* @__PURE__ */ h(
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: J,
88
- style: { maxWidth: x, ...k },
89
- ...R,
90
+ className: K,
91
+ style: { maxWidth: t, ...H },
92
+ ...T,
90
93
  children: [
91
- /* @__PURE__ */ h(
94
+ /* @__PURE__ */ o(
92
95
  "div",
93
96
  {
94
- className: `${l.modalHeader} ${Y ? l.withBorder : ""} `,
97
+ className: `${l.modalHeader} ${P ? l.withBorder : ""} `,
95
98
  children: [
96
- w && /* @__PURE__ */ a(
97
- "span",
98
- {
99
- className: `${l.modalTitle} ${g || ""}`,
100
- children: w
101
- }
102
- ),
103
- o !== !1 && /* @__PURE__ */ a("div", { className: l.closeIcon, onClick: X, children: /* @__PURE__ */ a(Q, { name: "CloseDrawer", size: 24 }) })
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: D ? "auto" : "hidden"
121
+ overflowY: W ? "auto" : "hidden"
113
122
  },
114
- ref: v,
115
- children: /* @__PURE__ */ a(c.Provider, { value: i, children: b })
123
+ ref: y,
124
+ children: /* @__PURE__ */ a(n.Provider, { value: r, children: x })
116
125
  }
117
126
  ),
118
- (E || I) && /* @__PURE__ */ a(
127
+ (I || E) && /* @__PURE__ */ a(
119
128
  "div",
120
129
  {
121
- className: `${l.modalFooter} ${j ? l.withBorder : ""}`,
122
- children: /* @__PURE__ */ h(
130
+ className: `${l.modalFooter} ${Y ? l.withBorder : ""}`,
131
+ children: /* @__PURE__ */ o(
123
132
  "div",
124
133
  {
125
- className: `${l.buttonsDiv} ${W ? l.fullWidthFooter : ""} ${p || ""}`,
134
+ className: `${l.buttonsDiv} ${A ? l.fullWidthFooter : ""} ${g || ""}`,
126
135
  children: [
127
- E && /* @__PURE__ */ a(
128
- O,
136
+ I && /* @__PURE__ */ a(
137
+ f,
129
138
  {
130
139
  variant: (e == null ? void 0 : e.variant) || "outline",
131
- onClick: M,
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
- I && /* @__PURE__ */ a(
142
- O,
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: Z,
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
- f
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
- ps as Modal
182
+ Cs as Modal
174
183
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as i } from "react/jsx-runtime";
2
- import { I as p } from "../index-DFANy1nG.js";
2
+ import { I as p } from "../index-6XrDWEmb.js";
3
3
  const m = ({
4
4
  name: o,
5
5
  width: c = 20,
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgEye: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgEye;
@@ -0,0 +1,10 @@
1
+ import { jsxs as s, jsx as e } from "react/jsx-runtime";
2
+ const t = (a) => /* @__PURE__ */ s("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...a, children: [
3
+ /* @__PURE__ */ e("mask", { id: "eye_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
4
+ maskType: "alpha"
5
+ }, children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0 0h17.722v17.722H0z" }) }),
6
+ /* @__PURE__ */ e("g", { mask: "url(#eye_svg__a)", children: /* @__PURE__ */ e("path", { fill: "#2054A5", d: "M9 13.445c1.419 0 2.73-.366 3.93-1.106a7.53 7.53 0 0 0 2.788-3.01 7.53 7.53 0 0 0-2.789-3.01A7.4 7.4 0 0 0 9 5.215c-1.42 0-2.731.365-3.93 1.106a7.53 7.53 0 0 0-2.788 3.01 7.53 7.53 0 0 0 2.788 3.009 7.4 7.4 0 0 0 3.93 1.106m0 1.502a8.4 8.4 0 0 1-4.6-1.333 9.8 9.8 0 0 1-3.338-3.524 1 1 0 0 1-.155-.37 1.6 1.6 0 0 1-.015-.386 1.4 1.4 0 0 1 .02-.39 1 1 0 0 1 .155-.371 9.84 9.84 0 0 1 3.338-3.524A8.4 8.4 0 0 1 9 3.717q2.494-.001 4.594 1.332a9.84 9.84 0 0 1 3.339 3.524c.077.113.128.237.154.36.026.129.03.252.02.38q.017.211-.02.412a1 1 0 0 1-.154.37 9.84 9.84 0 0 1-3.339 3.524 8.4 8.4 0 0 1-4.594 1.333m0-3.89c-.483 0-.89-.169-1.23-.503a1.68 1.68 0 0 1-.503-1.23c0-.483.17-.89.504-1.23A1.68 1.68 0 0 1 9 7.597c.483 0 .89.17 1.229.504q.502.502.504 1.23-.001.723-.504 1.229a1.68 1.68 0 0 1-1.23.504m0 1.467c.89 0 1.641-.309 2.264-.931q.931-.936.93-2.264.002-1.327-.93-2.263-.935-.933-2.264-.931c-.885 0-1.646.308-2.263.93a3.1 3.1 0 0 0-.931 2.264q-.002 1.329.93 2.264.936.931 2.264.93" }) })
7
+ ] });
8
+ export {
9
+ t as default
10
+ };
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgHealing: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgHealing;
@@ -0,0 +1,10 @@
1
+ import { jsxs as e, jsx as l } from "react/jsx-runtime";
2
+ const i = (a) => /* @__PURE__ */ e("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...a, children: [
3
+ /* @__PURE__ */ l("mask", { id: "healing_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
4
+ maskType: "alpha"
5
+ }, children: /* @__PURE__ */ l("path", { fill: "currentColor", d: "M0 0h17.722v17.722H0z" }) }),
6
+ /* @__PURE__ */ l("g", { mask: "url(#healing_svg__a)", children: /* @__PURE__ */ l("path", { fill: "#2054A5", d: "M8.861 13.153 6.363 15.61q-.444.45-1.075.45t-1.081-.45l-2.113-2.094q-.45-.448-.45-1.087 0-.638.45-1.087l2.476-2.48-2.476-2.518q-.45-.448-.45-1.086t.45-1.088l2.113-2.076q.448-.45 1.086-.45.64 0 1.088.45l2.48 2.476 2.5-2.458q.442-.45 1.074-.449.63 0 1.08.45l2.114 2.094q.45.448.45 1.086 0 .64-.45 1.088l-2.476 2.48 2.457 2.5q.45.442.45 1.074 0 .63-.45 1.08l-2.094 2.114q-.448.45-1.087.45-.638 0-1.087-.45zm.496-5.324a.67.67 0 0 0 .204-.496.68.68 0 0 0-.2-.496.67.67 0 0 0-.496-.203.69.69 0 0 0-.703.692q0 .294.2.499.202.204.496.204a.69.69 0 0 0 .499-.2m-3.7-.05 2.122-2.122-2.48-2.48-2.122 2.085zM7.326 9.56a.69.69 0 0 0 .499-.2.67.67 0 0 0 .204-.496.69.69 0 0 0-.2-.499.67.67 0 0 0-.496-.204.68.68 0 0 0-.496.2.67.67 0 0 0-.203.496.69.69 0 0 0 .692.703m2.03 1.329a.66.66 0 0 0 .205-.493.69.69 0 0 0-.2-.499.67.67 0 0 0-.496-.205.69.69 0 0 0-.499.2.67.67 0 0 0-.204.496q0 .294.2.497a.67.67 0 0 0 .496.203.7.7 0 0 0 .499-.2M10.39 9.56a.68.68 0 0 0 .497-.2.67.67 0 0 0 .203-.496.69.69 0 0 0-.692-.703.69.69 0 0 0-.499.2.67.67 0 0 0-.205.496q0 .294.2.499a.67.67 0 0 0 .496.204m-.445 2.505 2.48 2.48 2.122-2.122-2.48-2.48z" }) })
7
+ ] });
8
+ export {
9
+ i as default
10
+ };
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgKidneys: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgKidneys;
@@ -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
+ };
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgMonitorHeart: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgMonitorHeart;
@@ -0,0 +1,10 @@
1
+ import { jsxs as t, jsx as a } from "react/jsx-runtime";
2
+ const l = (h) => /* @__PURE__ */ t("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...h, children: [
3
+ /* @__PURE__ */ a("mask", { id: "monitor_heart_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
4
+ maskType: "alpha"
5
+ }, children: /* @__PURE__ */ a("path", { fill: "currentColor", d: "M0 0h17.722v17.722H0z" }) }),
6
+ /* @__PURE__ */ a("g", { mask: "url(#monitor_heart_svg__a)", children: /* @__PURE__ */ a("path", { fill: "#2054A5", d: "M1.621 4.927q0-.679.474-1.106a1.65 1.65 0 0 1 1.147-.426h11.239q.672 0 1.145.426.474.427.473 1.106v1.396a.74.74 0 0 1-.22.544.74.74 0 0 1-.542.222.75.75 0 0 1-.546-.222.74.74 0 0 1-.224-.544V4.927H3.153v1.396a.74.74 0 0 1-.22.544.74.74 0 0 1-.542.222.75.75 0 0 1-.545-.222.74.74 0 0 1-.225-.544zm1.619 9.401a1.65 1.65 0 0 1-1.146-.426q-.473-.427-.473-1.106V11.4q0-.322.22-.545a.74.74 0 0 1 .542-.222q.321 0 .546.222.224.223.224.545v1.396h11.414V11.4q0-.322.22-.545a.74.74 0 0 1 .542-.222q.321 0 .545.222.225.223.225.545v1.396q0 .679-.474 1.106a1.65 1.65 0 0 1-1.147.426zm4.632-2.458a.6.6 0 0 0 .241-.26l2.076-3.8.739 1.365q.074.184.23.268a.77.77 0 0 0 .364.083h3.912a.65.65 0 0 0 .474-.19.64.64 0 0 0 .191-.47.65.65 0 0 0-.19-.475.64.64 0 0 0-.475-.194h-3.51L10.78 6.11a.6.6 0 0 0-.253-.268.73.73 0 0 0-.675 0 .6.6 0 0 0-.253.268L7.53 9.914l-.746-1.362a.6.6 0 0 0-.246-.263.67.67 0 0 0-.337-.092H2.286a.65.65 0 0 0-.474.19.64.64 0 0 0-.19.47.65.65 0 0 0 .19.475q.191.195.474.194h3.51l1.153 2.086q.084.166.24.258a.66.66 0 0 0 .342.093q.185 0 .341-.093" }) })
7
+ ] });
8
+ export {
9
+ l 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';
@@ -56,6 +57,7 @@ export { default as Distance } from './Distance';
56
57
  export { default as Documentos } from './Documentos';
57
58
  export { default as DownloadIcon } from './DownloadIcon';
58
59
  export { default as EditIcon } from './EditIcon';
60
+ export { default as Eye } from './Eye';
59
61
  export { default as Facturas } from './Facturas';
60
62
  export { default as Female } from './Female';
61
63
  export { default as Filter } from './Filter';
@@ -66,6 +68,7 @@ export { default as Ginecologia } from './Ginecologia';
66
68
  export { default as Handshake } from './Handshake';
67
69
  export { default as Headset } from './Headset';
68
70
  export { default as HeadsetMic } from './HeadsetMic';
71
+ export { default as Healing } from './Healing';
69
72
  export { default as HeightIcon } from './HeightIcon';
70
73
  export { default as Help } from './Help';
71
74
  export { default as HistorialIcon } from './HistorialIcon';
@@ -86,6 +89,7 @@ export { default as MasAcciones } from './MasAcciones';
86
89
  export { default as Medicacion } from './Medicacion';
87
90
  export { default as Medical } from './Medical';
88
91
  export { default as Menu } from './Menu';
92
+ export { default as MonitorHeart } from './MonitorHeart';
89
93
  export { default as MoreVert } from './MoreVert';
90
94
  export { default as Musculo } from './Musculo';
91
95
  export { default as NextIcon } from './NextIcon';