trepur_components 0.2.73 → 0.3.1
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/Accordion/index.js +1 -19
- package/dist/components/AlertBar/index.js +82 -56
- package/dist/components/Breadcrumbs/index.js +31 -11
- package/dist/components/BreadcrumbsBordered/index.js +13 -11
- package/dist/components/BreadcrumbsItem/index.css +3 -23
- package/dist/components/BreadcrumbsItem/index.js +110 -138
- package/dist/components/Button/index.js +157 -182
- package/dist/components/Card/index.js +73 -163
- package/dist/components/CardWithTopImage/index.js +21 -24
- package/dist/components/Carousel/index.js +8 -4
- package/dist/components/CarouselV2/index.css +3 -0
- package/dist/components/CarouselV2/index.js +173 -0
- package/dist/components/Collapsible/index.js +85 -74
- package/dist/components/Column/index.js +36 -18
- package/dist/components/FyreCard/index.js +4 -23
- package/dist/components/Icon/index.js +66 -26
- package/dist/components/Image/index.js +36 -14
- package/dist/components/ImageLink/index.js +4 -2
- package/dist/components/InformationIcon/index.js +74 -82
- package/dist/components/Input/index.js +82 -61
- package/dist/components/Nav/index.js +96 -129
- package/dist/components/NavItem/index.js +82 -71
- package/dist/components/NewsCard/index.js +26 -42
- package/dist/components/Profile/index.js +35 -23
- package/dist/components/Row/index.js +31 -10
- package/dist/components/Search/index.js +19 -25
- package/dist/components/SocialBlock/index.js +108 -84
- package/dist/components/StarRating/index.js +61 -31
- package/dist/components/Testimonial/index.js +22 -18
- package/dist/components/TextAndTitle/index.js +121 -99
- package/dist/components/TextArea/index.js +68 -47
- package/dist/components/Timeline/index.js +81 -51
- package/dist/components/Tubestops/index.js +62 -30
- package/dist/components/UserIcon/index.js +14 -10
- package/dist/components/Video/index.js +45 -34
- package/dist/index.js +8 -0
- package/package.json +2 -1
|
@@ -71,51 +71,67 @@ const SocialBlock = _ref => {
|
|
|
71
71
|
});
|
|
72
72
|
const socialButtons = [{
|
|
73
73
|
classes: 'mx-2 w-16 py-4 border border-1',
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
74
|
+
bgColor: "bg-social-facebook",
|
|
75
|
+
textColor: "text-white",
|
|
76
|
+
borderColor: "border-social-facebook",
|
|
77
|
+
type: "social",
|
|
78
|
+
hoverBgColor: "hover:bg-white",
|
|
79
|
+
hoverBorderColor: "hover:border-social-facebook",
|
|
80
|
+
hoverTextColor: "hover:text-social-facebook",
|
|
81
|
+
url: "https://www.facebook.com/rupert.bennett",
|
|
82
|
+
iconProps: {
|
|
83
|
+
type: "facebook-f",
|
|
84
|
+
brand: true,
|
|
85
|
+
size: 2,
|
|
86
|
+
classes: 'mx-auto'
|
|
87
|
+
}
|
|
84
88
|
}, {
|
|
85
89
|
classes: 'mx-2 w-16 py-4 border border-1',
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
90
|
+
bgColor: "bg-social-linkedin",
|
|
91
|
+
textColor: "text-white",
|
|
92
|
+
borderColor: "border-social-linkedin",
|
|
93
|
+
type: "social",
|
|
94
|
+
hoverBgColor: "hover:bg-white",
|
|
95
|
+
hoverBorderColor: "hover:border-social-linkedin",
|
|
96
|
+
hoverTextColor: "hover:text-social-linkedin",
|
|
97
|
+
url: "https://www.linkedin.com/in/rupert-bennett",
|
|
98
|
+
iconProps: {
|
|
99
|
+
brand: true,
|
|
100
|
+
type: "linkedin-in",
|
|
101
|
+
size: 2,
|
|
102
|
+
classes: 'mx-auto'
|
|
103
|
+
}
|
|
96
104
|
}, {
|
|
97
105
|
classes: 'mx-2 w-16 py-4 border border-1',
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
106
|
+
bgColor: "bg-black",
|
|
107
|
+
textColor: "text-white",
|
|
108
|
+
borderColor: "border-black",
|
|
109
|
+
type: "social",
|
|
110
|
+
hoverBgColor: "hover:bg-white",
|
|
111
|
+
hoverBorderColor: "hover:border-black",
|
|
112
|
+
hoverTextColor: "hover:text-black",
|
|
113
|
+
url: "https://github.com/irupertbennett",
|
|
114
|
+
iconProps: {
|
|
115
|
+
brand: true,
|
|
116
|
+
type: "github",
|
|
117
|
+
size: 2,
|
|
118
|
+
classes: 'mx-auto'
|
|
119
|
+
}
|
|
108
120
|
}, {
|
|
109
121
|
classes: 'mx-2 w-16 py-4 border border-1',
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
122
|
+
bgColor: "bg-brand-error",
|
|
123
|
+
textColor: "text-white",
|
|
124
|
+
borderColor: "border-brand-error",
|
|
125
|
+
type: "social",
|
|
126
|
+
hoverBgColor: "hover:bg-white",
|
|
127
|
+
hoverBorderColor: "hover:border-brand-error",
|
|
128
|
+
hoverTextColor: "hover:text-brand-error",
|
|
129
|
+
url: "mailto:irupertbennett@gmail.com?subject=rupertbennett.com-&body=Referred from rupertbennett.com",
|
|
130
|
+
iconProps: {
|
|
131
|
+
type: "envelope",
|
|
132
|
+
size: 2,
|
|
133
|
+
classes: 'mx-auto'
|
|
134
|
+
}
|
|
119
135
|
}];
|
|
120
136
|
|
|
121
137
|
const toggleEditState = () => {
|
|
@@ -162,40 +178,48 @@ const SocialBlock = _ref => {
|
|
|
162
178
|
}, {
|
|
163
179
|
className: classList
|
|
164
180
|
}), withLiveUpdates && isInEditingMode ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_Input.default, {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
181
|
+
inputProps: {
|
|
182
|
+
id: 'title',
|
|
183
|
+
classes: editTitleClasses,
|
|
184
|
+
inputClasses: editInputClasses,
|
|
185
|
+
autoFocus: true,
|
|
186
|
+
value: componentData.title.text,
|
|
187
|
+
onChange: e => handleChange(e),
|
|
188
|
+
type: "text"
|
|
189
|
+
}
|
|
172
190
|
}), /*#__PURE__*/_react.default.createElement(_Input.default, {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
191
|
+
inputProps: {
|
|
192
|
+
id: 'text',
|
|
193
|
+
classes: editTextClasses,
|
|
194
|
+
inputClasses: editInputClasses,
|
|
195
|
+
value: componentData.text.text,
|
|
196
|
+
onChange: e => handleChange(e),
|
|
197
|
+
type: "text"
|
|
198
|
+
}
|
|
179
199
|
}), /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
200
|
+
buttonProps: {
|
|
201
|
+
classes: 'mt-4',
|
|
202
|
+
text: 'Save',
|
|
203
|
+
onClick: handleButtonSave,
|
|
204
|
+
bgColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.bgColor,
|
|
205
|
+
borderColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.borderColor,
|
|
206
|
+
textColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.textColor,
|
|
207
|
+
hoverTextColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.hoverTextColor,
|
|
208
|
+
hoverBorderColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.hoverBorderColor,
|
|
209
|
+
hoverBgColor: saveButtonProps === null || saveButtonProps === void 0 ? void 0 : saveButtonProps.hoverBgColor
|
|
210
|
+
}
|
|
189
211
|
}), /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
212
|
+
buttonProps: {
|
|
213
|
+
classes: 'mt-4 ml-4',
|
|
214
|
+
text: 'Cancel',
|
|
215
|
+
onClick: handleButtonCancel,
|
|
216
|
+
bgColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.bgColor,
|
|
217
|
+
borderColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.borderColor,
|
|
218
|
+
textColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.textColor,
|
|
219
|
+
hoverTextColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.hoverTextColor,
|
|
220
|
+
hoverBorderColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.hoverBorderColor,
|
|
221
|
+
hoverBgColor: cancelButtonProps === null || cancelButtonProps === void 0 ? void 0 : cancelButtonProps.hoverBgColor
|
|
222
|
+
}
|
|
199
223
|
})) : /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("div", {
|
|
200
224
|
onMouseOver: () => toggleHoverState(),
|
|
201
225
|
onMouseOut: () => toggleHoverState(),
|
|
@@ -210,20 +234,20 @@ const SocialBlock = _ref => {
|
|
|
210
234
|
}, socialButtons && socialButtons.map((button, i) => {
|
|
211
235
|
return /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
212
236
|
key: "".concat(i, "_button"),
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
237
|
+
buttonProps: {
|
|
238
|
+
classes: button.classes,
|
|
239
|
+
bgColor: button.bgColor,
|
|
240
|
+
textColor: button.textColor,
|
|
241
|
+
borderColor: button.borderColor,
|
|
242
|
+
type: button.type,
|
|
243
|
+
hoverBgColor: button.hoverBgColor,
|
|
244
|
+
hoverBorderColor: button.hoverBorderColor,
|
|
245
|
+
hoverTextColor: button.hoverTextColor,
|
|
246
|
+
onClick: button.onClick,
|
|
247
|
+
url: button.url,
|
|
248
|
+
border: true,
|
|
249
|
+
centerIcon: button.iconProps
|
|
250
|
+
}
|
|
227
251
|
});
|
|
228
252
|
}))));
|
|
229
253
|
};
|
|
@@ -1,50 +1,73 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
require("core-js/modules/es.object.assign.js");
|
|
4
|
+
|
|
3
5
|
Object.defineProperty(exports, "__esModule", {
|
|
4
6
|
value: true
|
|
5
7
|
});
|
|
6
|
-
exports.default = void 0;
|
|
8
|
+
exports.starRatingProps = exports.default = void 0;
|
|
7
9
|
|
|
8
10
|
require("core-js/modules/web.dom-collections.iterator.js");
|
|
9
11
|
|
|
10
|
-
require("core-js/modules/es.object.assign.js");
|
|
11
|
-
|
|
12
12
|
var _react = _interopRequireDefault(require("react"));
|
|
13
13
|
|
|
14
14
|
var _Icon = _interopRequireDefault(require("../Icon"));
|
|
15
15
|
|
|
16
|
-
require("
|
|
16
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
17
|
+
|
|
18
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
17
19
|
|
|
18
20
|
require("./index.css");
|
|
19
21
|
|
|
22
|
+
require("../index.css");
|
|
23
|
+
|
|
20
24
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
21
25
|
|
|
26
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
27
|
+
|
|
28
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
29
|
+
|
|
30
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
31
|
+
|
|
22
32
|
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
23
33
|
|
|
34
|
+
const starRatingProps = {
|
|
35
|
+
id: _propTypes.default.string,
|
|
36
|
+
classes: _propTypes.default.string,
|
|
37
|
+
stars: _propTypes.default.number,
|
|
38
|
+
iconProps: _propTypes.default.object
|
|
39
|
+
};
|
|
40
|
+
exports.starRatingProps = starRatingProps;
|
|
41
|
+
|
|
24
42
|
const StarRating = _ref => {
|
|
43
|
+
var _starRatingProps$icon;
|
|
44
|
+
|
|
25
45
|
let {
|
|
26
|
-
|
|
27
|
-
classes,
|
|
28
|
-
stars,
|
|
29
|
-
size,
|
|
30
|
-
iconClasses
|
|
46
|
+
starRatingProps
|
|
31
47
|
} = _ref;
|
|
32
|
-
|
|
33
|
-
classList
|
|
34
|
-
|
|
48
|
+
if (starRatingProps == undefined) return;
|
|
49
|
+
const classList = (0, _classnames.default)({
|
|
50
|
+
[starRatingProps.classes]: starRatingProps === null || starRatingProps === void 0 ? void 0 : starRatingProps.classes
|
|
51
|
+
}, 'flex');
|
|
52
|
+
const iconClassList = (0, _classnames.default)({
|
|
53
|
+
[starRatingProps.iconProps.classes]: starRatingProps === null || starRatingProps === void 0 ? void 0 : (_starRatingProps$icon = starRatingProps.iconProps) === null || _starRatingProps$icon === void 0 ? void 0 : _starRatingProps$icon.classes
|
|
54
|
+
});
|
|
35
55
|
|
|
36
56
|
const getStars = () => {
|
|
37
57
|
const starsArr = [];
|
|
38
58
|
|
|
39
|
-
for (var i = 0; i < stars; i++) {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
59
|
+
for (var i = 0; i < (starRatingProps === null || starRatingProps === void 0 ? void 0 : starRatingProps.stars); i++) {
|
|
60
|
+
var _starRatingProps$icon2;
|
|
61
|
+
|
|
62
|
+
starsArr.push( /*#__PURE__*/_react.default.createElement(_Icon.default, {
|
|
63
|
+
iconProps: {
|
|
64
|
+
id: "unchecked-".concat(i),
|
|
65
|
+
key: "unchecked_star_".concat(i + 0),
|
|
66
|
+
classes: "".concat(iconClassList, " checked"),
|
|
67
|
+
type: 'star',
|
|
68
|
+
size: starRatingProps === null || starRatingProps === void 0 ? void 0 : (_starRatingProps$icon2 = starRatingProps.iconProps) === null || _starRatingProps$icon2 === void 0 ? void 0 : _starRatingProps$icon2.size
|
|
69
|
+
}
|
|
70
|
+
}));
|
|
48
71
|
}
|
|
49
72
|
|
|
50
73
|
return starsArr;
|
|
@@ -53,14 +76,18 @@ const StarRating = _ref => {
|
|
|
53
76
|
const getStarsChecked = () => {
|
|
54
77
|
const starsArr = [];
|
|
55
78
|
|
|
56
|
-
for (var i = 0; i < 5 - stars; i++) {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
79
|
+
for (var i = 0; i < 5 - (starRatingProps === null || starRatingProps === void 0 ? void 0 : starRatingProps.stars); i++) {
|
|
80
|
+
var _starRatingProps$icon3;
|
|
81
|
+
|
|
82
|
+
starsArr.push( /*#__PURE__*/_react.default.createElement(_Icon.default, {
|
|
83
|
+
iconProps: {
|
|
84
|
+
id: "checked-".concat(i),
|
|
85
|
+
key: "checked_star_".concat(i + 0),
|
|
86
|
+
classes: "".concat(iconClassList, " unchecked"),
|
|
87
|
+
type: 'star',
|
|
88
|
+
size: starRatingProps === null || starRatingProps === void 0 ? void 0 : (_starRatingProps$icon3 = starRatingProps.iconProps) === null || _starRatingProps$icon3 === void 0 ? void 0 : _starRatingProps$icon3.size
|
|
89
|
+
}
|
|
90
|
+
}));
|
|
64
91
|
}
|
|
65
92
|
|
|
66
93
|
return starsArr;
|
|
@@ -71,12 +98,15 @@ const StarRating = _ref => {
|
|
|
71
98
|
return starArray;
|
|
72
99
|
};
|
|
73
100
|
|
|
74
|
-
return /*#__PURE__*/_react.default.createElement("div", _extends({}, id && {
|
|
75
|
-
id: id
|
|
101
|
+
return /*#__PURE__*/_react.default.createElement("div", _extends({}, (starRatingProps === null || starRatingProps === void 0 ? void 0 : starRatingProps.id) && {
|
|
102
|
+
id: starRatingProps === null || starRatingProps === void 0 ? void 0 : starRatingProps.id
|
|
76
103
|
}, {
|
|
77
104
|
className: classList
|
|
78
105
|
}), getAllStars());
|
|
79
106
|
};
|
|
80
107
|
|
|
108
|
+
StarRating.propTypes = {
|
|
109
|
+
starRatingProps: _propTypes.default.shape(_objectSpread({}, starRatingProps))
|
|
110
|
+
};
|
|
81
111
|
var _default = StarRating;
|
|
82
112
|
exports.default = _default;
|
|
@@ -9,6 +9,10 @@ require("core-js/modules/es.object.assign.js");
|
|
|
9
9
|
|
|
10
10
|
var _react = _interopRequireDefault(require("react"));
|
|
11
11
|
|
|
12
|
+
var _classnames = _interopRequireDefault(require("classnames"));
|
|
13
|
+
|
|
14
|
+
var _Image = _interopRequireDefault(require("../Image"));
|
|
15
|
+
|
|
12
16
|
require("../index.css");
|
|
13
17
|
|
|
14
18
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -20,9 +24,8 @@ const Testimonial = _ref => {
|
|
|
20
24
|
id,
|
|
21
25
|
classes,
|
|
22
26
|
imageClasses,
|
|
23
|
-
image,
|
|
24
|
-
altText,
|
|
25
27
|
text,
|
|
28
|
+
imageProps,
|
|
26
29
|
companyName,
|
|
27
30
|
position,
|
|
28
31
|
date,
|
|
@@ -31,32 +34,33 @@ const Testimonial = _ref => {
|
|
|
31
34
|
authorsName,
|
|
32
35
|
authorsPosition,
|
|
33
36
|
bgColor,
|
|
34
|
-
textColor
|
|
37
|
+
textColor,
|
|
38
|
+
authorTextColor
|
|
35
39
|
} = _ref;
|
|
36
|
-
const classList =
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
'
|
|
42
|
-
};
|
|
43
|
-
|
|
40
|
+
const classList = (0, _classnames.default)({
|
|
41
|
+
[classes]: classes,
|
|
42
|
+
[bgColor]: bgColor,
|
|
43
|
+
'bg-white': !bgColor,
|
|
44
|
+
[textColor]: textColor,
|
|
45
|
+
'text-black': !textColor
|
|
46
|
+
}, 'text-center');
|
|
47
|
+
const imageClassList = (0, _classnames.default)({
|
|
48
|
+
[imageClasses]: imageClasses
|
|
49
|
+
}, 'mx-auto rounded-full w-32 h-32');
|
|
50
|
+
imageProps.classes += imageClassList;
|
|
44
51
|
return /*#__PURE__*/_react.default.createElement("div", _extends({}, id && {
|
|
45
52
|
id: id
|
|
46
53
|
}, {
|
|
47
|
-
style: styles,
|
|
48
54
|
className: classList
|
|
49
|
-
}), /*#__PURE__*/_react.default.createElement(
|
|
50
|
-
|
|
51
|
-
src: image,
|
|
52
|
-
alt: altText
|
|
55
|
+
}), /*#__PURE__*/_react.default.createElement(_Image.default, {
|
|
56
|
+
imageProps: imageProps
|
|
53
57
|
}), /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement("h2", {
|
|
54
58
|
className: "text-md md:text-lg"
|
|
55
59
|
}, companyName, " "), /*#__PURE__*/_react.default.createElement("p", {
|
|
56
60
|
className: "text-md md:text-lg"
|
|
57
61
|
}, position), /*#__PURE__*/_react.default.createElement("p", null, positionStartDate, " - ", positionEndDate), /*#__PURE__*/_react.default.createElement("p", null, text), /*#__PURE__*/_react.default.createElement("p", {
|
|
58
|
-
className:
|
|
59
|
-
}, authorsName, " - ", authorsPosition, ":
|
|
62
|
+
className: authorTextColor
|
|
63
|
+
}, authorsName, " - ", authorsPosition, ": ", date)));
|
|
60
64
|
};
|
|
61
65
|
|
|
62
66
|
var _default = Testimonial;
|