@lideralia/alife-uikit 1.3.12 → 1.3.14

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 (48) hide show
  1. package/dist/atoms/Input/styles.js +1 -0
  2. package/dist/atoms/Typography/Typography.js +4 -1
  3. package/dist/atoms/Uploader/Uploader.js +18 -8
  4. package/dist/atoms/imgs/AI.js +39 -0
  5. package/dist/atoms/imgs/BiographicalEditor.js +240 -0
  6. package/dist/atoms/imgs/Briefcase.js +39 -0
  7. package/dist/atoms/imgs/Camera.js +41 -0
  8. package/dist/atoms/imgs/Cover.js +170 -0
  9. package/dist/atoms/imgs/Diamond.js +41 -0
  10. package/dist/atoms/imgs/Happy.js +38 -0
  11. package/dist/atoms/imgs/Heart.js +38 -0
  12. package/dist/atoms/imgs/Music.js +38 -0
  13. package/dist/atoms/imgs/Plant.js +38 -0
  14. package/dist/atoms/imgs/Sunrise.js +39 -0
  15. package/dist/atoms/imgs/index.js +88 -0
  16. package/dist/index.js +63 -0
  17. package/dist/molecules/BiographicalEditor/QuestionCard/QuestionCard.js +86 -0
  18. package/dist/molecules/BiographicalEditor/QuestionCard/QuestionCard.stories.js +120 -0
  19. package/dist/molecules/BiographicalEditor/QuestionCard/index.js +13 -0
  20. package/dist/molecules/BlockCard/BlockCard.js +140 -0
  21. package/dist/molecules/BlockCard/BlockCard.stories.js +130 -0
  22. package/dist/molecules/BlockCard/index.js +13 -0
  23. package/dist/organisms/BiographicalEditor/BlockProgress/BlockProgress.js +89 -0
  24. package/dist/organisms/BiographicalEditor/BlockProgress/BlockProgress.stories.js +159 -0
  25. package/dist/organisms/BiographicalEditor/BlockProgress/index.js +15 -0
  26. package/dist/organisms/BiographicalEditor/EditorBanner/EditorBanner.js +97 -0
  27. package/dist/organisms/BiographicalEditor/EditorBanner/EditorBanner.stories.js +46 -0
  28. package/dist/organisms/BiographicalEditor/EditorBanner/index.js +13 -0
  29. package/dist/organisms/BiographicalEditor/EditorBlockFooter/EditorBlockFooter.js +147 -0
  30. package/dist/organisms/BiographicalEditor/EditorBlockFooter/EditorBlockFooter.stories.js +166 -0
  31. package/dist/organisms/BiographicalEditor/EditorBlockFooter/index.js +15 -0
  32. package/dist/organisms/BiographicalEditor/EditorGeneratingCard/EditorGeneratingCard.js +146 -0
  33. package/dist/organisms/BiographicalEditor/EditorGeneratingCard/EditorGeneratingCard.stories.js +113 -0
  34. package/dist/organisms/BiographicalEditor/EditorGeneratingCard/index.js +15 -0
  35. package/dist/organisms/BiographicalEditor/EditorProgress/EditorProgress.js +136 -0
  36. package/dist/organisms/BiographicalEditor/EditorProgress/EditorProgress.stories.js +213 -0
  37. package/dist/organisms/BiographicalEditor/EditorProgress/index.js +15 -0
  38. package/dist/organisms/Cards/Adviser.js +1 -0
  39. package/dist/organisms/Cards/Badges.js +1 -0
  40. package/dist/organisms/Cards/CardUsersResultOfFlowers.js +1 -0
  41. package/dist/organisms/Cards/Ceremony.js +2 -0
  42. package/dist/organisms/Cards/Content.js +1 -0
  43. package/dist/organisms/Cards/Gone.js +7 -3
  44. package/dist/organisms/Cards/GoneBasic.js +2 -1
  45. package/dist/organisms/Cards/GoneCeremony.js +3 -0
  46. package/dist/organisms/Cards/PersonalData.js +5 -0
  47. package/dist/organisms/Cards/Udiana.js +1 -0
  48. package/package.json +1 -1
@@ -154,6 +154,7 @@ const InputStyled = (0, _styledComponents.default)('input').withConfig({
154
154
  componentId: "sc-1jr3pjv-1"
155
155
  })(["padding-right:", ";padding-left:", ";padding-top:0;padding-bottom:0;"], props => props.iconRight ? '12px' : '0', props => props.iconLeft ? '12px' : '0');
156
156
  const InputElementStyled = (0, _styledComponents.default)(InputStyled).withConfig({
157
+ shouldForwardProp: (prop, defaultValidatorFn) => prop === 'translate' || defaultValidatorFn(prop),
157
158
  displayName: "styles__InputElementStyled",
158
159
  componentId: "sc-1jr3pjv-2"
159
160
  })(_styledSystem.space, _styledSystem.color, _styledSystem.typography, _styledSystem.textStyle, (0, _css.default)(_objectSpread({}, commonInput)), (0, _styledSystem.variant)({
@@ -28,6 +28,8 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
28
28
  function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
29
29
 
30
30
  const TypographyBase = _styledComponents.default.div.withConfig({
31
+ shouldForwardProp: (prop, defaultValidatorFn) => prop === 'translate' || defaultValidatorFn(prop)
32
+ }).withConfig({
31
33
  displayName: "Typography__TypographyBase",
32
34
  componentId: "sc-1dg7yn7-0"
33
35
  })(["", " ", " ", " ", " ", " ", " max-width:100%;word-wrap:break-word;"], _styledSystem.typography, _styledSystem.color, _styledSystem.textStyle, _styledSystem.space, _styledSystem.layout, (0, _styledSystem.variant)({
@@ -81,7 +83,8 @@ exports.TextWithLink = TextWithLink;
81
83
  Text.defaultProps = {
82
84
  sizeText: 'display16',
83
85
  color: 'currentColor',
84
- fontWeight: 'medium'
86
+ fontWeight: 'medium',
87
+ translate: undefined
85
88
  };
86
89
  const LinkStyled = (0, _styledComponents.default)(TypographyBase).withConfig({
87
90
  displayName: "Typography__LinkStyled",
@@ -91,20 +91,22 @@ const Uploader = _ref => {
91
91
 
92
92
  if (!ALLOWED_IMG_TYPES.includes(element.type)) {
93
93
  addError(fileName, 'wrongType');
94
- return resolve({
94
+ resolve({
95
95
  error: 'wrongType',
96
96
  image: fileName
97
97
  });
98
+ return;
98
99
  }
99
100
 
100
101
  const imgSize = element.size / 1000000;
101
102
 
102
103
  if (imgSize > MAX_FILE_SIZE_MG) {
103
104
  addError(fileName, 'size');
104
- return resolve({
105
+ resolve({
105
106
  error: 'size',
106
107
  image: fileName
107
108
  });
109
+ return;
108
110
  }
109
111
 
110
112
  const reader = new FileReader();
@@ -128,14 +130,22 @@ const Uploader = _ref => {
128
130
  error: 'square',
129
131
  image: fileName
130
132
  });
131
- } else {
132
- resolve({
133
- name: fileName,
134
- base64: event.target.result,
135
- file: element
136
- });
133
+ return;
137
134
  }
135
+
136
+ resolve({
137
+ name: fileName,
138
+ base64: event.target.result,
139
+ file: element
140
+ });
141
+ return;
138
142
  }
143
+
144
+ addError(fileName, 'invalid');
145
+ resolve({
146
+ error: 'invalid',
147
+ image: fileName
148
+ });
139
149
  };
140
150
 
141
151
  setLoaded(true);
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var React = _interopRequireWildcard(require("react"));
13
+
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ function SvgAI(props) {
19
+ return React.createElement("svg", (0, _extends2.default)({
20
+ width: "1em",
21
+ height: "1em",
22
+ viewBox: "0 0 24 24",
23
+ fill: "currentColor",
24
+ stroke: "none",
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ preserveAspectRatio: "xMidYMid meet"
27
+ }, props), React.createElement("path", {
28
+ fillRule: "evenodd",
29
+ d: "M12 2.25a.68.68 0 0 1 .645.465l1.809 5.426c.18.542.235.685.312.798q.121.175.295.295c.113.077.256.131.798.312l5.426 1.809a.68.68 0 0 1 0 1.29l-5.426 1.809c-.542.18-.685.235-.798.312q-.175.121-.295.295c-.077.113-.131.256-.312.798l-1.809 5.426a.68.68 0 0 1-1.29 0l-1.809-5.426c-.18-.542-.235-.685-.312-.798a1.1 1.1 0 0 0-.295-.295c-.113-.077-.256-.131-.798-.312l-5.426-1.809a.68.68 0 0 1 0-1.29l5.426-1.809c.542-.18.685-.235.798-.312q.175-.121.295-.295c.077-.113.131-.256.312-.798l1.809-5.426A.68.68 0 0 1 12 2.25",
30
+ clipRule: "evenodd"
31
+ }), React.createElement("path", {
32
+ fillRule: "evenodd",
33
+ d: "M16.25 6a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0M19 15.25a.75.75 0 0 1 .75.75v1.25H21a.75.75 0 0 1 0 1.5h-1.25V20a.75.75 0 0 1-1.5 0v-1.25H17a.75.75 0 0 1 0-1.5h1.25V16a.75.75 0 0 1 .75-.75",
34
+ clipRule: "evenodd"
35
+ }));
36
+ }
37
+
38
+ var _default = SvgAI;
39
+ exports.default = _default;
@@ -0,0 +1,240 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var React = _interopRequireWildcard(require("react"));
13
+
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ const SvgBiographicalEditor = props => React.createElement("svg", (0, _extends2.default)({
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ width: "48",
21
+ height: "48",
22
+ fill: "none",
23
+ viewBox: "0 0 48 48"
24
+ }, props), React.createElement("g", {
25
+ clipPath: "url(#clip0_19802_38801)"
26
+ }, React.createElement("g", {
27
+ clipPath: "url(#clip1_19802_38801)"
28
+ }, React.createElement("path", {
29
+ fill: "#F87818",
30
+ fillRule: "evenodd",
31
+ d: "M8.604 2.207c-.56 0-.84 0-1.054.11a1 1 0 0 0-.437.436c-.11.214-.11.494-.11 1.054v40.376c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.214.109.494.109 1.054.109h29.471c.56 0 .84 0 1.054-.11a1 1 0 0 0 .437-.436c.11-.214.11-.494.11-1.054V26.2c0-.373 0-.56.057-.722.052-.144.136-.275.245-.381.125-.12.294-.198.633-.353l.517-.236c.677-.31 1.016-.464 1.264-.705a2 2 0 0 0 .49-.762c.117-.326.117-.699.117-1.444V9.41c0-.745 0-1.117-.117-1.443a2 2 0 0 0-.49-.763c-.248-.24-.587-.395-1.264-.705l-.517-.236c-.339-.154-.508-.232-.633-.352a1 1 0 0 1-.245-.381c-.058-.164-.058-.35-.058-.722v-1c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437c-.214-.109-.494-.109-1.054-.109z",
32
+ clipRule: "evenodd"
33
+ }), React.createElement("path", {
34
+ fill: "#FEAE36",
35
+ fillRule: "evenodd",
36
+ d: "M7.004 3.934c0-.6 0-.9.12-1.122a1 1 0 0 1 .474-.44c.23-.102.53-.079 1.128-.033L34.57 4.317c.52.04.781.06.978.174a1 1 0 0 1 .4.432c.1.205.1.466.1.989v40.361c0 .6 0 .9-.12 1.122a1 1 0 0 1-.475.44c-.23.102-.53.08-1.127.034L8.482 45.896c-.521-.04-.782-.06-.979-.174a1 1 0 0 1-.4-.432c-.1-.206-.1-.467-.1-.99z",
37
+ clipRule: "evenodd"
38
+ }), React.createElement("path", {
39
+ fill: "#E83060",
40
+ d: "M36.817 1.223H7.62c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437c-.11.214-.11.494-.11 1.054v40.005c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.213.109.493.109 1.054.109h29.197c.56 0 .84 0 1.054-.109a1 1 0 0 0 .437-.437c.109-.214.109-.494.109-1.054V2.823c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437c-.214-.11-.494-.11-1.054-.11"
41
+ }), React.createElement("path", {
42
+ fill: "#F2F2F3",
43
+ d: "M35.594 0H6.397c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437c-.11.214-.11.494-.11 1.054v40.005c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.214.11.494.11 1.054.11h29.197c.56 0 .84 0 1.054-.11a1 1 0 0 0 .437-.437c.11-.214.11-.494.11-1.054V1.6c0-.56 0-.84-.11-1.054a1 1 0 0 0-.437-.437C36.434 0 36.154 0 35.594 0"
44
+ }), React.createElement("g", {
45
+ clipPath: "url(#clip2_19802_38801)"
46
+ }, React.createElement("path", {
47
+ fill: "#F87818",
48
+ d: "M33.797 4h-16v2h16z",
49
+ opacity: "0.84"
50
+ }), React.createElement("path", {
51
+ fill: "#7F7F8A",
52
+ d: "M29.797 10h-12v.75h12z",
53
+ opacity: "0.48"
54
+ }), React.createElement("path", {
55
+ fill: "#4C4C5B",
56
+ d: "M28.797 8h-11v1h11z",
57
+ opacity: "0.6"
58
+ }), React.createElement("path", {
59
+ fill: "#7F7F8A",
60
+ d: "M29.797 11.5h-12v.75h12zM29.797 13h-12v.75h12z",
61
+ opacity: "0.48"
62
+ })), React.createElement("path", {
63
+ fill: "#7F7F8A",
64
+ d: "M33.592 19.19H8.395v.72h25.197z",
65
+ opacity: "0.48"
66
+ }), React.createElement("path", {
67
+ fill: "#4C4C5B",
68
+ d: "M19.192 17.454H8.395v.72h10.797z",
69
+ opacity: "0.84"
70
+ }), React.createElement("path", {
71
+ fill: "#7F7F8A",
72
+ d: "M33.592 20.925H8.395v.72h25.197zM29.995 22.655h-21.6v.72h21.6zM33.592 27.87H8.395v.721h25.197z",
73
+ opacity: "0.48"
74
+ }), React.createElement("path", {
75
+ fill: "#4C4C5B",
76
+ d: "M19.192 26.135H8.395v.72h10.797z",
77
+ opacity: "0.84"
78
+ }), React.createElement("path", {
79
+ fill: "#7F7F8A",
80
+ d: "M24.4 29.61h-16v.72h16z",
81
+ opacity: "0.48"
82
+ }), React.createElement("g", {
83
+ clipPath: "url(#clip3_19802_38801)"
84
+ }, React.createElement("g", {
85
+ fill: "#FEAE36",
86
+ opacity: "0.36"
87
+ }, React.createElement("path", {
88
+ d: "M13.81 36.842h14.996a10 10 0 0 0-1.085-1.096H14.896q-.586.505-1.086 1.096M26.566 34.887a9.77 9.77 0 0 0-5.257-1.525c-1.935 0-3.738.56-5.258 1.525zM13.16 37.7q-.353.526-.639 1.096h17.575a10 10 0 0 0-.64-1.096zM11.614 41.608q-.087.54-.114 1.097h19.615A10 10 0 0 0 31 41.608zM12.143 39.654a10 10 0 0 0-.35 1.096h19.03a10 10 0 0 0-.349-1.096z"
89
+ })), React.createElement("path", {
90
+ fill: "#3C6D15",
91
+ d: "M30.947 32.507c-.193.033-.228.213-.386.2-.095-.006-.211-.135-.271.023-.06.162.094.255.199.32.287.168.612.17.947.174-.313 0-.499.484-.903.168-.085-.068-.142.067-.11.164.11.336.372.497.71.533.186.02.366.032.644.194-.344-.104-.524.229-.815.01-.07-.056-.366.05-.495.022.42.442.296 1.22 1.032 1.478-.259.065-.559-.068-.653-.148-.288-.252-.338.197-.525.1a.54.54 0 0 0 .297.403c.136.068.288.103.43.165.091.038.233.048.233.177 0 .052-.183.052-.104.181-.167.078-.139-.116-.224-.155-.038-.02-.066-.061-.117-.026.155.413.524.578 1.554.717-.367-.062-.682.226-1.068.087.048.23.316.197.392.416-.316-.051-.505-.251-.723-.406-.095-.068-.19-.12-.278 0-.098.132.066.216.11.235.386.178.66.559 1.125.588.192.013.167.27.372.268-.29.064-.511-.1-.811-.159.1.168.126.32.116.514-.205-.094-.375-.23-.6-.275-.369-.074-.574.03-.584.404-.006.284.016.568.029.852.01.17-.02.284-.243.284-.212 0-.31-.055-.3-.278.012-.387.003-.774.003-1.197-.247.268-.465-.197-.72.039-.294.274-.654.058-.989.038q.211-.068.433-.135c-.168-.233-.38-.062-.648-.078.285-.135.521-.216.714-.355.158-.116.518.03.483-.348-.025-.262.281-.349.36-.591.067-.21.408-.33.26-.652-.225.023-.222.265-.39.361.02-.28-.24-.287-.34-.206-.367.294-.749.213-1.093.139.448-.375 1.074-.504 1.592-.84.224-.145.24-.322.117-.487-.155-.206-.228.02-.341.1-.158.113-.411-.038-.55.262-.047-.249.167-.236.145-.413-.053-.117-.24.064-.36-.1.625-.09 1.194-.252 1.31-1.004a1.13 1.13 0 0 1-.669.032c-.079-.216.796-.139.165-.504.195-.187.483-.213.66-.484-.36.09-.66.033-1.043-.048.395-.197.897-.026 1.084-.494-.165-.103-.357.126-.461-.08q.372-.105.195-.427a.2.2 0 0 1-.019-.058c.566-.235.14-.713.269-1.055.016-.042.016-.087.028-.152.221.265.2.59.2.862 0 .655-.035.655.625.642z"
92
+ }), React.createElement("path", {
93
+ fill: "#3C6D15",
94
+ d: "M33.947 35.507c-.193.033-.228.213-.386.2-.094-.006-.211-.135-.271.023-.06.162.094.255.199.32.287.168.612.17.947.174-.313 0-.499.484-.903.168-.085-.068-.142.067-.11.164.11.336.372.497.71.533.186.02.366.032.644.194-.344-.104-.524.229-.815.01-.07-.056-.366.05-.495.022.42.442.296 1.22 1.032 1.478-.259.065-.559-.068-.654-.148-.287-.252-.337.197-.524.1a.54.54 0 0 0 .297.403c.136.068.288.103.43.165.091.038.233.048.233.177 0 .052-.183.052-.104.181-.167.078-.139-.116-.224-.155-.038-.02-.067-.061-.117-.026.155.413.524.578 1.554.717-.367-.062-.682.226-1.068.087.048.23.316.197.392.416-.316-.051-.505-.251-.723-.406-.095-.068-.19-.12-.278 0-.098.132.066.216.11.235.386.178.66.559 1.125.588.192.013.167.27.372.268-.29.064-.511-.1-.811-.159.1.168.126.32.117.514-.206-.094-.376-.23-.6-.275-.37-.074-.575.03-.585.404-.006.284.016.568.029.852.01.17-.02.284-.243.284-.212 0-.31-.055-.3-.278.012-.387.003-.774.003-1.197-.247.268-.465-.197-.72.039-.294.274-.654.058-.989.038q.211-.068.433-.135c-.168-.233-.38-.062-.648-.078.285-.135.521-.216.714-.355.158-.116.518.03.483-.348-.025-.262.281-.349.36-.591.067-.21.408-.33.26-.652-.225.023-.222.265-.39.361.02-.28-.24-.287-.34-.206-.367.294-.749.213-1.093.139.448-.375 1.074-.504 1.592-.84.224-.145.24-.322.117-.487-.155-.206-.228.02-.342.1-.157.113-.41-.038-.549.262-.047-.249.167-.236.145-.413-.053-.117-.24.064-.36-.1.625-.09 1.194-.252 1.31-1.004a1.13 1.13 0 0 1-.669.032c-.079-.216.796-.139.164-.504.196-.187.484-.213.66-.484-.36.09-.66.033-1.042-.048.395-.197.897-.026 1.084-.494-.165-.103-.357.126-.461-.08q.372-.105.195-.427a.2.2 0 0 1-.019-.058c.566-.235.14-.713.269-1.055.016-.042.016-.087.028-.152.221.265.2.59.2.862 0 .655-.036.655.624.642zM6.717 37.285c-.112.018-.132.12-.224.112-.056-.004-.124-.076-.159.013-.035.09.055.142.116.179.168.094.357.096.552.097-.182 0-.29.272-.526.094-.05-.038-.083.038-.064.093.064.188.217.278.414.298.108.011.213.018.375.109-.2-.058-.305.128-.475.005-.04-.03-.213.03-.289.013.245.248.173.684.602.828a.52.52 0 0 1-.38-.083c-.168-.14-.198.11-.306.056.02.1.075.181.173.226.079.038.167.058.25.093.053.021.136.027.136.1 0 .028-.107.028-.06.1-.098.044-.082-.065-.131-.086-.022-.011-.039-.035-.068-.015.09.232.305.324.905.402-.213-.034-.397.127-.622.049.028.128.184.11.228.233-.184-.029-.294-.141-.421-.228-.055-.038-.11-.067-.162 0-.057.074.039.121.064.132.225.1.385.313.655.33.113.007.098.151.218.15-.17.036-.299-.056-.473-.089.059.094.073.18.068.288-.12-.053-.22-.129-.35-.154-.215-.042-.335.016-.34.226-.004.16.009.318.016.478.006.095-.01.159-.142.159-.123 0-.18-.03-.174-.156.007-.217.001-.434.001-.671-.143.15-.27-.11-.42.022-.17.154-.38.032-.575.021l.252-.076c-.098-.13-.22-.034-.377-.043.165-.076.303-.121.416-.199.092-.065.301.016.281-.195-.015-.147.164-.196.21-.331.039-.118.237-.185.15-.366-.13.013-.128.148-.225.203.01-.158-.14-.161-.2-.116-.213.165-.435.12-.636.078.261-.21.626-.282.928-.47.13-.082.14-.182.068-.274-.09-.116-.133.011-.2.056-.091.064-.238-.021-.32.147-.027-.14.098-.132.085-.232-.031-.065-.14.036-.21-.056.365-.05.696-.141.764-.562a.7.7 0 0 1-.39.018c-.046-.122.464-.078.096-.283.114-.105.281-.12.384-.271-.21.05-.384.018-.607-.027.23-.11.523-.015.631-.277-.095-.058-.208.07-.268-.045q.216-.058.114-.239a.1.1 0 0 1-.011-.033c.33-.132.08-.4.156-.591.01-.024.01-.05.017-.085.129.148.116.33.116.483 0 .367-.02.367.364.36z"
95
+ }), React.createElement("path", {
96
+ fill: "#3C9CBC",
97
+ d: "M24.162 39.912c-.43.136-.657.397-.803.672-.025-.04-.05-.075-.075-.117-.506-.752-.392-.4-.398 0q.06.736.195 1.462c.206 1.098.56 2.182.85 3.27.761.074 1.525.142 2.287.184 2.627.152 5.261.039 7.889-.139-.038-.258-.06-.526-.108-.777-.259-1.411-1.33-2.49-2.17-3.638a7 7 0 0 1-.246-.358c-.271-.023-.543-.042-.811-.065-1.305-.103-2.612-.203-3.888-.503-.673-.159-1.352-.368-2.034-.536a1.14 1.14 0 0 1-.688.545M10.527 39.87q-.04.325-.038.643c.006 1.572.91 3.001 1.105 4.56 0 .013.003.03.006.042.588-.077 1.172-.193 1.756-.284 2.192-.332 4.403-.242 6.613-.042q-.065-.152-.126-.303a36 36 0 0 1-1.661-5.29q-.15-.121-.297-.249c-.565-.506-1.083-1.09-1.756-1.43q0 0-.006-.003c-.07.181-.2.407-.47.717-.992 1.12-.2-.126-1.135 0-.58.077-.451.465-.574.987a9 9 0 0 1-.332-.184c-.448-.258-.663-.448-.799-.613-.518.11-.881.565-1.295.898-.3.238-.635.416-.985.551z"
98
+ }), React.createElement("path", {
99
+ fill: "#A1DEF2",
100
+ d: "M30.77 40.406c.27.023.542.042.81.065a6 6 0 0 1-.672-1.391q-.029.011-.057.022a1.4 1.4 0 0 0-.439.255c-1.03-.539-.42-.326-2.226-.978-1.816-.658-.569.11-1.475.988s-.199-.055-1.077-.44c-.556-.241-.578.085-.786.443.682.168 1.36.378 2.034.536 1.275.3 2.583.4 3.887.503z"
101
+ }), React.createElement("path", {
102
+ fill: "#85CDDD",
103
+ d: "M10.527 39.87c.353-.135.685-.313.985-.552.417-.332.78-.787 1.295-.897-.266-.332-.206-.575-.96-1.084-.828-.559-.676-.42-.992-.113.035.845-.23 1.755-.332 2.646z"
104
+ }), React.createElement("path", {
105
+ fill: "#A1DEF2",
106
+ d: "M17.885 38.95a6 6 0 0 0 .297.249 36 36 0 0 1-.59-3.189c-.117.139-.304.313-.664.484-.862.407-.625.549-.805 1.023q0-.001.006.004c.676.338 1.191.923 1.756 1.43"
107
+ }), React.createElement("path", {
108
+ fill: "#2E90AA",
109
+ d: "M10.486 40.516c0-.213.016-.426.038-.642-.698.264-1.471.367-2.217.458-.423.052-.85.103-1.276.139a2 2 0 0 1-.518.487c-1.275.878-.113.384-1.02 1.866-.906 1.481-.597.384-1.446.658-.85.275-.2.275-.907 1.043-.71.768-.426.274-.906.274s-.619.516-.793.875c.215-.165.455-.3.724-.394.726-.255 1.433-.042 2.176-.074 1.017-.046 1.98-.481 3.006-.472.881.01 1.73.343 2.609.436.55.058 1.096.023 1.645-.048a.2.2 0 0 0-.006-.042c-.196-1.56-1.1-2.989-1.106-4.56z"
110
+ }), React.createElement("path", {
111
+ fill: "#A1DEF2",
112
+ d: "M8.955 39.147c-.991.988-.199-.11-1.133 0-.758.09-.307.646-.787 1.323.427-.035.853-.087 1.276-.138.745-.09 1.52-.19 2.217-.459.101-.894.366-1.804.332-2.646-.117.116-.3.251-.626.387-1.19.494-.284.549-1.276 1.536z"
113
+ }), React.createElement("path", {
114
+ fill: "#3C6D15",
115
+ d: "M10.12 36.787c.01.225-.185.346-.257.526-.032.08-.107.143-.048.25s.117.03.197.019c-.026.09-.082.118-.15.153-.023.011-.082.058-.042.113.035.05.08.027.118 0 .034-.028.074-.052.104-.085.048-.058.09-.143.173-.118.088.027.022.115.035.175.03.13-.099.055-.13.105-.009.01-.022.016-.036.027.15.255.289-.066.436-.011.005.074-.04.104-.094.137-.061.038-.056.112 0 .123.278.06.067.209.04.294-.04.128-.058.12.032.23.008.008.019.03.014.035-.134.16-.083.417-.262.54-.152.107-.099.222-.01.288.08.06.1-.082.152-.129.01-.008.026-.005.08-.016-.16.15.042.25.013.38-.008.03.03.047.04.039.11-.104.3.129.384-.104.027-.074.102-.003.155.014.094.027.046.076.024.117-.093.187-.136.406-.355.535.024.014.046.035.062.033.259-.041.264.082.157.263-.064.112-.096.258-.237.307-.056.019-.1.035-.07.11.035.082-.12.038-.077.126-.14-.009-.206.095-.275.189.2.15.357-.011.488-.127.185-.164.42-.252.614-.485-.064.354-.256.56-.445.768-.02.022-.048.052-.046.074.048.216-.085.192-.28.145.181.145.205.274.11.417-.025.035-.022.085-.091.057-.08-.033-.14-.014-.129.102.011.1-.128.148-.141.134-.144-.143-.272-.022-.406.01-.128.03-.227.028-.134-.15.038-.071.054-.123-.069-.099-.027.006.056-.093.03-.17h-.27c-.078 0-.169.025-.19-.1-.016-.083-.099-.064-.15-.059-.066.011-.053.085-.053.135-.003.345-.008.69 0 1.036.005.153-.035.219-.195.222-.184.002-.136-.126-.136-.22.008-.298.024-.597.035-.896 0-.063.026-.153-.067-.17-.085-.016-.085.074-.099.127-.027.11-.099.12-.187.115a.83.83 0 0 0-.44.09c-.195.096-.377-.03-.374-.263-.096.036-.238.131-.278.046-.048-.098-.221-.213-.005-.394-.174.038-.278.112-.406.071.027-.093.155-.093.173-.205-.106.013-.17.131-.285.115.115-.2-.051-.124-.131-.137-.024-.088.12-.063.093-.143-.333-.082-.45-.353-.55-.685.209.192.4.386.679.132-.169-.039-.374-.028-.468-.148-.075-.094.008-.288-.077-.472.112.09.184.154.264.208.056.039.118.083.18.085.09.003.162-.063.234-.117-.053-.069-.09-.17-.16-.203-.195-.096-.158-.302-.198-.45-.045-.175.18-.145.275-.18a.34.34 0 0 1 .315.057c-.013-.192-.224-.274-.224-.474.08-.017.142.08.227.044-.037-.05-.115-.12-.104-.145.04-.077-.136-.137 0-.214.133-.074.107.066.147.104.155.14.334.159.577.153-.169-.065-.155-.191-.142-.285.024-.156.168.009.219-.046-.107-.362-.435-.562-.585-.916.155.222.294.113.43.003-.13-.12.147-.364-.141-.427.061-.085.128-.105.21-.113-.024-.076-.133-.104-.093-.224.166.128.34.282.547.079.067.134.19.071.294.096-.101-.085-.245-.236-.23-.28.08-.216-.226-.257-.162-.444 0-.005-.06-.038-.051-.101.088-.011.139.115.23.069q-.04-.214.104-.305c-.115-.085-.27-.197-.163-.334.093-.123.13.107.237.118a.84.84 0 0 0 .129-.441c0-.135.139-.253.032-.392-.006-.008.018-.06.04-.072.15-.068.15-.065.152-.238a.7.7 0 0 1 .267.614l-.008.063c.176-.02.056.271.251.247.083-.011.192.005.136.161-.048.137-.01.296-.085.436-.07.129.072.26.018.397.137-.049.254.247.404.02.024-.036.053-.102.13-.077zm.726 3.788c-.129-.042-.206.021-.294.021-.096 0-.104.091-.08.149.029.076.101.04.15.008.071-.05.135-.107.226-.181z"
116
+ }), React.createElement("path", {
117
+ fill: "#2E90AA",
118
+ d: "M35.13 40.732a328 328 0 0 1-3.55-.264q.119.184.246.358c.84 1.149 1.911 2.227 2.17 3.638.047.255.066.52.107.777.916-.061 1.829-.132 2.742-.203 1.175-.09 2.356-.18 3.493-.494l.06-.016c-.6-.339-1.21-1.175-2-1.95-.375-.367-.454-1.126-.53-1.9-.89.167-1.826.116-2.738.051z"
119
+ }), React.createElement("path", {
120
+ fill: "#85CDDD",
121
+ d: "M35.131 40.732c.91.061 1.848.116 2.739-.052-.092-.92-.174-1.862-.746-2.2-1.048-.624-.426-.375-2.242-1.12s-.569.125-1.475 1.12c-.906.993-.199-.062-1.077-.498-.862-.426-.442.704-1.418 1.097.155.485.395.959.673 1.392q1.771.137 3.55.264z"
122
+ }), React.createElement("path", {
123
+ fill: "#3C9CBC",
124
+ d: "M22.259 39.538c.142.623.199 1.74.511 1.369.089-.107.11-.278.114-.44a20 20 0 0 1-.063-1.358c-.243.01-.483.035-.723.087.076.09.13.2.164.345z"
125
+ }), React.createElement("path", {
126
+ fill: "#2E90AA",
127
+ d: "M22.883 40.467c0 .162-.025.33-.113.44-.313.374-.37-.746-.512-1.37a.8.8 0 0 0-.164-.345q-.189.039-.376.1c-.616.2-1.19.569-1.835.591-.625.023-1.203-.287-1.705-.684a36 36 0 0 0 1.66 5.29q.062.154.127.303c1.32.12 2.64.278 3.96.407-.29-1.088-.644-2.172-.849-3.27a14 14 0 0 1-.196-1.462z"
128
+ }), React.createElement("path", {
129
+ fill: "#85CDDD",
130
+ d: "M19.886 39.883c.644-.022 1.222-.394 1.835-.59q.186-.061.375-.1c-.252-.297-.773-.42-1.793-1.085-1.333-.871-.626-1.055-1.76-1.927-.789-.607-.685-.487-.953-.171q.221 1.61.59 3.189c.503.397 1.08.707 1.706.684"
131
+ })), React.createElement("g", {
132
+ clipPath: "url(#clip4_19802_38801)"
133
+ }, React.createElement("path", {
134
+ fill: "#151314",
135
+ d: "M12.067 2.809s-.875-.49-1.604 0c-.732.49-1.505 2.326-1.635 3.607s0 2.155 0 2.155 2.538.362 3.83 0c1.29-.362 1.29-.64 1.29-.64s-.174-2.73-.538-3.737c-.364-1.002-.487-1.506-1.343-1.385"
136
+ }), React.createElement("path", {
137
+ fill: "#223145",
138
+ d: "m15.185 14.596-7.263-.117s.012-1.726.507-2.604c.237-.42.725-.895 1.16-1.273l.23-.196c.372-.304.661-.512.661-.512s.075.021.214.046a5.1 5.1 0 0 0 1.73.008c.068-.008.136-.025.207-.037 0 0 .364.204.717.503q.053.044.103.092.072.06.15.129c.566.49 1.22 1.094 1.347 1.36.233.483.233 2.596.233 2.596z"
139
+ }), React.createElement("path", {
140
+ fill: "#F4B584",
141
+ d: "m13.353 10.419-1.656 1.888-1.722-1.984s.709-.391.867-.911c.043-.146.063-.337.067-.541a7 7 0 0 0-.031-.732 6 6 0 0 0-.048-.404h1.28s-.088.828-.052 1.365c.008.137.024.254.051.333.139.382 1.236.99 1.236.99z"
142
+ }), React.createElement("path", {
143
+ fill: "#C48666",
144
+ d: "M12.063 9.091c-.463.109-.89-.07-1.152-.224.004-.254-.04-.778-.056-.99l.959-.15.226-.1.075.1s-.087.828-.052 1.364"
145
+ }), React.createElement("path", {
146
+ fill: "#F4B584",
147
+ d: "M13.181 5.098q.002.198-.027.403c-.202 1.49-.804 2.671-1.66 2.671s-1.445-1.236-1.667-2.72a3 3 0 0 1-.028-.309c-.055-1.356.9-2.409 1.7-2.409.21 0 .423.075.633.208.562.37 1.045 1.19 1.05 2.151z"
148
+ }), React.createElement("path", {
149
+ fill: "#F4B584",
150
+ d: "M13.298 5.65c-.032.334-.183.587-.262.58-.08-.01-.115-.288-.083-.617.032-.332.123-.582.202-.586.356-.013.174.291.143.624"
151
+ }), React.createElement("path", {
152
+ fill: "#C48666",
153
+ d: "M12.14 2.876c0 .008 0 .033-.008.066 0 .025-.008.054-.012.088-.08.478-.471 1.864-2.32 2.113-.056-1.356.898-2.409 1.698-2.409.21 0 .424.075.634.208z"
154
+ }), React.createElement("path", {
155
+ fill: "#C48666",
156
+ d: "m13.183 5.097-.044.071c-.028-1.028-.97-2.08-1.022-2.134l.012-.088.008-.066c0 .008 0 .033-.008.066.562.37 1.046 1.19 1.05 2.151z"
157
+ }), React.createElement("path", {
158
+ fill: "#000",
159
+ d: "M11.095 4.17a1 1 0 0 0-.21-.1.6.6 0 0 0-.23-.038.46.46 0 0 0-.221.063.54.54 0 0 0-.17.174.53.53 0 0 1 .154-.2.5.5 0 0 1 .234-.1.8.8 0 0 1 .257.013 1 1 0 0 1 .246.084.06.06 0 0 1 .027.083c-.015.033-.051.046-.079.029h-.008z"
160
+ }), React.createElement("path", {
161
+ fill: "#151314",
162
+ d: "M12.156 2.784s-.104 2.072-2.515 2.297l.186-1.086.424-.745.384-.404s.899-.47 1.52-.058z"
163
+ }), React.createElement("path", {
164
+ fill: "#151314",
165
+ d: "M12.131 2.946s.994 1.082 1.022 2.139l.214-.366-.19-.732-.242-.762-.5-.345-.288-.092-.024.158z"
166
+ }), React.createElement("path", {
167
+ fill: "#223145",
168
+ d: "m12.635 9.915-.998 3.129c.23-.042 1.742-.695 1.255-1.473.246.108.487-.337.511-.524.04-.262.02-.74-.028-.778-.277-.204-.736-.354-.74-.354"
169
+ }), React.createElement("path", {
170
+ fill: "#fff",
171
+ d: "m10.484 9.894 1.07 1.773 1.08-1.752-.997 3.129-.998-2.139z"
172
+ }), React.createElement("path", {
173
+ fill: "#223145",
174
+ d: "m10.484 9.894 1.152 3.15c-.23-.042-1.818-.687-1.33-1.465-.246.108-.488-.337-.511-.524-.04-.262-.02-.74.027-.778.278-.204.543-.329.634-.366.004 0 .024-.013.032-.013z"
175
+ }), React.createElement("path", {
176
+ fill: "url(#paint0_linear_19802_38801)",
177
+ d: "M13.182 6.196a.1.1 0 0 1-.099.104.1.1 0 0 1-.099-.104.1.1 0 0 1 .1-.104.1.1 0 0 1 .098.104"
178
+ }), React.createElement("path", {
179
+ fill: "#F4B584",
180
+ d: "M9.684 5.65c.032.334.182.587.261.58.08-.01.115-.288.084-.617-.032-.332-.123-.582-.202-.586-.357-.013-.175.291-.143.624"
181
+ }), React.createElement("path", {
182
+ fill: "url(#paint1_linear_19802_38801)",
183
+ d: "M9.973 6.196a.1.1 0 0 1-.099.104.1.1 0 0 1-.099-.104.1.1 0 0 1 .1-.104.1.1 0 0 1 .098.104"
184
+ })))), React.createElement("defs", null, React.createElement("clipPath", {
185
+ id: "clip0_19802_38801"
186
+ }, React.createElement("path", {
187
+ fill: "#fff",
188
+ d: "M0 0h48v48H0z"
189
+ })), React.createElement("clipPath", {
190
+ id: "clip1_19802_38801"
191
+ }, React.createElement("path", {
192
+ fill: "#fff",
193
+ d: "M0 0h48v48H0z"
194
+ })), React.createElement("clipPath", {
195
+ id: "clip2_19802_38801"
196
+ }, React.createElement("path", {
197
+ fill: "#fff",
198
+ d: "M18.797 4h15v10h-15z"
199
+ })), React.createElement("clipPath", {
200
+ id: "clip3_19802_38801"
201
+ }, React.createElement("rect", {
202
+ width: "32.4",
203
+ height: "13",
204
+ x: "4.797",
205
+ y: "30.19",
206
+ fill: "#fff",
207
+ rx: "1"
208
+ })), React.createElement("clipPath", {
209
+ id: "clip4_19802_38801"
210
+ }, React.createElement("path", {
211
+ fill: "#fff",
212
+ d: "M6.797 2h9v13h-9z"
213
+ })), React.createElement("linearGradient", {
214
+ id: "paint0_linear_19802_38801",
215
+ x1: "13.182",
216
+ x2: "12.988",
217
+ y1: "6.183",
218
+ y2: "6.202",
219
+ gradientUnits: "userSpaceOnUse"
220
+ }, React.createElement("stop", {
221
+ stopColor: "#F7F7F7"
222
+ }), React.createElement("stop", {
223
+ offset: "1",
224
+ stopColor: "#D7EBF4"
225
+ })), React.createElement("linearGradient", {
226
+ id: "paint1_linear_19802_38801",
227
+ x1: "9.973",
228
+ x2: "9.779",
229
+ y1: "6.183",
230
+ y2: "6.202",
231
+ gradientUnits: "userSpaceOnUse"
232
+ }, React.createElement("stop", {
233
+ stopColor: "#F7F7F7"
234
+ }), React.createElement("stop", {
235
+ offset: "1",
236
+ stopColor: "#D7EBF4"
237
+ }))));
238
+
239
+ var _default = SvgBiographicalEditor;
240
+ exports.default = _default;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var React = _interopRequireWildcard(require("react"));
13
+
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ function SvgBriefcase(props) {
19
+ return React.createElement("svg", (0, _extends2.default)({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: "24",
22
+ height: "24",
23
+ fill: "none",
24
+ viewBox: "0 0 24 24"
25
+ }, props), React.createElement("path", {
26
+ fill: "#5A56DC",
27
+ d: "M10 22h4c2.8 0 4.2 0 5.27-.545a5 5 0 0 0 2.185-2.185C22 18.2 22 16.8 22 14l-.001-1S18 16 12 16s-9.999-3-9.999-3L2 14c0 2.8 0 4.2.545 5.27a5 5 0 0 0 2.185 2.185C5.8 22 7.2 22 10 22"
28
+ }), React.createElement("path", {
29
+ stroke: "#2A2A3C",
30
+ strokeLinecap: "round",
31
+ strokeLinejoin: "round",
32
+ strokeMiterlimit: "10",
33
+ strokeWidth: "1.5",
34
+ d: "M12 12.5v.5M2 13s4 3 10 3 10-3 10-3m-12 9h4c2.8 0 4.2 0 5.27-.545a5 5 0 0 0 2.185-2.185C22 18.2 22 16.8 22 14s0-4.2-.545-5.27a5 5 0 0 0-2.185-2.185C18.2 6 16.8 6 14 6h-4c-2.8 0-4.2 0-5.27.545A5 5 0 0 0 2.545 8.73C2 9.8 2 11.2 2 14s0 4.2.545 5.27a5 5 0 0 0 2.185 2.185C5.8 22 7.2 22 10 22m6-16v-.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C14.48 2 13.92 2 12.8 2h-1.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C8 3.52 8 4.08 8 5.2V6z"
35
+ }));
36
+ }
37
+
38
+ var _default = SvgBriefcase;
39
+ exports.default = _default;
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var React = _interopRequireWildcard(require("react"));
13
+
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ function SvgCamera(props) {
19
+ return React.createElement("svg", (0, _extends2.default)({
20
+ xmlns: "http://www.w3.org/2000/svg",
21
+ width: "24",
22
+ height: "24",
23
+ fill: "none",
24
+ viewBox: "0 0 24 24"
25
+ }, props), React.createElement("path", {
26
+ fill: "#8C88E7",
27
+ fillRule: "evenodd",
28
+ d: "M2 11.286V14c0 1.861 0 2.792.245 3.545a5 5 0 0 0 3.21 3.21C6.208 21 7.139 21 9 21h6c1.861 0 2.792 0 3.545-.245a5 5 0 0 0 3.21-3.21C22 16.792 22 15.861 22 14v-2.714A4.286 4.286 0 0 0 17.714 7H16.8a.8.8 0 0 1-.8-.8A3.2 3.2 0 0 0 12.8 3h-1.6A3.2 3.2 0 0 0 8 6.2a.8.8 0 0 1-.8.8h-.914A4.286 4.286 0 0 0 2 11.286M16.5 13.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0",
29
+ clipRule: "evenodd"
30
+ }), React.createElement("path", {
31
+ stroke: "#2A2A3C",
32
+ strokeLinecap: "round",
33
+ strokeLinejoin: "round",
34
+ strokeMiterlimit: "10",
35
+ strokeWidth: "1.5",
36
+ d: "M11.5 6h1M2 11.286V14c0 1.861 0 2.792.245 3.545a5 5 0 0 0 3.21 3.21C6.208 21 7.139 21 9 21h6c1.861 0 2.792 0 3.545-.245a5 5 0 0 0 3.21-3.21C22 16.792 22 15.861 22 14v-2.714A4.286 4.286 0 0 0 17.714 7H16.8a.8.8 0 0 1-.8-.8A3.2 3.2 0 0 0 12.8 3h-1.6A3.2 3.2 0 0 0 8 6.2a.8.8 0 0 1-.8.8h-.914A4.286 4.286 0 0 0 2 11.286M16.5 13.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0"
37
+ }));
38
+ }
39
+
40
+ var _default = SvgCamera;
41
+ exports.default = _default;
@@ -0,0 +1,170 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.default = void 0;
9
+
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+
12
+ var React = _interopRequireWildcard(require("react"));
13
+
14
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
+
16
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
+
18
+ const SvgCover = props => React.createElement("svg", (0, _extends2.default)({
19
+ xmlns: "http://www.w3.org/2000/svg",
20
+ width: "48",
21
+ height: "48",
22
+ fill: "none",
23
+ viewBox: "0 0 48 48"
24
+ }, props), React.createElement("g", {
25
+ clipPath: "url(#clip0_19819_32708)"
26
+ }, React.createElement("path", {
27
+ fill: "#5FB3FC",
28
+ fillRule: "evenodd",
29
+ d: "M10.604 3.207c-.56 0-.84 0-1.054.11a1 1 0 0 0-.437.436c-.11.214-.11.494-.11 1.054v40.376c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.214.109.494.109 1.054.109h29.471c.56 0 .84 0 1.054-.11a1 1 0 0 0 .437-.436c.11-.214.11-.494.11-1.054V4.807c0-.56 0-.84-.11-1.054a1 1 0 0 0-.437-.437c-.214-.109-.494-.109-1.054-.109z",
30
+ clipRule: "evenodd",
31
+ opacity: "0.48"
32
+ }), React.createElement("path", {
33
+ fill: "#8C88E7",
34
+ fillRule: "evenodd",
35
+ d: "M8.004 3.934c0-.6 0-.9.12-1.122a1 1 0 0 1 .474-.44c.23-.102.53-.079 1.128-.033L35.57 4.317c.52.04.781.06.978.174a1 1 0 0 1 .4.432c.1.205.1.466.1.989v40.361c0 .6 0 .9-.12 1.122a1 1 0 0 1-.475.44c-.23.102-.53.08-1.127.034L9.482 45.896c-.521-.04-.782-.06-.979-.174a1 1 0 0 1-.4-.432c-.1-.206-.1-.467-.1-.99z",
36
+ clipRule: "evenodd",
37
+ opacity: "0.84"
38
+ }), React.createElement("path", {
39
+ fill: "#B2B2B9",
40
+ d: "M37.817 1.223H8.62c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437c-.11.214-.11.494-.11 1.054v40.005c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.213.109.493.109 1.054.109h29.197c.56 0 .84 0 1.054-.109a1 1 0 0 0 .437-.437c.109-.214.109-.494.109-1.054V2.823c0-.56 0-.84-.109-1.054a1 1 0 0 0-.437-.437c-.214-.11-.494-.11-1.054-.11"
41
+ }), React.createElement("path", {
42
+ fill: "#F2F2F3",
43
+ d: "M36.594 0H7.397c-.56 0-.84 0-1.054.109a1 1 0 0 0-.437.437c-.11.214-.11.494-.11 1.054v40.005c0 .56 0 .84.11 1.054a1 1 0 0 0 .437.437c.214.11.494.11 1.054.11h29.197c.56 0 .84 0 1.054-.11a1 1 0 0 0 .437-.437c.11-.214.11-.494.11-1.054V1.6c0-.56 0-.84-.11-1.054a1 1 0 0 0-.437-.437C37.434 0 37.154 0 36.594 0"
44
+ }), React.createElement("g", {
45
+ clipPath: "url(#clip1_19819_32708)"
46
+ }, React.createElement("path", {
47
+ fill: "#5FB3FC",
48
+ d: "M28 19H16v2h12z",
49
+ opacity: "0.48"
50
+ }), React.createElement("path", {
51
+ fill: "#B2B2B9",
52
+ d: "M28 26H16v.75h12z",
53
+ opacity: "0.48"
54
+ }), React.createElement("path", {
55
+ fill: "#7F7F8A",
56
+ d: "M29 24H14v1h15z",
57
+ opacity: "0.84"
58
+ }), React.createElement("path", {
59
+ fill: "#B2B2B9",
60
+ d: "M28 27.5H16v.75h12zM28 29H16v.75h12z",
61
+ opacity: "0.48"
62
+ })), React.createElement("path", {
63
+ fill: "#B2B2B9",
64
+ d: "M34.198 34.87H9v.721h25.197z",
65
+ opacity: "0.48"
66
+ }), React.createElement("path", {
67
+ fill: "#7F7F8A",
68
+ d: "M26.798 33.135H16v.72h10.798z",
69
+ opacity: "0.84"
70
+ }), React.createElement("path", {
71
+ fill: "#B2B2B9",
72
+ d: "M30 36.61H14v.72h16z",
73
+ opacity: "0.48"
74
+ }), React.createElement("g", {
75
+ clipPath: "url(#clip2_19819_32708)",
76
+ opacity: "0.72"
77
+ }, React.createElement("path", {
78
+ fill: "#151314",
79
+ d: "M23.067 3.809s-.875-.49-1.604 0c-.732.49-1.505 2.326-1.635 3.607s0 2.155 0 2.155 2.538.362 3.83 0c1.29-.362 1.29-.64 1.29-.64s-.174-2.73-.538-3.737c-.364-1.002-.487-1.506-1.343-1.385"
80
+ }), React.createElement("path", {
81
+ fill: "#223145",
82
+ d: "m26.185 15.596-7.263-.117s.012-1.726.507-2.604c.237-.42.725-.895 1.16-1.273l.23-.196c.372-.304.661-.512.661-.512s.075.021.214.046c.317.058.963.137 1.73.008.068-.008.136-.025.207-.037 0 0 .364.204.717.503q.053.044.103.092.072.06.15.129c.566.49 1.22 1.094 1.347 1.36.233.483.233 2.596.233 2.596z"
83
+ }), React.createElement("path", {
84
+ fill: "#F4B584",
85
+ d: "m24.353 11.419-1.656 1.888-1.722-1.984s.708-.391.867-.911c.044-.146.063-.337.067-.541a7 7 0 0 0-.031-.732c-.02-.237-.048-.404-.048-.404h1.28s-.088.828-.052 1.365c.008.137.023.254.051.333.139.382 1.236.99 1.236.99z"
86
+ }), React.createElement("path", {
87
+ fill: "#C48666",
88
+ d: "M23.063 10.091c-.463.109-.89-.07-1.152-.224.004-.254-.04-.778-.056-.99l.959-.15.226-.1.075.1s-.087.828-.052 1.364"
89
+ }), React.createElement("path", {
90
+ fill: "#F4B584",
91
+ d: "M24.181 6.098q0 .198-.027.403c-.202 1.49-.804 2.671-1.66 2.671s-1.445-1.236-1.667-2.72a3 3 0 0 1-.028-.309c-.055-1.356.9-2.409 1.7-2.409.21 0 .423.075.633.208.562.37 1.045 1.19 1.05 2.151z"
92
+ }), React.createElement("path", {
93
+ fill: "#F4B584",
94
+ d: "M24.298 6.65c-.032.334-.183.587-.262.58-.08-.01-.115-.288-.083-.617.032-.332.123-.582.202-.586.356-.013.174.291.142.624"
95
+ }), React.createElement("path", {
96
+ fill: "#C48666",
97
+ d: "M23.14 3.876c0 .008 0 .033-.008.066 0 .025-.008.054-.012.088-.08.478-.471 1.864-2.32 2.113-.056-1.356.898-2.409 1.698-2.409.21 0 .424.075.634.208z"
98
+ }), React.createElement("path", {
99
+ fill: "#C48666",
100
+ d: "m24.183 6.097-.044.071c-.028-1.028-.97-2.08-1.022-2.134l.012-.088.008-.066c0 .008 0 .033-.008.066.562.37 1.046 1.19 1.05 2.151z"
101
+ }), React.createElement("path", {
102
+ fill: "#000",
103
+ d: "M22.095 5.17a1 1 0 0 0-.21-.1.6.6 0 0 0-.23-.038.46.46 0 0 0-.221.063.54.54 0 0 0-.17.174.53.53 0 0 1 .154-.2.5.5 0 0 1 .234-.1.8.8 0 0 1 .257.013 1 1 0 0 1 .246.084.06.06 0 0 1 .027.083c-.015.033-.051.046-.079.029h-.008z"
104
+ }), React.createElement("path", {
105
+ fill: "#151314",
106
+ d: "M23.156 3.784s-.104 2.072-2.515 2.297l.186-1.086.423-.745.385-.404s.899-.47 1.52-.058z"
107
+ }), React.createElement("path", {
108
+ fill: "#151314",
109
+ d: "M23.131 3.946s.994 1.082 1.022 2.139l.214-.366-.19-.732-.242-.762-.5-.345-.288-.092-.024.158z"
110
+ }), React.createElement("path", {
111
+ fill: "#223145",
112
+ d: "m23.635 10.915-.998 3.129c.23-.042 1.742-.695 1.255-1.473.246.108.487-.337.511-.524.04-.262.02-.74-.028-.778-.277-.204-.736-.354-.74-.354"
113
+ }), React.createElement("path", {
114
+ fill: "#fff",
115
+ d: "m21.484 10.894 1.07 1.773 1.08-1.752-.997 3.129-.998-2.139z"
116
+ }), React.createElement("path", {
117
+ fill: "#223145",
118
+ d: "m21.484 10.894 1.152 3.15c-.23-.042-1.818-.687-1.33-1.465-.246.108-.488-.337-.511-.524-.04-.262-.02-.74.027-.778.278-.204.543-.329.634-.366.004 0 .024-.013.032-.013z"
119
+ }), React.createElement("path", {
120
+ fill: "url(#paint0_linear_19819_32708)",
121
+ d: "M24.182 7.196a.1.1 0 0 1-.099.104.1.1 0 0 1-.099-.104.1.1 0 0 1 .1-.104.1.1 0 0 1 .098.104"
122
+ }), React.createElement("path", {
123
+ fill: "#F4B584",
124
+ d: "M20.684 6.65c.032.334.182.587.261.58.08-.01.115-.288.084-.617-.032-.332-.123-.582-.202-.586-.357-.013-.175.291-.143.624"
125
+ }), React.createElement("path", {
126
+ fill: "url(#paint1_linear_19819_32708)",
127
+ d: "M20.973 7.196a.1.1 0 0 1-.099.104.1.1 0 0 1-.099-.104.1.1 0 0 1 .1-.104.1.1 0 0 1 .098.104"
128
+ }))), React.createElement("defs", null, React.createElement("clipPath", {
129
+ id: "clip0_19819_32708"
130
+ }, React.createElement("path", {
131
+ fill: "#fff",
132
+ d: "M0 0h48v48H0z"
133
+ })), React.createElement("clipPath", {
134
+ id: "clip1_19819_32708"
135
+ }, React.createElement("path", {
136
+ fill: "#fff",
137
+ d: "M15 19h14v11H15z"
138
+ })), React.createElement("clipPath", {
139
+ id: "clip2_19819_32708"
140
+ }, React.createElement("path", {
141
+ fill: "#fff",
142
+ d: "M17.797 3h9v13h-9z"
143
+ })), React.createElement("linearGradient", {
144
+ id: "paint0_linear_19819_32708",
145
+ x1: "24.182",
146
+ x2: "23.988",
147
+ y1: "7.183",
148
+ y2: "7.202",
149
+ gradientUnits: "userSpaceOnUse"
150
+ }, React.createElement("stop", {
151
+ stopColor: "#F7F7F7"
152
+ }), React.createElement("stop", {
153
+ offset: "1",
154
+ stopColor: "#D7EBF4"
155
+ })), React.createElement("linearGradient", {
156
+ id: "paint1_linear_19819_32708",
157
+ x1: "20.973",
158
+ x2: "20.779",
159
+ y1: "7.183",
160
+ y2: "7.202",
161
+ gradientUnits: "userSpaceOnUse"
162
+ }, React.createElement("stop", {
163
+ stopColor: "#F7F7F7"
164
+ }), React.createElement("stop", {
165
+ offset: "1",
166
+ stopColor: "#D7EBF4"
167
+ }))));
168
+
169
+ var _default = SvgCover;
170
+ exports.default = _default;