nestiq-component-library 1.1.92 → 1.1.93

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.
Files changed (47) hide show
  1. package/dist/assets/images/{card-arrow-left.28090aba4b4f2006.svg → card-arrow-left.55343410142dad3f.svg} +4 -4
  2. package/dist/assets/images/{card-arrow-right.c60af4cbbd49f3aa.svg → card-arrow-right.60b3bf0e34c1800d.svg} +4 -4
  3. package/dist/assets/images/{imooly.890e3dd01ea33574.svg → imooly.b46514ac970e6052.svg} +7 -7
  4. package/dist/assets/images/{more.1e158adc48fbb406.svg → more.ce14789c8d37e327.svg} +12 -12
  5. package/dist/index.es.js +11 -12
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/index.js +11 -12
  8. package/dist/index.js.map +1 -1
  9. package/package.json +1 -1
  10. package/rollup.config.mjs +36 -36
  11. package/src/assets/images/card-arrow-left.svg +4 -4
  12. package/src/assets/images/card-arrow-right.svg +4 -4
  13. package/src/assets/images/imooly.svg +7 -7
  14. package/src/assets/images/more.svg +12 -12
  15. package/src/components/FloorPlanPopup/FloorPlanPopup.css +3 -3
  16. package/src/components/FloorPlanPopup/FloorPlanPopup.tsx +83 -83
  17. package/src/components/ImageListPopup/ImageListPopup.css +83 -83
  18. package/src/components/ImageListPopup/ImageListPopup.tsx +141 -141
  19. package/src/components/MessagePopup/MessagePopUp.tsx +156 -156
  20. package/src/components/NewPropertyCard/NewPropertyCard.css +370 -372
  21. package/src/components/NewPropertyCard/NewPropertyCard.tsx +280 -287
  22. package/src/components/Popup/Popup.tsx +29 -29
  23. package/src/components/ToastWrapper/ToastWrapper.tsx +25 -25
  24. package/src/models/message.model.ts +7 -7
  25. package/dist/assets/images/Icon_rightArrow.svg +0 -3
  26. package/dist/assets/images/LayersIcon.svg +0 -5
  27. package/dist/assets/images/blackarrow-Right.svg +0 -3
  28. package/dist/assets/images/blckarrow-Left.svg +0 -3
  29. package/dist/assets/images/chevron-left.svg +0 -3
  30. package/dist/assets/images/default-property.jpg +0 -0
  31. package/dist/assets/images/heartIcon.svg +0 -3
  32. package/dist/assets/images/icon-close-white.webp +0 -0
  33. package/dist/assets/images/icon_close 2.e41bb9a4db48e048.png +0 -0
  34. package/dist/assets/images/icon_close_2.png +0 -0
  35. package/dist/assets/images/icon_gallery.svg +0 -4
  36. package/dist/assets/images/icon_map.svg +0 -10
  37. package/dist/assets/images/icon_share_1.svg +0 -3
  38. package/dist/assets/images/layer_icon.svg +0 -5
  39. package/dist/assets/images/locationIcon.0af399c78e0cdc20.svg +0 -4
  40. package/dist/assets/images/locationIcon.svg +0 -4
  41. package/dist/assets/images/locationIconBlack.svg +0 -4
  42. package/dist/assets/images/no-image-icon.png +0 -0
  43. package/dist/components/Button/Button.js +0 -6
  44. package/dist/components/ImageListPopup/ImageListPopup.js +0 -26
  45. package/dist/components/MessagePopup/ErrorPopup.d.ts +0 -7
  46. package/dist/components/Popup/Popup.js +0 -12
  47. package/dist/components/SharePopup/PopUp.d.ts +0 -7
@@ -1,141 +1,141 @@
1
- import "./ImageListPopup.css";
2
- import React, { useRef, useState } from "react";
3
- import blcIconArrowRight from "../../assets/images/blackarrow-Right.svg";
4
- import blcIconArrowLeft from "../../assets/images/blckarrow-Left.svg";
5
- import iconClose from "../../assets/images/close.png";
6
- import "../../styles/common.css";
7
-
8
- interface PopupProps {
9
- pictureUrls: { title: string; url: string }[];
10
- }
11
-
12
- export default function ImageListPopup(props: PopupProps) {
13
- const [showPopUp, setShowPopUp] = useState(true);
14
- const [currentImageIndex, setCurrentImageIndex] = useState(0);
15
- const imageListRef = useRef<HTMLDivElement | null>(null);
16
-
17
- const handleArrowClickInMainImage = (direction: any) => {
18
- if (props.pictureUrls.length === 0) return;
19
-
20
- let newIndex = currentImageIndex;
21
- if (direction === "left") {
22
- newIndex =
23
- (currentImageIndex - 1 + props.pictureUrls.length) %
24
- props.pictureUrls.length;
25
- } else if (direction === "right") {
26
- newIndex = (currentImageIndex + 1) % props.pictureUrls.length;
27
- }
28
-
29
- setCurrentImageIndex(newIndex);
30
-
31
- imageListRef.current!.scrollTo({
32
- left: newIndex * 150,
33
- behavior: "smooth",
34
- });
35
- };
36
-
37
- const handleClose = () => {
38
- setShowPopUp(false);
39
- };
40
-
41
- return (
42
- <div>
43
- {showPopUp && (
44
- <div className="popup-overlay">
45
- <div className=" d-flex w-50 flex-column col-6 ">
46
- <div className="d-flex align-self-end me-5 mt-5">
47
- <img
48
- src={iconClose}
49
- alt="close"
50
- className="closeIcon mt-5"
51
- onClick={handleClose}
52
- />
53
- </div>
54
- <span className="text-white align-self-center">
55
- {props.pictureUrls[currentImageIndex].title}
56
- </span>
57
- <div className="d-flex justify-content-center">
58
- <div className="p-2 bd-highlight align-self-center align-items-center me-5">
59
- <div
60
- className="rounded-circle border onImageArrow start-0 d-flex "
61
- role="button"
62
- onClick={() => handleArrowClickInMainImage("left")}
63
- >
64
- <img
65
- src={blcIconArrowLeft}
66
- className="blackArrow align-self-center"
67
- alt="Left Arrow"
68
- />
69
- </div>
70
- </div>
71
- <div className="p-2 bd-highlight">
72
- <div
73
- className=" rounded-5 mainImage "
74
- style={{
75
- backgroundImage: `url(${props.pictureUrls[currentImageIndex].url})`,
76
- height: "350px",
77
- width: "600px",
78
- backgroundSize: "cover",
79
- backgroundPosition: "center",
80
- }}
81
- ></div>
82
- </div>
83
- <div className="p-2 bd-highlight align-self-center ms-5">
84
- {" "}
85
- <div
86
- role="button"
87
- className="rounded-circle border onImageArrow d-flex justify-content-center"
88
- onClick={() => handleArrowClickInMainImage("right")}
89
- >
90
- <img
91
- src={blcIconArrowRight}
92
- className="blackArrow align-self-center"
93
- alt="Right Arrow"
94
- />
95
- </div>
96
- </div>
97
- </div>
98
- <div className="d-flex flex-row">
99
- {/* Arrows on the main image */}
100
- </div>
101
- <div className="d-flex flex-row gap-4 w-100 secondList ">
102
- <div className="col-lg-12 d-flex flex-row p-1 align-self-center mt-5">
103
- <div className="col-12 position-relative d-flex justify-content-center">
104
- <div
105
- className="col-lg-10 rounded-3 h-100 w-100 d-flex flex-row gap-2 overflow-auto "
106
- ref={imageListRef}
107
- >
108
- {props.pictureUrls.length > 0 && (
109
- <div className="col-lg-5 h-100 w-25 d-flex gap-4 flex-row rounded-3">
110
- {props.pictureUrls.map((picture, index) => (
111
- <div
112
- key={index}
113
- className="col-lg-12 h-100 d-flex"
114
- onClick={() => {
115
- setCurrentImageIndex(index);
116
- imageListRef.current!.scrollTo({
117
- left: index * 150,
118
- behavior: "smooth",
119
- });
120
- }}
121
- role="button"
122
- >
123
- <img
124
- src={picture.url}
125
- alt={`Image ${index + 1}`}
126
- className="col-12 h-100 rounded-3 object-fit-cover"
127
- />
128
- </div>
129
- ))}
130
- </div>
131
- )}
132
- </div>
133
- </div>
134
- </div>
135
- </div>
136
- </div>
137
- </div>
138
- )}
139
- </div>
140
- );
141
- }
1
+ import "./ImageListPopup.css";
2
+ import React, { useRef, useState } from "react";
3
+ import blcIconArrowRight from "../../assets/images/blackarrow-Right.svg";
4
+ import blcIconArrowLeft from "../../assets/images/blckarrow-Left.svg";
5
+ import iconClose from "../../assets/images/close.png";
6
+ import "../../styles/common.css";
7
+
8
+ interface PopupProps {
9
+ pictureUrls: { title: string; url: string }[];
10
+ }
11
+
12
+ export default function ImageListPopup(props: PopupProps) {
13
+ const [showPopUp, setShowPopUp] = useState(true);
14
+ const [currentImageIndex, setCurrentImageIndex] = useState(0);
15
+ const imageListRef = useRef<HTMLDivElement | null>(null);
16
+
17
+ const handleArrowClickInMainImage = (direction: any) => {
18
+ if (props.pictureUrls.length === 0) return;
19
+
20
+ let newIndex = currentImageIndex;
21
+ if (direction === "left") {
22
+ newIndex =
23
+ (currentImageIndex - 1 + props.pictureUrls.length) %
24
+ props.pictureUrls.length;
25
+ } else if (direction === "right") {
26
+ newIndex = (currentImageIndex + 1) % props.pictureUrls.length;
27
+ }
28
+
29
+ setCurrentImageIndex(newIndex);
30
+
31
+ imageListRef.current!.scrollTo({
32
+ left: newIndex * 150,
33
+ behavior: "smooth",
34
+ });
35
+ };
36
+
37
+ const handleClose = () => {
38
+ setShowPopUp(false);
39
+ };
40
+
41
+ return (
42
+ <div>
43
+ {showPopUp && (
44
+ <div className="popup-overlay">
45
+ <div className=" d-flex w-50 flex-column col-6 ">
46
+ <div className="d-flex align-self-end me-5 mt-5">
47
+ <img
48
+ src={iconClose}
49
+ alt="close"
50
+ className="closeIcon mt-5"
51
+ onClick={handleClose}
52
+ />
53
+ </div>
54
+ <span className="text-white align-self-center">
55
+ {props.pictureUrls[currentImageIndex].title}
56
+ </span>
57
+ <div className="d-flex justify-content-center">
58
+ <div className="p-2 bd-highlight align-self-center align-items-center me-5">
59
+ <div
60
+ className="rounded-circle border onImageArrow start-0 d-flex "
61
+ role="button"
62
+ onClick={() => handleArrowClickInMainImage("left")}
63
+ >
64
+ <img
65
+ src={blcIconArrowLeft}
66
+ className="blackArrow align-self-center"
67
+ alt="Left Arrow"
68
+ />
69
+ </div>
70
+ </div>
71
+ <div className="p-2 bd-highlight">
72
+ <div
73
+ className=" rounded-5 mainImage "
74
+ style={{
75
+ backgroundImage: `url(${props.pictureUrls[currentImageIndex].url})`,
76
+ height: "350px",
77
+ width: "600px",
78
+ backgroundSize: "cover",
79
+ backgroundPosition: "center",
80
+ }}
81
+ ></div>
82
+ </div>
83
+ <div className="p-2 bd-highlight align-self-center ms-5">
84
+ {" "}
85
+ <div
86
+ role="button"
87
+ className="rounded-circle border onImageArrow d-flex justify-content-center"
88
+ onClick={() => handleArrowClickInMainImage("right")}
89
+ >
90
+ <img
91
+ src={blcIconArrowRight}
92
+ className="blackArrow align-self-center"
93
+ alt="Right Arrow"
94
+ />
95
+ </div>
96
+ </div>
97
+ </div>
98
+ <div className="d-flex flex-row">
99
+ {/* Arrows on the main image */}
100
+ </div>
101
+ <div className="d-flex flex-row gap-4 w-100 secondList ">
102
+ <div className="col-lg-12 d-flex flex-row p-1 align-self-center mt-5">
103
+ <div className="col-12 position-relative d-flex justify-content-center">
104
+ <div
105
+ className="col-lg-10 rounded-3 h-100 w-100 d-flex flex-row gap-2 overflow-auto "
106
+ ref={imageListRef}
107
+ >
108
+ {props.pictureUrls.length > 0 && (
109
+ <div className="col-lg-5 h-100 w-25 d-flex gap-4 flex-row rounded-3">
110
+ {props.pictureUrls.map((picture, index) => (
111
+ <div
112
+ key={index}
113
+ className="col-lg-12 h-100 d-flex"
114
+ onClick={() => {
115
+ setCurrentImageIndex(index);
116
+ imageListRef.current!.scrollTo({
117
+ left: index * 150,
118
+ behavior: "smooth",
119
+ });
120
+ }}
121
+ role="button"
122
+ >
123
+ <img
124
+ src={picture.url}
125
+ alt={`Image ${index + 1}`}
126
+ className="col-12 h-100 rounded-3 object-fit-cover"
127
+ />
128
+ </div>
129
+ ))}
130
+ </div>
131
+ )}
132
+ </div>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ )}
139
+ </div>
140
+ );
141
+ }
@@ -1,156 +1,156 @@
1
- import React, { useEffect, useState } from "react";
2
- import x from "../../assets/Images/icon_close_2.png";
3
- import mail_icon from "../../assets/Images/mail-icon.png";
4
- import "../MessagePopup/MessagePopUp.css";
5
- import { MessageModel } from "../../models/message.model";
6
-
7
- interface PopupProps {
8
- sellerFirstName: string;
9
- sellerLastName: string;
10
- onCloseClick: () => void;
11
- themesList: any;
12
- onSubmit: (formValues: MessageModel) => void;
13
- }
14
-
15
- export default function MessagePopUp(props: PopupProps) {
16
- const [themeId, setThemeId] = useState("");
17
- const [subject, setSubject] = useState("");
18
- const [messageText, setMessageText] = useState("");
19
- const [firstName, setFirstName] = useState("");
20
- const [lastName, setLastName] = useState("");
21
-
22
- const handleClose = () => {
23
- props.onCloseClick();
24
- };
25
- function handleSendMessage() {
26
- props.onSubmit({ themeId, subject, messageText, firstName, lastName });
27
- }
28
-
29
- useEffect(() => {
30
- const user = JSON.parse(localStorage.getItem("user") || "{}");
31
- if (user) {
32
- setFirstName(user.firstname || "");
33
- setLastName(user.lastname || "");
34
- }
35
- }, []);
36
- return (
37
- <div>
38
- <div className="popup-overlay">
39
- <div className="MessageShareSections d-flex flex-column col-10 col-lg-7">
40
- <img
41
- src={x}
42
- alt="close"
43
- className="closeIcon d-flex flex-column align-self-end"
44
- onClick={handleClose}
45
- />
46
- <div className="">
47
- <div className="d-flex ms-md-5 mb-4">
48
- <div className="circle align-self-center ms-md-2 me-4">
49
- <img
50
- src={mail_icon}
51
- alt="email"
52
- className="align-self-center"
53
- style={{
54
- alignSelf: "center",
55
- justifyContent: "center",
56
- margin: "14px",
57
- width: "25px",
58
- height: "20px",
59
- }}
60
- />
61
- </div>
62
- <div className="popUpHeader d-flex flex-column text-wrap mb-md-1 ">
63
- Nachricht senden {props.sellerFirstName} {props.sellerLastName}
64
- </div>
65
- </div>
66
-
67
- <div className="d-flex flex-md-row flex-column ms-md-5 mt-md-0 ">
68
- <div className="d-flex flex-column mt-md-0 mt-4 col me-4 w-100 align-self-start justify-content-start">
69
- <span className="popup-tags mb-2">Betreff:*</span>
70
- <div>
71
- <select
72
- name="theme"
73
- id="theme"
74
- className="mb-md-4 col-md-11 col-12"
75
- style={{ height: "42px" }}
76
- value={themeId}
77
- onChange={(e) => setThemeId(e.target.value)}
78
- >
79
- <option value="">Select a theme</option>
80
- {props.themesList.map(
81
- (theme: { id: string; name: string }) => (
82
- <option key={theme.id} value={theme.id}>
83
- {theme.name}
84
- </option>
85
- ),
86
- )}
87
- </select>
88
- </div>
89
- </div>
90
- <div className="d-flex flex-column mt-md-4 col me-4 w-100">
91
- <div></div>
92
- <textarea
93
- className="popup_textarea col-12 col-md-10 mb-md-0 mt-2 "
94
- placeholder="Betreff deiner Nachricht"
95
- style={{ height: "42px" }}
96
- value={subject}
97
- onChange={(e) => setSubject(e.target.value)}
98
- />
99
- </div>
100
- </div>
101
- <div className="d-flex flex-column col ms-md-5 me-md-4">
102
- <span className="popup-tags mb-2 ">Deine Nachricht:*</span>
103
- <textarea
104
- className="popup_textarea mb-md-4 col-md-11 col-12 "
105
- placeholder="Deine Nachricht hier..."
106
- value={messageText}
107
- onChange={(e) => setMessageText(e.target.value)}
108
- />
109
- </div>
110
- {/* <div className="d-flex flex-column ms-5 me-5">
111
- <span className="popup-tags mb-2">Thema auswählen:*</span>
112
-
113
- </div> */}
114
- <div className="d-flex flex-md-row flex-column ms-md-5 ">
115
- <div className="d-flex flex-column col me-4 w-100">
116
- <span className="popup-tags mb-2">Vorname:</span>
117
- <input
118
- className="popup_textarea mb-md-4 col-12 col-md-11"
119
- placeholder="Dein Vorname"
120
- type="text"
121
- value={firstName}
122
- onChange={(e) => setFirstName(e.target.value)}
123
- style={{ height: "42px" }}
124
- />
125
- </div>
126
- <div className="d-flex flex-column me-4 w-100 col ">
127
- <span className="popup-tags mb-2">Nachname:</span>
128
- <input
129
- className="popup_textarea col-12 mb-4 col-md-10"
130
- placeholder="Dein Nachname"
131
- type="text"
132
- value={lastName}
133
- onChange={(e) => setLastName(e.target.value)}
134
- style={{ height: "42px" }}
135
- />
136
- </div>
137
- </div>
138
- <div className="d-flex gap-md-3 gap-3 flex-md-row flex-column align-self-center justify-content-center mb-4 mt-md-2">
139
- <button
140
- className="main_button border-0 rounded-4 align-self-center "
141
- type="button"
142
- id="button"
143
- onClick={handleSendMessage}
144
- >
145
- <strong>Nachricht senden</strong>
146
- </button>
147
- <button className="button_icon-right border-1 col-sm-3 align-self-center">
148
- <strong>Abbrechen</strong>
149
- </button>
150
- </div>
151
- </div>
152
- </div>
153
- </div>
154
- </div>
155
- );
156
- }
1
+ import React, { useEffect, useState } from "react";
2
+ import x from "../../assets/Images/icon_close_2.png";
3
+ import mail_icon from "../../assets/Images/mail-icon.png";
4
+ import "../MessagePopup/MessagePopUp.css";
5
+ import { MessageModel } from "../../models/message.model";
6
+
7
+ interface PopupProps {
8
+ sellerFirstName: string;
9
+ sellerLastName: string;
10
+ onCloseClick: () => void;
11
+ themesList: any;
12
+ onSubmit: (formValues: MessageModel) => void;
13
+ }
14
+
15
+ export default function MessagePopUp(props: PopupProps) {
16
+ const [themeId, setThemeId] = useState("");
17
+ const [subject, setSubject] = useState("");
18
+ const [messageText, setMessageText] = useState("");
19
+ const [firstName, setFirstName] = useState("");
20
+ const [lastName, setLastName] = useState("");
21
+
22
+ const handleClose = () => {
23
+ props.onCloseClick();
24
+ };
25
+ function handleSendMessage() {
26
+ props.onSubmit({ themeId, subject, messageText, firstName, lastName });
27
+ }
28
+
29
+ useEffect(() => {
30
+ const user = JSON.parse(localStorage.getItem("user") || "{}");
31
+ if (user) {
32
+ setFirstName(user.firstname || "");
33
+ setLastName(user.lastname || "");
34
+ }
35
+ }, []);
36
+ return (
37
+ <div>
38
+ <div className="popup-overlay">
39
+ <div className="MessageShareSections d-flex flex-column col-10 col-lg-7">
40
+ <img
41
+ src={x}
42
+ alt="close"
43
+ className="closeIcon d-flex flex-column align-self-end"
44
+ onClick={handleClose}
45
+ />
46
+ <div className="">
47
+ <div className="d-flex ms-md-5 mb-4">
48
+ <div className="circle align-self-center ms-md-2 me-4">
49
+ <img
50
+ src={mail_icon}
51
+ alt="email"
52
+ className="align-self-center"
53
+ style={{
54
+ alignSelf: "center",
55
+ justifyContent: "center",
56
+ margin: "14px",
57
+ width: "25px",
58
+ height: "20px",
59
+ }}
60
+ />
61
+ </div>
62
+ <div className="popUpHeader d-flex flex-column text-wrap mb-md-1 ">
63
+ Nachricht senden {props.sellerFirstName} {props.sellerLastName}
64
+ </div>
65
+ </div>
66
+
67
+ <div className="d-flex flex-md-row flex-column ms-md-5 mt-md-0 ">
68
+ <div className="d-flex flex-column mt-md-0 mt-4 col me-4 w-100 align-self-start justify-content-start">
69
+ <span className="popup-tags mb-2">Betreff:*</span>
70
+ <div>
71
+ <select
72
+ name="theme"
73
+ id="theme"
74
+ className="mb-md-4 col-md-11 col-12"
75
+ style={{ height: "42px" }}
76
+ value={themeId}
77
+ onChange={(e) => setThemeId(e.target.value)}
78
+ >
79
+ <option value="">Select a theme</option>
80
+ {props.themesList.map(
81
+ (theme: { id: string; name: string }) => (
82
+ <option key={theme.id} value={theme.id}>
83
+ {theme.name}
84
+ </option>
85
+ ),
86
+ )}
87
+ </select>
88
+ </div>
89
+ </div>
90
+ <div className="d-flex flex-column mt-md-4 col me-4 w-100">
91
+ <div></div>
92
+ <textarea
93
+ className="popup_textarea col-12 col-md-10 mb-md-0 mt-2 "
94
+ placeholder="Betreff deiner Nachricht"
95
+ style={{ height: "42px" }}
96
+ value={subject}
97
+ onChange={(e) => setSubject(e.target.value)}
98
+ />
99
+ </div>
100
+ </div>
101
+ <div className="d-flex flex-column col ms-md-5 me-md-4">
102
+ <span className="popup-tags mb-2 ">Deine Nachricht:*</span>
103
+ <textarea
104
+ className="popup_textarea mb-md-4 col-md-11 col-12 "
105
+ placeholder="Deine Nachricht hier..."
106
+ value={messageText}
107
+ onChange={(e) => setMessageText(e.target.value)}
108
+ />
109
+ </div>
110
+ {/* <div className="d-flex flex-column ms-5 me-5">
111
+ <span className="popup-tags mb-2">Thema auswählen:*</span>
112
+
113
+ </div> */}
114
+ <div className="d-flex flex-md-row flex-column ms-md-5 ">
115
+ <div className="d-flex flex-column col me-4 w-100">
116
+ <span className="popup-tags mb-2">Vorname:</span>
117
+ <input
118
+ className="popup_textarea mb-md-4 col-12 col-md-11"
119
+ placeholder="Dein Vorname"
120
+ type="text"
121
+ value={firstName}
122
+ onChange={(e) => setFirstName(e.target.value)}
123
+ style={{ height: "42px" }}
124
+ />
125
+ </div>
126
+ <div className="d-flex flex-column me-4 w-100 col ">
127
+ <span className="popup-tags mb-2">Nachname:</span>
128
+ <input
129
+ className="popup_textarea col-12 mb-4 col-md-10"
130
+ placeholder="Dein Nachname"
131
+ type="text"
132
+ value={lastName}
133
+ onChange={(e) => setLastName(e.target.value)}
134
+ style={{ height: "42px" }}
135
+ />
136
+ </div>
137
+ </div>
138
+ <div className="d-flex gap-md-3 gap-3 flex-md-row flex-column align-self-center justify-content-center mb-4 mt-md-2">
139
+ <button
140
+ className="main_button border-0 rounded-4 align-self-center "
141
+ type="button"
142
+ id="button"
143
+ onClick={handleSendMessage}
144
+ >
145
+ <strong>Nachricht senden</strong>
146
+ </button>
147
+ <button className="button_icon-right border-1 col-sm-3 align-self-center">
148
+ <strong>Abbrechen</strong>
149
+ </button>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ );
156
+ }