nestiq-component-library 1.0.46 → 1.1.0
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/FloorPlanPopup/FloorPlanPopup.d.ts +7 -0
- package/dist/components/ImageListPopup/ImageListPopup.d.ts +1 -0
- package/dist/components/Popup/Popup.d.ts +1 -0
- package/dist/components/PropertyCard/PropertyCard.d.ts +4 -3
- package/dist/components/PropertyImageList/PropertyImageList.d.ts +1 -0
- package/dist/components/SharePopup/SharePopup.d.ts +4 -0
- package/dist/components/ToastWrapper/ToastWrapper.d.ts +4 -0
- package/dist/functions/util.d.ts +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.es.js +105 -36
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +108 -34
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
- package/rollup.config.mjs +35 -35
- package/src/components/FloorPlanPopup/FloorPlanPopup.css +3 -0
- package/src/components/FloorPlanPopup/FloorPlanPopup.tsx +83 -0
- package/src/components/ImageListPopup/ImageListPopup.css +83 -107
- package/src/components/ImageListPopup/ImageListPopup.tsx +141 -140
- package/src/components/Popup/Popup.css +0 -13
- package/src/components/Popup/Popup.tsx +29 -28
- package/src/components/PropertyCard/PropertyCard.css +6 -5
- package/src/components/PropertyCard/PropertyCard.tsx +136 -135
- package/src/components/PropertyDetailsHeader/PropertyDetailsHeader.tsx +80 -84
- package/src/components/PropertyImageList/PropertyImageList.tsx +198 -173
- package/src/components/SharePopup/{PopUp.css → SharePopup.css} +0 -14
- package/src/components/SharePopup/{PopUp.tsx → SharePopup.tsx} +139 -140
- package/src/components/ToastWrapper/ToastWrapper.tsx +25 -0
- package/src/functions/util.ts +3 -0
- package/src/index.tsx +20 -7
- package/src/styles/common.css +12 -0
- package/dist/assets/images/Icon_rightArrow.svg +0 -3
- package/dist/assets/images/LayersIcon.svg +0 -5
- package/dist/assets/images/blackarrow-Right.svg +0 -3
- package/dist/assets/images/blckarrow-Left.svg +0 -3
- package/dist/assets/images/chevron-left.svg +0 -3
- package/dist/assets/images/default-property.jpg +0 -0
- package/dist/assets/images/heartIcon.svg +0 -3
- package/dist/assets/images/icon-close-white.webp +0 -0
- package/dist/assets/images/icon_close 2.e41bb9a4db48e048.png +0 -0
- package/dist/assets/images/icon_close_2.png +0 -0
- package/dist/assets/images/icon_gallery.svg +0 -4
- package/dist/assets/images/icon_map.svg +0 -10
- package/dist/assets/images/icon_share_1.svg +0 -3
- package/dist/assets/images/layer_icon.svg +0 -5
- package/dist/assets/images/locationIcon.svg +0 -4
- package/dist/assets/images/locationIconBlack.svg +0 -4
- package/dist/assets/images/no-image-icon.png +0 -0
- package/dist/components/Button/Button.js +0 -6
- package/dist/components/ImageListPopup/ImageListPopup.js +0 -26
- package/dist/components/Popup/Popup.js +0 -12
- package/dist/components/SharePopup/PopUp.d.ts +0 -7
- package/src/assets/images/Logo-Nestiq_black.svg +0 -7
- package/src/assets/images/arrow-right-short.svg +0 -3
- package/src/assets/images/arrow-right.svg +0 -10
- package/src/assets/images/close_white.png +0 -0
- package/src/assets/images/dropdownIcon.svg +0 -16
- package/src/assets/images/facebook_icon.svg +0 -3
- package/src/assets/images/google_icon.svg +0 -10
- package/src/assets/images/heartIcon.svg +0 -3
- package/src/assets/images/icon-close-white.webp +0 -0
- package/src/assets/images/icon_checkmark.svg +0 -10
- package/src/assets/images/icon_close 2.png +0 -0
- package/src/assets/images/icon_share 1.svg +0 -3
- package/src/assets/images/icon_user.png +0 -0
- package/src/assets/images/left arrow.svg +0 -16
- package/src/assets/images/left-arrow.svg +0 -4
- package/src/assets/images/mail-icon.png +0 -0
- package/src/assets/images/no-image-icon.png +0 -0
- package/src/assets/images/right arrow.svg +0 -16
- package/src/assets/images/right-arrow.svg +0 -4
- package/src/assets/images/warning.svg +0 -11
- package/src/assets/images/x.svg +0 -3
- package/src/components/PropertyCard/PropertyDaet.json +0 -1210
|
@@ -1,140 +1,139 @@
|
|
|
1
|
-
import React, { useRef, useState } from "react";
|
|
2
|
-
import email from "../../assets/
|
|
3
|
-
import facebook from "../../assets/
|
|
4
|
-
import x from "../../assets/
|
|
5
|
-
import linkedln from "../../assets/
|
|
6
|
-
import Xtwitter from "../../assets/
|
|
7
|
-
import whatsapp from "../../assets/
|
|
8
|
-
import "./
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
}
|
|
1
|
+
import React, { useRef, useState } from "react";
|
|
2
|
+
import email from "../../assets/images/envelope-fill.svg";
|
|
3
|
+
import facebook from "../../assets/images/facebook.svg";
|
|
4
|
+
import x from "../../assets/images/icon_close_2.png";
|
|
5
|
+
import linkedln from "../../assets/images/linkedin.svg";
|
|
6
|
+
import Xtwitter from "../../assets/images/twitter-x.svg";
|
|
7
|
+
import whatsapp from "../../assets/images/whatsapp.svg";
|
|
8
|
+
import "./SharePopup.css";
|
|
9
|
+
import { toast } from "react-toastify";
|
|
10
|
+
import "../../styles/common.css";
|
|
11
|
+
|
|
12
|
+
export default function SharePopup() {
|
|
13
|
+
const [showPopUp, setShowPopUp] = useState(true);
|
|
14
|
+
|
|
15
|
+
const handleClose = () => {
|
|
16
|
+
setShowPopUp(false);
|
|
17
|
+
};
|
|
18
|
+
const urlInputRef = useRef<HTMLInputElement | null>(null);
|
|
19
|
+
|
|
20
|
+
const copyToClipboard = () => {
|
|
21
|
+
urlInputRef.current!.select();
|
|
22
|
+
document.execCommand("copy");
|
|
23
|
+
toast.success("URL copied to clipboard!");
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
return (
|
|
27
|
+
<div>
|
|
28
|
+
{showPopUp && (
|
|
29
|
+
<div className="popup-overlay">
|
|
30
|
+
<div className="shareSection col-12 d-flex position-relative flex-column mx-auto justify-content-center col-5 col-lg-6 d-flex gap-4">
|
|
31
|
+
<div className="end-0 top-0 position-absolute ">
|
|
32
|
+
<img
|
|
33
|
+
src={x}
|
|
34
|
+
alt="close"
|
|
35
|
+
className="closeIcon me-2"
|
|
36
|
+
onClick={handleClose}
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
<div className="popUpHeader col-lg-12 d-flex justify-content-center mb-2">
|
|
40
|
+
Jetzt teilen und weitersagen!
|
|
41
|
+
</div>
|
|
42
|
+
<div className="h-25 col-lg-12 socialMediaIconsSection d-flex flex-row align-items-center justify-content-center mx-auto">
|
|
43
|
+
<a
|
|
44
|
+
href="https://twitter.com/intent/tweet?url=https://www.nestiq.de&text=Nestiq"
|
|
45
|
+
className="text-decoration-none"
|
|
46
|
+
target="blank"
|
|
47
|
+
>
|
|
48
|
+
<div className=" flex-column d-flex align-items-center">
|
|
49
|
+
<img
|
|
50
|
+
src={Xtwitter}
|
|
51
|
+
alt="twitter"
|
|
52
|
+
className="socialMediaIcons"
|
|
53
|
+
/>
|
|
54
|
+
<span className="socialMediaIconText">Xtwitter</span>
|
|
55
|
+
</div>
|
|
56
|
+
</a>
|
|
57
|
+
|
|
58
|
+
<a
|
|
59
|
+
href="https://www.facebook.com/sharer/sharer.php?u=https://www.nestiq.de"
|
|
60
|
+
className="text-decoration-none"
|
|
61
|
+
target="blank"
|
|
62
|
+
>
|
|
63
|
+
<div className=" flex-column d-flex align-items-center">
|
|
64
|
+
<img
|
|
65
|
+
src={facebook}
|
|
66
|
+
alt="facebook"
|
|
67
|
+
className="socialMediaIcons "
|
|
68
|
+
/>
|
|
69
|
+
<span className="socialMediaIconText">Facebook</span>
|
|
70
|
+
</div>
|
|
71
|
+
</a>
|
|
72
|
+
|
|
73
|
+
<a
|
|
74
|
+
href="https://api.whatsapp.com/send?text=https://www.nestiq.de"
|
|
75
|
+
target="blank"
|
|
76
|
+
className="text-decoration-none"
|
|
77
|
+
>
|
|
78
|
+
<div className=" flex-column d-flex align-items-center">
|
|
79
|
+
<img
|
|
80
|
+
src={whatsapp}
|
|
81
|
+
alt="whatsapp"
|
|
82
|
+
className=" socialMediaIcons"
|
|
83
|
+
/>
|
|
84
|
+
<span className="socialMediaIconText">WhatsApp</span>
|
|
85
|
+
</div>
|
|
86
|
+
</a>
|
|
87
|
+
|
|
88
|
+
<a
|
|
89
|
+
href="https://www.linkedin.com/shareArticle?mini=true&url=https://www.nestiq.de"
|
|
90
|
+
target="blank"
|
|
91
|
+
className="text-decoration-none"
|
|
92
|
+
>
|
|
93
|
+
<div className=" flex-column d-flex align-items-center">
|
|
94
|
+
<img
|
|
95
|
+
src={linkedln}
|
|
96
|
+
alt="linkedin"
|
|
97
|
+
className=" socialMediaIcons"
|
|
98
|
+
/>
|
|
99
|
+
<span className="socialMediaIconText">LinkedIn</span>
|
|
100
|
+
</div>
|
|
101
|
+
</a>
|
|
102
|
+
|
|
103
|
+
<a
|
|
104
|
+
href="https://www.nestiq.de"
|
|
105
|
+
target="blank"
|
|
106
|
+
className="text-decoration-none"
|
|
107
|
+
>
|
|
108
|
+
<div className=" flex-column d-flex align-items-center">
|
|
109
|
+
<img src={email} alt="email" className=" socialMediaIcons" />
|
|
110
|
+
<span className="socialMediaIconText">E-mail</span>
|
|
111
|
+
</div>
|
|
112
|
+
</a>
|
|
113
|
+
</div>
|
|
114
|
+
<div className="col-10 mx-auto">
|
|
115
|
+
<div className=" row align-items-center position-relative">
|
|
116
|
+
<input
|
|
117
|
+
ref={urlInputRef}
|
|
118
|
+
type="text"
|
|
119
|
+
className="popup_search-input rounded-4 border border-0 "
|
|
120
|
+
placeholder="Enter link here"
|
|
121
|
+
value={window.location.href}
|
|
122
|
+
readOnly
|
|
123
|
+
/>
|
|
124
|
+
<button
|
|
125
|
+
onClick={copyToClipboard}
|
|
126
|
+
className="popupcustom-button border border-0 position-absolute me-2 col-lg-3 col-md-3 col-sm-3 rounded-4 fs-6"
|
|
127
|
+
type="button"
|
|
128
|
+
id="button"
|
|
129
|
+
>
|
|
130
|
+
<strong>Kopieren</strong>
|
|
131
|
+
</button>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
)}
|
|
137
|
+
</div>
|
|
138
|
+
);
|
|
139
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ToastContainer, toast } from "react-toastify";
|
|
3
|
+
|
|
4
|
+
// Utility function to show a toast
|
|
5
|
+
export const showToast = (
|
|
6
|
+
message: string,
|
|
7
|
+
type: "info" | "success" | "warning" | "error" = "info",
|
|
8
|
+
) => {
|
|
9
|
+
toast(message, { type });
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const ToastWrapper: React.FC = () => (
|
|
13
|
+
<ToastContainer
|
|
14
|
+
position="top-right"
|
|
15
|
+
autoClose={5000}
|
|
16
|
+
hideProgressBar={false}
|
|
17
|
+
closeOnClick
|
|
18
|
+
rtl={false}
|
|
19
|
+
pauseOnFocusLoss
|
|
20
|
+
draggable
|
|
21
|
+
pauseOnHover
|
|
22
|
+
/>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export default ToastWrapper;
|
package/src/index.tsx
CHANGED
|
@@ -1,7 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
//
|
|
4
|
-
export { default as
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as
|
|
7
|
-
|
|
1
|
+
import "react-toastify/dist/ReactToastify.css";
|
|
2
|
+
|
|
3
|
+
// COMPONENTS
|
|
4
|
+
export { default as Button } from "./components/Button/Button";
|
|
5
|
+
export { default as Popup } from "./components/Popup/Popup";
|
|
6
|
+
// export { default as ImageListPopup } from "./components/ImageListPopup/ImageListPopup";
|
|
7
|
+
export { default as PropertyDetailsHeader } from "./components/PropertyDetailsHeader/PropertyDetailsHeader";
|
|
8
|
+
export { default as PropertyImageList } from "./components/PropertyImageList//PropertyImageList";
|
|
9
|
+
export { default as PropertyCard } from "./components/PropertyCard//PropertyCard";
|
|
10
|
+
export { default as SharePopup } from "./components/SharePopup/SharePopup";
|
|
11
|
+
export { default as FloorPlanPopup } from "./components/FloorPlanPopup/FloorPlanPopup";
|
|
12
|
+
|
|
13
|
+
// TOASTER WRAPPER AND FUNCTION
|
|
14
|
+
export {
|
|
15
|
+
default as ToastWrapper,
|
|
16
|
+
showToast,
|
|
17
|
+
} from "./components/ToastWrapper/ToastWrapper";
|
|
18
|
+
|
|
19
|
+
// UTILITY FUNCTIONS
|
|
20
|
+
export { formatPrice } from "./functions/util";
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#fff" class="bi bi-chevron-right" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="18" height="17" viewBox="0 0 18 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="m16.855 5.147-8-4.572a.571.571 0 0 0-.567 0l-8 4.572a.571.571 0 0 0 .014 1l8 4.285a.571.571 0 0 0 .54 0l8-4.285a.571.571 0 0 0 .013-1zM8.572 9.28l-6.82-3.653 6.82-3.897 6.82 3.897-6.82 3.653z" fill="#031012"/>
|
|
3
|
-
<path d="M8.846 13.43 16.57 9.18V7.877l-8 4.4-8-4.4V9.18l7.725 4.249a.572.572 0 0 0 .55 0z" fill="#031012"/>
|
|
4
|
-
<path d="m.57 12.309 7.731 4.123a.572.572 0 0 0 .538 0l7.731-4.123v-1.295l-8 4.266-8-4.266v1.295z" fill="#031012"/>
|
|
5
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-left" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"/>
|
|
3
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="#fff" class="bi bi-chevron-left" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"/>
|
|
3
|
-
</svg>
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="30" height="27" viewBox="0 0 30 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M27.24 2.467a7.97 7.97 0 0 0-11.275.004l-.966.978-.958-.976-.006-.006a7.97 7.97 0 0 0-11.27 0l-.43.43a7.97 7.97 0 0 0 0 11.27l11.354 11.356 1.282 1.343.03-.03.034.033 1.201-1.268L27.67 14.168a7.979 7.979 0 0 0 0-11.27l-.43-.431zm-.98 10.292L15.003 24.018l-11.26-11.26a5.977 5.977 0 0 1 0-8.452l.431-.43a5.977 5.977 0 0 1 8.45-.003l2.372 2.415 2.383-2.412a5.977 5.977 0 0 1 8.453 0l.43.43a5.984 5.984 0 0 1 0 8.453z" fill="#fff"/>
|
|
3
|
-
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M18.242 1.29H4.297a1.76 1.76 0 0 0-1.758 1.757v.742h-.781A1.76 1.76 0 0 0 0 5.547v11.406c0 .97.789 1.758 1.758 1.758h13.945a1.76 1.76 0 0 0 1.758-1.758v-.742h.781A1.76 1.76 0 0 0 20 14.453V3.047a1.76 1.76 0 0 0-1.758-1.758zM4.297 2.46h13.945c.323 0 .586.264.586.587v5.508l-3.49-2.47a.586.586 0 0 0-.724.037L10 10.159l-2.114-1.85a.586.586 0 0 0-.748-.02l-3.427 2.693V3.047c0-.323.263-.586.586-.586zm11.992 14.493a.587.587 0 0 1-.586.586H1.758a.587.587 0 0 1-.586-.586V5.547c0-.323.263-.586.586-.586h.781v9.492c0 .97.789 1.758 1.758 1.758h11.992v.742zm1.953-1.914H4.297a.587.587 0 0 1-.586-.586v-1.98L7.48 9.51l2.134 1.868c.221.193.55.193.772 0l4.652-4.071 3.79 2.683v4.462a.587.587 0 0 1-.586.586z" fill="#fff"/>
|
|
3
|
-
<path d="M10 7.46a1.838 1.838 0 0 0 1.836-1.835A1.838 1.838 0 0 0 10 3.789a1.838 1.838 0 0 0-1.836 1.836c0 1.012.824 1.836 1.836 1.836zm0-2.5a.665.665 0 1 1-.001 1.33A.665.665 0 0 1 10 4.96z" fill="#fff"/>
|
|
4
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#bq66l33lna)">
|
|
3
|
-
<path d="M19.286 0a.715.715 0 0 0-.32.075l-5.413 2.707-6.12-2.72C7.423.058 7.41.057 7.4.052a.741.741 0 0 0-.17-.044 1.063 1.063 0 0 0-.175 0 .742.742 0 0 0-.171.044c-.01.005-.022.005-.032.01L.424 2.919A.714.714 0 0 0 0 3.572v15.714a.714.714 0 0 0 1.004.653l6.139-2.729 6.138 2.729c.01.004.022 0 .033.006a.63.63 0 0 0 .54-.012c.012-.005.025 0 .036-.008l5.715-2.857a.714.714 0 0 0 .395-.64V.716A.714.714 0 0 0 19.286 0zM6.428 15.964l-5 2.222V4.036l5-2.222v14.15zm6.429 2.222-5-2.222V1.814l5 2.222v14.15zm5.714-2.199-4.286 2.143V4.013l4.286-2.143v14.117z" fill="#fff"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="bq66l33lna">
|
|
7
|
-
<path fill="#fff" d="M0 0h20v20H0z"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M22.046 9.9h-2.56a.937.937 0 1 0 0 1.875h2.56c.517 0 .938.42.938.937v12.26c0 .517-.42.938-.938.938H7.953a.939.939 0 0 1-.937-.938v-12.26c0-.517.42-.937.937-.937h2.56a.937.937 0 1 0 0-1.875h-2.56a2.816 2.816 0 0 0-2.812 2.812v12.26a2.816 2.816 0 0 0 2.812 2.813h14.093a2.816 2.816 0 0 0 2.813-2.813v-12.26A2.816 2.816 0 0 0 22.046 9.9zM11.504 8.007l2.59-2.59V17.76a.937.937 0 1 0 1.874 0V5.418l2.59 2.59a.934.934 0 0 0 1.326 0 .937.937 0 0 0 0-1.327l-4.19-4.19a.938.938 0 0 0-1.326 0l-4.19 4.19a.937.937 0 1 0 1.326 1.326z" fill="#000"/>
|
|
3
|
-
</svg>
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<svg width="22" height="20" viewBox="0 0 22 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="m21.354 5.808-10-5.714a.714.714 0 0 0-.709 0l-10 5.714a.714.714 0 0 0 .017 1.25l10 5.357a.714.714 0 0 0 .675 0l10-5.357a.714.714 0 0 0 .017-1.25zM11 10.975 2.475 6.408 11 1.537l8.525 4.871L11 10.975z" fill="#fff"/>
|
|
3
|
-
<path d="m11.34 16.162 9.656-5.31V9.22l-10 5.5-10-5.5v1.63l9.656 5.31a.715.715 0 0 0 .688 0z" fill="#fff"/>
|
|
4
|
-
<path d="m.996 14.762 9.664 5.154a.714.714 0 0 0 .672 0l9.664-5.154v-1.62l-10 5.334-10-5.333v1.619z" fill="#fff"/>
|
|
5
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M6 4.725a2.208 2.208 0 1 0 .001 4.416 2.208 2.208 0 0 0 0-4.416zm0 3.312a1.104 1.104 0 1 1 .001-2.208 1.104 1.104 0 0 1 0 2.208z" fill="#fff"/>
|
|
3
|
-
<path d="M10.243 2.687a6 6 0 0 0-9.27 7.518l4.17 6.403a1.022 1.022 0 0 0 1.713 0l4.171-6.404a6 6 0 0 0-.784-7.517zm-.14 6.915L6 15.9 1.897 9.602a4.919 4.919 0 0 1 .64-6.135 4.896 4.896 0 0 1 6.925 0 4.919 4.919 0 0 1 .64 6.135z" fill="#fff"/>
|
|
4
|
-
</svg>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-geo-alt" viewBox="0 0 16 16">
|
|
2
|
-
<path d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A32 32 0 0 1 8 14.58a32 32 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10"/>
|
|
3
|
-
<path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4m0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6"/>
|
|
4
|
-
</svg>
|
|
Binary file
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import React, { useState } from "react";
|
|
2
|
-
import "bootstrap/dist/css/bootstrap.min.css";
|
|
3
|
-
import "./ImageListPopup.css";
|
|
4
|
-
var ImageListPopup = function (_a) {
|
|
5
|
-
var images = _a.images, onClose = _a.onClose;
|
|
6
|
-
var _b = useState(0), currentIndex = _b[0], setCurrentIndex = _b[1];
|
|
7
|
-
var handlePrevious = function () {
|
|
8
|
-
setCurrentIndex(function (prevIndex) { return (prevIndex > 0 ? prevIndex - 1 : prevIndex); });
|
|
9
|
-
};
|
|
10
|
-
var handleNext = function () {
|
|
11
|
-
setCurrentIndex(function (prevIndex) {
|
|
12
|
-
return prevIndex < images.length - 1 ? prevIndex + 1 : prevIndex;
|
|
13
|
-
});
|
|
14
|
-
};
|
|
15
|
-
return (React.createElement("div", { className: "popup-overlay" },
|
|
16
|
-
React.createElement("div", { className: "popup-container" },
|
|
17
|
-
React.createElement("div", { className: "popup-header" },
|
|
18
|
-
React.createElement("span", null, images[currentIndex].title),
|
|
19
|
-
React.createElement("button", { className: "btn-close", onClick: onClose })),
|
|
20
|
-
React.createElement("div", { className: "popup-body" },
|
|
21
|
-
React.createElement("img", { src: images[currentIndex].src, alt: images[currentIndex].title, className: "img-fluid" })),
|
|
22
|
-
React.createElement("div", { className: "popup-footer" }, images.length > 1 && (React.createElement(React.Fragment, null,
|
|
23
|
-
React.createElement("button", { className: "btn btn-secondary me-2", onClick: handlePrevious }, "Previous"),
|
|
24
|
-
React.createElement("button", { className: "btn btn-secondary", onClick: handleNext }, "Next")))))));
|
|
25
|
-
};
|
|
26
|
-
export default ImageListPopup;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import closeIcon from "src/assets/images/icon_close 2.png";
|
|
3
|
-
import "./Popup.css";
|
|
4
|
-
var Popup = function (_a) {
|
|
5
|
-
var onCloseClick = _a.onCloseClick, children = _a.children;
|
|
6
|
-
return (React.createElement("div", { className: "popup-overlay" },
|
|
7
|
-
React.createElement("div", { className: "shareSection col-12 d-flex position-relative flex-column mx-auto justify-content-center col-5 col-lg-6 d-flex gap-4" },
|
|
8
|
-
React.createElement("div", { className: "end-0 top-0 position-absolute " },
|
|
9
|
-
React.createElement("img", { src: closeIcon, alt: "close", className: "closeIcon me-2", onClick: onCloseClick })),
|
|
10
|
-
children)));
|
|
11
|
-
};
|
|
12
|
-
export default Popup;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
<svg width="220" height="58" viewBox="0 0 220 58" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M97.653 45.886h-4.62V29.447c0-6.12-2.236-9.18-6.705-9.18-2.305 0-4.218.866-5.728 2.607-1.51 1.741-2.265 3.926-2.265 6.573v16.439h-4.62v-28.83h4.62v4.781h.111c2.174-3.644 5.335-5.466 9.462-5.466 3.151 0 5.567 1.017 7.238 3.06 1.671 2.034 2.507 4.983 2.507 8.828v17.627zM127.793 32.618h-20.355c.071 3.211.937 5.688 2.587 7.43 1.651 1.74 3.926 2.616 6.815 2.616 3.252 0 6.231-1.067 8.949-3.21v4.338c-2.536 1.842-5.888 2.758-10.056 2.758-4.167 0-7.278-1.309-9.603-3.926-2.326-2.617-3.493-6.301-3.493-11.053 0-4.49 1.268-8.143 3.815-10.962 2.547-2.829 5.697-4.238 9.472-4.238 3.775 0 6.694 1.218 8.758 3.664 2.064 2.436 3.1 5.829 3.1 10.167v2.426l.011-.01zm-4.732-3.916c-.02-2.667-.664-4.74-1.932-6.22-1.269-1.48-3.03-2.225-5.275-2.225-2.245 0-4.027.775-5.547 2.335-1.52 1.56-2.456 3.594-2.818 6.11h15.572zM131.304 44.84v-4.953c2.516 1.863 5.284 2.789 8.304 2.789 4.057 0 6.08-1.35 6.08-4.057 0-.765-.171-1.42-.523-1.953a5.235 5.235 0 0 0-1.409-1.42 10.668 10.668 0 0 0-2.084-1.107c-.795-.322-1.661-.674-2.577-1.026a32.774 32.774 0 0 1-3.362-1.53c-.967-.514-1.772-1.098-2.426-1.742a6.605 6.605 0 0 1-1.47-2.214c-.332-.826-.493-1.792-.493-2.9 0-1.348.312-2.546.926-3.593a8.305 8.305 0 0 1 2.476-2.617 11.53 11.53 0 0 1 3.534-1.59 15.818 15.818 0 0 1 4.097-.534c2.496 0 4.731.432 6.704 1.298v4.67c-2.124-1.388-4.56-2.083-7.318-2.083-.866 0-1.641.1-2.336.292-.694.201-1.288.473-1.792.836a3.872 3.872 0 0 0-1.157 1.278 3.374 3.374 0 0 0-.413 1.65c0 .756.131 1.38.413 1.883.272.504.674.957 1.198 1.35a8.963 8.963 0 0 0 1.912 1.066c.745.312 1.601.665 2.557 1.037 1.279.493 2.426.987 3.433 1.51 1.006.523 1.872 1.097 2.587 1.742a6.883 6.883 0 0 1 1.651 2.234c.382.846.573 1.852.573 3.01 0 1.43-.312 2.668-.946 3.715a8.103 8.103 0 0 1-2.516 2.617c-1.047.694-2.265 1.208-3.634 1.55-1.369.342-2.809.503-4.309.503-2.969 0-5.536-.573-7.711-1.721l.031.01zM169.155 45.604c-1.087.604-2.527.896-4.308.896-5.054 0-7.57-2.819-7.57-8.446V20.992h-4.953v-3.946h4.953v-7.037l4.62-1.49v8.537h7.268v3.946h-7.268v16.247c0 1.933.332 3.312.987 4.137.654.826 1.741 1.238 3.271 1.238 1.168 0 2.165-.322 3.01-.956v3.946l-.01-.01zM175.958 9.728c-.825 0-1.53-.282-2.113-.846-.584-.563-.876-1.278-.876-2.144 0-.865.292-1.58.876-2.154.583-.574 1.288-.855 2.113-.855.826 0 1.561.291 2.155.855.594.574.885 1.289.885 2.154 0 .866-.291 1.53-.885 2.114a2.956 2.956 0 0 1-2.155.876zm2.255 36.148h-4.62v-28.83h4.62v28.83zM211.614 49.783c-.191.08-.402.15-.634.201-.241.07-.493.12-.745.161-.262.05-.513.08-.755.1-.251.021-.483.031-.694.031-.775 0-1.49-.1-2.124-.292a7.385 7.385 0 0 1-1.853-.876 14.22 14.22 0 0 1-1.832-1.45 46.243 46.243 0 0 1-1.55-1.56c1.54-.422 2.909-1.056 4.087-1.902a12.617 12.617 0 0 0 3.322-3.493 15.696 15.696 0 0 0 1.953-4.6c.423-1.681.644-3.493.644-5.386 0-4.53-1.298-8.244-3.855-11.053-2.567-2.828-5.96-4.258-10.067-4.258-4.58 0-8.244 1.48-10.891 4.38-2.618 2.878-3.936 6.794-3.936 11.646 0 4.53 1.298 8.244 3.875 11.053a12.048 12.048 0 0 0 2.185 1.872c.785.523 1.63.966 2.516 1.329a13.31 13.31 0 0 0 2.708.805c.876.171 1.741.252 2.587.262a170.143 170.143 0 0 0 2.577 2.818 20.847 20.847 0 0 0 2.708 2.426 12.088 12.088 0 0 0 3.04 1.661c1.097.413 2.335.614 3.694.614.242 0 .514-.01.795-.03.282-.02.564-.05.856-.09.282-.03.574-.07.856-.121.292-.05.553-.11.785-.191l.262-.081v-4.178l-.514.202zm-14.435-30.481c3.06 0 5.496 1.037 7.228 3.07 1.751 2.034 2.637 5.003 2.637 8.818 0 3.815-.916 6.604-2.718 8.647-1.782 2.024-4.278 3.05-7.399 3.05-2.909 0-5.304-1.077-7.116-3.19-1.822-2.165-2.738-5.044-2.738-8.567 0-3.523.946-6.432 2.818-8.597 1.852-2.144 4.309-3.231 7.288-3.231z" fill="#1D1D1B"/>
|
|
3
|
-
<path d="M49.708 3.94H16.75a8.587 8.587 0 0 0-8.587 8.586v32.957a8.587 8.587 0 0 0 8.587 8.587h32.957a8.587 8.587 0 0 0 8.587-8.587V12.526a8.587 8.587 0 0 0-8.587-8.587z" fill="#191919"/>
|
|
4
|
-
<path d="M34.337 18.233s-20.727 2.315-13.238 8.959c5.154 4.298 15.351 3.735 15.351 3.735s-14.696 2.345-21.793-3.494c0 0-5.265-4.197 4.953-7.62 0 0 4.338-1.721 14.727-1.58z" fill="#fff"/>
|
|
5
|
-
<path d="M31.68 21.414c.413.08 19.73 2.315 14.556 7.469-5.496 5.476-15.744 5.104-15.744 5.104s13.117 1.932 21.24-4.47c6.946-6.795-13.519-10.418-20.052-8.103z" fill="#fff"/>
|
|
6
|
-
<path d="M15.371 31.752c.383.554 15.623 10.53 35.152 1.57 0 0-7.741 6.503-17.043 6.473-11.676 0-18.109-8.043-18.109-8.043z" fill="#fff"/>
|
|
7
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right-short" viewBox="0 0 16 16">
|
|
2
|
-
<path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8"/>
|
|
3
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#ct6swd92za)">
|
|
3
|
-
<path d="m8.622 15.671-.743.763a.786.786 0 0 1-1.135 0L.236 9.76a.836.836 0 0 1 0-1.165l6.508-6.677a.786.786 0 0 1 1.135 0l.743.762A.84.84 0 0 1 8.61 3.86L4.575 7.802h9.622c.445 0 .803.367.803.824v1.1a.812.812 0 0 1-.803.824H4.575l4.034 3.943c.328.32.335.852.013 1.178z" fill="#1B1B1B"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="ct6swd92za">
|
|
7
|
-
<path fill="#fff" transform="translate(0 .5)" d="M0 0h16v16H0z"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
Binary file
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#ytxejv4aoa)">
|
|
3
|
-
<path fill="#fff" fill-opacity=".01" d="M.004 0h16v16h-16z"/>
|
|
4
|
-
<g clip-path="url(#dj5t0etrqb)">
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M.185 4.679a.615.615 0 0 1 .871 0l6.948 6.95 6.948-6.95a.616.616 0 1 1 .871.871L8.44 12.934a.614.614 0 0 1-.872 0L.185 5.55a.615.615 0 0 1 0-.871z" fill="#6C757D"/>
|
|
6
|
-
</g>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="ytxejv4aoa">
|
|
10
|
-
<path fill="#fff" transform="translate(.004)" d="M0 0h16v16H0z"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
<clipPath id="dj5t0etrqb">
|
|
13
|
-
<path fill="#fff" transform="translate(.004)" d="M0 0h16v16H0z"/>
|
|
14
|
-
</clipPath>
|
|
15
|
-
</defs>
|
|
16
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16.364 1.125H2.386A2.386 2.386 0 0 0 0 3.511V17.49a2.387 2.387 0 0 0 2.386 2.386h6.847v-7.802h-1.56v-3.12H9.22v-1.41c0-1.277.608-3.27 3.284-3.27l2.41.009v2.673h-1.75c-.285 0-.69.142-.69.75v1.248h2.48l-.285 3.12h-2.315v7.802h4.01a2.386 2.386 0 0 0 2.386-2.386V3.51a2.385 2.385 0 0 0-2.386-2.386z" fill="#fff"/>
|
|
3
|
-
</svg>
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#hj67cbze5a)" fill="#fff">
|
|
3
|
-
<path d="M4.437 8.04 1.031 6.075a9.944 9.944 0 0 0 .014 8.843l3.392-1.959a6.042 6.042 0 0 1 0-4.917zM16.558 2.952A9.961 9.961 0 0 0 9.992.5a10.013 10.013 0 0 0-8.308 4.446l3.409 1.969a6.077 6.077 0 0 1 4.906-2.502c1.468 0 2.814.525 3.865 1.395a.646.646 0 0 0 .87-.043l1.857-1.857a.655.655 0 0 0-.033-.956zM19.93 9.344a.656.656 0 0 0-.65-.582h-8.194a.652.652 0 0 0-.652.652v2.606c0 .36.292.653.652.653h4.591a6.132 6.132 0 0 1-2.092 2.735l1.95 3.377a10.212 10.212 0 0 0 4.113-5.716 9.624 9.624 0 0 0 .282-3.725zM12.459 16.062a6.024 6.024 0 0 1-2.458.525 6.075 6.075 0 0 1-4.907-2.501l-3.395 1.96c1.788 2.662 4.822 4.454 8.302 4.454 1.573 0 3.07-.385 4.41-1.058l-1.952-3.38z"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="hj67cbze5a">
|
|
7
|
-
<path fill="#fff" transform="translate(0 .5)" d="M0 0h20v20H0z"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="30" height="27" viewBox="0 0 30 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M27.24 2.467a7.97 7.97 0 0 0-11.275.004l-.966.978-.958-.976-.006-.006a7.97 7.97 0 0 0-11.27 0l-.43.43a7.97 7.97 0 0 0 0 11.27l11.354 11.356 1.282 1.343.03-.03.034.033 1.201-1.268L27.67 14.168a7.979 7.979 0 0 0 0-11.27l-.43-.431zm-.98 10.292L15.003 24.018l-11.26-11.26a5.977 5.977 0 0 1 0-8.452l.431-.43a5.977 5.977 0 0 1 8.45-.003l2.372 2.415 2.383-2.412a5.977 5.977 0 0 1 8.453 0l.43.43a5.984 5.984 0 0 1 0 8.453z" fill="#fff"/>
|
|
3
|
-
</svg>
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="80" height="81" viewBox="0 0 80 81" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#x941tpr7ca)">
|
|
3
|
-
<path d="M57.682 27.808a3.125 3.125 0 0 1 0 4.42L36.717 53.191a3.126 3.126 0 0 1-4.419 0l-9.98-9.98a3.124 3.124 0 1 1 4.42-4.42l7.77 7.771 18.754-18.755a3.126 3.126 0 0 1 4.42 0zM80 40.5c0 22.11-17.893 40-40 40-22.11 0-40-17.893-40-40C0 18.39 17.893.5 40 .5c22.11 0 40 17.893 40 40zm-6.25 0C73.75 21.845 58.653 6.75 40 6.75 21.345 6.75 6.25 21.847 6.25 40.5c0 18.655 15.097 33.75 33.75 33.75 18.655 0 33.75-15.097 33.75-33.75z" fill="#FFB525"/>
|
|
4
|
-
</g>
|
|
5
|
-
<defs>
|
|
6
|
-
<clipPath id="x941tpr7ca">
|
|
7
|
-
<path fill="#fff" transform="translate(0 .5)" d="M0 0h80v80H0z"/>
|
|
8
|
-
</clipPath>
|
|
9
|
-
</defs>
|
|
10
|
-
</svg>
|
|
Binary file
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M22.046 9.9h-2.56a.937.937 0 1 0 0 1.875h2.56c.517 0 .938.42.938.937v12.26c0 .517-.42.938-.938.938H7.953a.939.939 0 0 1-.937-.938v-12.26c0-.517.42-.937.937-.937h2.56a.937.937 0 1 0 0-1.875h-2.56a2.816 2.816 0 0 0-2.812 2.812v12.26a2.816 2.816 0 0 0 2.812 2.813h14.093a2.816 2.816 0 0 0 2.813-2.813v-12.26A2.816 2.816 0 0 0 22.046 9.9zM11.504 8.007l2.59-2.59V17.76a.937.937 0 1 0 1.874 0V5.418l2.59 2.59a.934.934 0 0 0 1.326 0 .937.937 0 0 0 0-1.327l-4.19-4.19a.938.938 0 0 0-1.326 0l-4.19 4.19a.937.937 0 1 0 1.326 1.326z" fill="#000"/>
|
|
3
|
-
</svg>
|