@dxc-technology/halstack-react 0.0.0-e441916 → 0.0.0-e628009

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 (195) hide show
  1. package/README.md +1 -1
  2. package/babel.config.js +6 -2
  3. package/dist/BackgroundColorContext.js +46 -0
  4. package/dist/ThemeContext.js +235 -2
  5. package/dist/V3Textarea/V3Textarea.js +264 -0
  6. package/dist/accordion/Accordion.js +170 -81
  7. package/dist/accordion-group/AccordionGroup.js +186 -0
  8. package/dist/alert/Alert.js +184 -83
  9. package/dist/alert/index.d.ts +51 -0
  10. package/dist/badge/Badge.js +63 -0
  11. package/dist/box/Box.js +39 -19
  12. package/dist/button/Button.js +84 -29
  13. package/dist/card/Card.js +64 -56
  14. package/dist/checkbox/Checkbox.js +108 -32
  15. package/dist/chip/Chip.js +135 -40
  16. package/dist/common/RequiredComponent.js +2 -8
  17. package/dist/common/utils.js +2 -22
  18. package/dist/common/variables.js +1486 -105
  19. package/dist/date/Date.js +115 -78
  20. package/dist/date-input/DateInput.js +400 -0
  21. package/dist/date-input/index.d.ts +95 -0
  22. package/dist/dialog/Dialog.js +61 -36
  23. package/dist/dropdown/Dropdown.js +226 -94
  24. package/dist/file-input/FileInput.js +644 -0
  25. package/dist/file-input/FileItem.js +280 -0
  26. package/dist/file-input/index.d.ts +81 -0
  27. package/dist/footer/Footer.js +125 -45
  28. package/dist/footer/Icons.js +77 -0
  29. package/dist/header/Header.js +174 -90
  30. package/dist/header/Icons.js +59 -0
  31. package/dist/heading/Heading.js +93 -22
  32. package/dist/input-text/Icons.js +22 -0
  33. package/dist/input-text/InputText.js +298 -108
  34. package/dist/layout/ApplicationLayout.js +327 -0
  35. package/dist/layout/Icons.js +55 -0
  36. package/dist/link/Link.js +142 -34
  37. package/dist/main.d.ts +8 -0
  38. package/dist/main.js +111 -7
  39. package/dist/new-select/NewSelect.js +836 -0
  40. package/dist/new-select/index.d.ts +53 -0
  41. package/dist/number-input/NumberInput.js +136 -0
  42. package/dist/number-input/NumberInputContext.js +16 -0
  43. package/dist/number-input/index.d.ts +113 -0
  44. package/dist/paginator/Icons.js +66 -0
  45. package/dist/paginator/Paginator.js +162 -57
  46. package/dist/password-input/PasswordInput.js +198 -0
  47. package/dist/password-input/index.d.ts +94 -0
  48. package/dist/progress-bar/ProgressBar.js +97 -44
  49. package/dist/radio/Radio.js +39 -21
  50. package/dist/resultsetTable/ResultsetTable.js +93 -69
  51. package/dist/select/Select.js +253 -129
  52. package/dist/sidenav/Sidenav.js +87 -125
  53. package/dist/slider/Slider.js +219 -73
  54. package/dist/spinner/Spinner.js +249 -64
  55. package/dist/switch/Switch.js +52 -25
  56. package/dist/table/Table.js +63 -15
  57. package/dist/tabs/Tabs.js +210 -50
  58. package/dist/tabs-for-sections/TabsForSections.js +1 -16
  59. package/dist/tag/Tag.js +100 -35
  60. package/dist/text-input/TextInput.js +971 -0
  61. package/dist/text-input/index.d.ts +135 -0
  62. package/dist/textarea/Textarea.js +250 -107
  63. package/dist/textarea/index.d.ts +117 -0
  64. package/dist/toggle/Toggle.js +16 -19
  65. package/dist/toggle-group/ToggleGroup.js +327 -0
  66. package/dist/upload/Upload.js +16 -11
  67. package/dist/upload/buttons-upload/ButtonsUpload.js +35 -25
  68. package/dist/upload/buttons-upload/Icons.js +40 -0
  69. package/dist/upload/dragAndDropArea/DragAndDropArea.js +84 -37
  70. package/dist/upload/dragAndDropArea/Icons.js +39 -0
  71. package/dist/upload/file-upload/FileToUpload.js +64 -33
  72. package/dist/upload/file-upload/Icons.js +66 -0
  73. package/dist/upload/files-upload/FilesToUpload.js +16 -16
  74. package/dist/upload/transaction/Icons.js +160 -0
  75. package/dist/upload/transaction/Transaction.js +42 -49
  76. package/dist/upload/transactions/Transactions.js +38 -20
  77. package/dist/useTheme.js +22 -0
  78. package/dist/wizard/Icons.js +65 -0
  79. package/dist/wizard/Wizard.js +156 -61
  80. package/package.json +14 -6
  81. package/test/AccordionGroup.test.js +125 -0
  82. package/test/Date.test.js +49 -45
  83. package/test/DateInput.test.js +242 -0
  84. package/test/Dropdown.test.js +19 -4
  85. package/test/FileInput.test.js +201 -0
  86. package/test/Footer.test.js +2 -7
  87. package/test/Header.test.js +5 -10
  88. package/test/Heading.test.js +60 -12
  89. package/test/InputText.test.js +53 -41
  90. package/test/Link.test.js +25 -7
  91. package/test/NumberInput.test.js +259 -0
  92. package/test/Paginator.test.js +72 -60
  93. package/test/PasswordInput.test.js +83 -0
  94. package/test/ResultsetTable.test.js +66 -19
  95. package/test/Select.test.js +55 -34
  96. package/test/Sidenav.test.js +22 -64
  97. package/test/Slider.test.js +24 -15
  98. package/test/Spinner.test.js +5 -0
  99. package/test/Tabs.test.js +21 -0
  100. package/test/TextInput.test.js +732 -0
  101. package/test/Textarea.test.js +193 -0
  102. package/test/ToggleGroup.test.js +85 -0
  103. package/test/Upload.test.js +5 -5
  104. package/test/{TextArea.test.js → V3TextArea.test.js} +6 -7
  105. package/dist/accordion/Accordion.stories.js +0 -207
  106. package/dist/accordion/readme.md +0 -96
  107. package/dist/alert/Alert.stories.js +0 -158
  108. package/dist/alert/close.svg +0 -4
  109. package/dist/alert/error.svg +0 -4
  110. package/dist/alert/info.svg +0 -4
  111. package/dist/alert/readme.md +0 -43
  112. package/dist/alert/success.svg +0 -4
  113. package/dist/alert/warning.svg +0 -4
  114. package/dist/button/Button.stories.js +0 -224
  115. package/dist/button/readme.md +0 -93
  116. package/dist/checkbox/Checkbox.stories.js +0 -144
  117. package/dist/checkbox/readme.md +0 -116
  118. package/dist/common/services/example-service.js +0 -10
  119. package/dist/common/services/example-service.test.js +0 -12
  120. package/dist/date/Date.stories.js +0 -205
  121. package/dist/date/calendar.svg +0 -1
  122. package/dist/date/calendar_dark.svg +0 -1
  123. package/dist/date/readme.md +0 -73
  124. package/dist/dialog/Dialog.stories.js +0 -217
  125. package/dist/dialog/readme.md +0 -32
  126. package/dist/dropdown/Dropdown.stories.js +0 -249
  127. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  128. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  129. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  130. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  131. package/dist/dropdown/readme.md +0 -69
  132. package/dist/footer/Footer.stories.js +0 -94
  133. package/dist/footer/dxc_logo_wht.png +0 -0
  134. package/dist/footer/readme.md +0 -41
  135. package/dist/header/Header.stories.js +0 -176
  136. package/dist/header/close_icon.svg +0 -1
  137. package/dist/header/dxc_logo_black.png +0 -0
  138. package/dist/header/dxc_logo_white.png +0 -0
  139. package/dist/header/hamb_menu_black.svg +0 -1
  140. package/dist/header/hamb_menu_white.svg +0 -1
  141. package/dist/header/readme.md +0 -33
  142. package/dist/input-text/InputText.stories.js +0 -209
  143. package/dist/input-text/error.svg +0 -1
  144. package/dist/input-text/readme.md +0 -91
  145. package/dist/link/readme.md +0 -51
  146. package/dist/paginator/images/next.svg +0 -3
  147. package/dist/paginator/images/nextPage.svg +0 -3
  148. package/dist/paginator/images/previous.svg +0 -3
  149. package/dist/paginator/images/previousPage.svg +0 -3
  150. package/dist/paginator/readme.md +0 -50
  151. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  152. package/dist/progress-bar/readme.md +0 -63
  153. package/dist/radio/Radio.stories.js +0 -166
  154. package/dist/radio/readme.md +0 -70
  155. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  156. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  157. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  158. package/dist/select/Select.stories.js +0 -235
  159. package/dist/select/readme.md +0 -72
  160. package/dist/sidenav/arrow_icon.svg +0 -3
  161. package/dist/slider/Slider.stories.js +0 -241
  162. package/dist/slider/readme.md +0 -64
  163. package/dist/spinner/Spinner.stories.js +0 -183
  164. package/dist/spinner/readme.md +0 -65
  165. package/dist/switch/Switch.stories.js +0 -134
  166. package/dist/switch/readme.md +0 -133
  167. package/dist/tabs/Tabs.stories.js +0 -130
  168. package/dist/tabs/readme.md +0 -78
  169. package/dist/tabs-for-sections/readme.md +0 -78
  170. package/dist/toggle/Toggle.stories.js +0 -297
  171. package/dist/toggle/readme.md +0 -80
  172. package/dist/upload/Upload.stories.js +0 -72
  173. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  174. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  175. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  176. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  177. package/dist/upload/file-upload/audio-icon.svg +0 -4
  178. package/dist/upload/file-upload/close.svg +0 -4
  179. package/dist/upload/file-upload/file-icon.svg +0 -4
  180. package/dist/upload/file-upload/video-icon.svg +0 -4
  181. package/dist/upload/readme.md +0 -37
  182. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  183. package/dist/upload/transaction/audio-icon.svg +0 -4
  184. package/dist/upload/transaction/error-icon.svg +0 -4
  185. package/dist/upload/transaction/file-icon-err.svg +0 -4
  186. package/dist/upload/transaction/file-icon.svg +0 -4
  187. package/dist/upload/transaction/image-icon-err.svg +0 -4
  188. package/dist/upload/transaction/image-icon.svg +0 -4
  189. package/dist/upload/transaction/success-icon.svg +0 -4
  190. package/dist/upload/transaction/video-icon-err.svg +0 -4
  191. package/dist/upload/transaction/video-icon.svg +0 -4
  192. package/dist/wizard/invalid_icon.svg +0 -6
  193. package/dist/wizard/valid_icon.svg +0 -6
  194. package/dist/wizard/validation-wrong.svg +0 -6
  195. package/test/Toggle.test.js +0 -43
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
+
3
5
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
6
 
5
7
  Object.defineProperty(exports, "__esModule", {
@@ -15,16 +17,16 @@ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/hel
15
17
 
16
18
  var _react = _interopRequireDefault(require("react"));
17
19
 
18
- var _styledComponents = _interopRequireDefault(require("styled-components"));
20
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
19
21
 
20
22
  var _propTypes = _interopRequireDefault(require("prop-types"));
21
23
 
22
- require("../common/OpenSans.css");
23
-
24
24
  var _variables = require("../common/variables.js");
25
25
 
26
+ var _useTheme = _interopRequireDefault(require("../useTheme.js"));
27
+
26
28
  function _templateObject6() {
27
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 20px;\n line-height: 27px;\n font-weight: ", ";\n letter-spacing: 0.26px;\n margin: 0;\n"]);
29
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n margin: 0;\n"]);
28
30
 
29
31
  _templateObject6 = function _templateObject6() {
30
32
  return data;
@@ -34,7 +36,7 @@ function _templateObject6() {
34
36
  }
35
37
 
36
38
  function _templateObject5() {
37
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 24px;\n line-height: 33px;\n font-weight: ", ";\n letter-spacing: 0px;\n margin: 0;\n"]);
39
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n margin: 0;\n"]);
38
40
 
39
41
  _templateObject5 = function _templateObject5() {
40
42
  return data;
@@ -44,7 +46,7 @@ function _templateObject5() {
44
46
  }
45
47
 
46
48
  function _templateObject4() {
47
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 34px;\n line-height: 46px;\n font-weight: ", ";\n letter-spacing: 0.24px;\n margin: 0;\n"]);
49
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n margin: 0;\n"]);
48
50
 
49
51
  _templateObject4 = function _templateObject4() {
50
52
  return data;
@@ -54,7 +56,7 @@ function _templateObject4() {
54
56
  }
55
57
 
56
58
  function _templateObject3() {
57
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 48px;\n line-height: 65px;\n font-weight: ", ";\n letter-spacing: 0px;\n margin: 0;\n"]);
59
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n margin: 0;\n"]);
58
60
 
59
61
  _templateObject3 = function _templateObject3() {
60
62
  return data;
@@ -64,7 +66,7 @@ function _templateObject3() {
64
66
  }
65
67
 
66
68
  function _templateObject2() {
67
- var data = (0, _taggedTemplateLiteral2["default"])(["\n font-size: 60px;\n line-height: 82px;\n font-weight: ", ";\n letter-spacing: -0.53px;\n margin: 0;\n"]);
69
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n font-family: ", ";\n font-style: ", ";\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n color: ", ";\n margin: 0;\n"]);
68
70
 
69
71
  _templateObject2 = function _templateObject2() {
70
72
  return data;
@@ -74,7 +76,7 @@ function _templateObject2() {
74
76
  }
75
77
 
76
78
  function _templateObject() {
77
- var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n\n font-family: \"Open Sans\", sans-serif;\n color: ", ";\n"]);
79
+ var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
78
80
 
79
81
  _templateObject = function _templateObject() {
80
82
  return data;
@@ -86,27 +88,38 @@ function _templateObject() {
86
88
  var DxcHeading = function DxcHeading(_ref) {
87
89
  var _ref$level = _ref.level,
88
90
  level = _ref$level === void 0 ? 1 : _ref$level,
89
- _ref$theme = _ref.theme,
90
- theme = _ref$theme === void 0 ? "light" : _ref$theme,
91
91
  _ref$text = _ref.text,
92
92
  text = _ref$text === void 0 ? "" : _ref$text,
93
+ as = _ref.as,
93
94
  _ref$weight = _ref.weight,
94
95
  weight = _ref$weight === void 0 ? "" : _ref$weight,
95
96
  margin = _ref.margin;
96
- return _react["default"].createElement(HeadingContainer, {
97
- brightness: theme,
97
+ var colorsTheme = (0, _useTheme["default"])();
98
+
99
+ var checkValidAs = function checkValidAs() {
100
+ if (as === "h1" || as === "h2" || as === "h3" || as === "h4" || as === "h5") return as;
101
+ };
102
+
103
+ return _react["default"].createElement(_styledComponents.ThemeProvider, {
104
+ theme: colorsTheme.heading
105
+ }, _react["default"].createElement(HeadingContainer, {
98
106
  margin: margin
99
107
  }, level === 1 ? _react["default"].createElement(HeadingLevel1, {
108
+ as: checkValidAs(as),
100
109
  weight: weight
101
110
  }, text) : level === 2 ? _react["default"].createElement(HeadingLevel2, {
111
+ as: checkValidAs(as),
102
112
  weight: weight
103
113
  }, text) : level === 3 ? _react["default"].createElement(HeadingLevel3, {
114
+ as: checkValidAs(as),
104
115
  weight: weight
105
116
  }, text) : level === 4 ? _react["default"].createElement(HeadingLevel4, {
117
+ as: checkValidAs(as),
106
118
  weight: weight
107
119
  }, text) : _react["default"].createElement(HeadingLevel5, {
120
+ as: checkValidAs(as),
108
121
  weight: weight
109
- }, text));
122
+ }, text)));
110
123
  };
111
124
 
112
125
  var HeadingContainer = _styledComponents["default"].div(_templateObject(), function (props) {
@@ -119,34 +132,92 @@ var HeadingContainer = _styledComponents["default"].div(_templateObject(), funct
119
132
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
120
133
  }, function (props) {
121
134
  return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
122
- }, function (props) {
123
- return props.brightness === "light" ? "#000000DE" : "#FFFFFF";
124
135
  });
125
136
 
126
137
  var HeadingLevel1 = _styledComponents["default"].h1(_templateObject2(), function (props) {
127
- return props.weight === "light" || props.weight === "" ? 200 : props.weight === "normal" ? 400 : 600;
138
+ return props.theme.level1FontFamily;
139
+ }, function (props) {
140
+ return props.theme.level1FontStyle;
141
+ }, function (props) {
142
+ return props.theme.level1FontSize;
143
+ }, function (props) {
144
+ return props.theme.level1LineHeight;
145
+ }, function (props) {
146
+ return props.weight === "normal" ? "400" : props.weight === "light" ? "300" : props.weight === "bold" ? "600" : props.theme.level1FontWeight;
147
+ }, function (props) {
148
+ return props.theme.level1LetterSpacing;
149
+ }, function (props) {
150
+ return props.theme.level1FontColor;
128
151
  });
129
152
 
130
153
  var HeadingLevel2 = _styledComponents["default"].h2(_templateObject3(), function (props) {
131
- return props.weight === "normal" || props.weight === "" ? 400 : props.weight === "light" ? 200 : 600;
154
+ return props.theme.level2FontFamily;
155
+ }, function (props) {
156
+ return props.theme.level2FontStyle;
157
+ }, function (props) {
158
+ return props.theme.level2FontSize;
159
+ }, function (props) {
160
+ return props.theme.level2LineHeight;
161
+ }, function (props) {
162
+ return props.weight === "normal" ? "400" : props.weight === "light" ? "300" : props.weight === "bold" ? "600" : props.theme.level2FontWeight;
163
+ }, function (props) {
164
+ return props.theme.level2LetterSpacing;
165
+ }, function (props) {
166
+ return props.theme.level2FontColor;
132
167
  });
133
168
 
134
169
  var HeadingLevel3 = _styledComponents["default"].h3(_templateObject4(), function (props) {
135
- return props.weight === "normal" || props.weight === "" ? 400 : props.weight === "light" ? 200 : 600;
170
+ return props.theme.level3FontFamily;
171
+ }, function (props) {
172
+ return props.theme.level3FontStyle;
173
+ }, function (props) {
174
+ return props.theme.level3FontSize;
175
+ }, function (props) {
176
+ return props.theme.level3LineHeight;
177
+ }, function (props) {
178
+ return props.weight === "normal" ? "400" : props.weight === "light" ? "300" : props.weight === "bold" ? "600" : props.theme.level3FontWeight;
179
+ }, function (props) {
180
+ return props.theme.level3LetterSpacing;
181
+ }, function (props) {
182
+ return props.theme.level3FontColor;
136
183
  });
137
184
 
138
185
  var HeadingLevel4 = _styledComponents["default"].h4(_templateObject5(), function (props) {
139
- return props.weight === "normal" || props.weight === "" ? 400 : props.weight === "light" ? 200 : 600;
186
+ return props.theme.level4FontFamily;
187
+ }, function (props) {
188
+ return props.theme.level4FontStyle;
189
+ }, function (props) {
190
+ return props.theme.level4FontSize;
191
+ }, function (props) {
192
+ return props.theme.level4LineHeight;
193
+ }, function (props) {
194
+ return props.weight === "normal" ? "400" : props.weight === "light" ? "300" : props.weight === "bold" ? "600" : props.theme.level4FontWeight;
195
+ }, function (props) {
196
+ return props.theme.level4LetterSpacing;
197
+ }, function (props) {
198
+ return props.theme.level4FontColor;
140
199
  });
141
200
 
142
201
  var HeadingLevel5 = _styledComponents["default"].h5(_templateObject6(), function (props) {
143
- return props.weight === "normal" || props.weight === "" ? 400 : props.weight === "light" ? 200 : 600;
202
+ return props.theme.level5FontFamily;
203
+ }, function (props) {
204
+ return props.theme.level5FontStyle;
205
+ }, function (props) {
206
+ return props.theme.level5FontSize;
207
+ }, function (props) {
208
+ return props.theme.level5LineHeight;
209
+ }, function (props) {
210
+ return props.weight === "normal" ? "400" : props.weight === "light" ? "300" : props.weight === "bold" ? "600" : props.theme.level5FontWeight;
211
+ }, function (props) {
212
+ return props.theme.level5LetterSpacing;
213
+ }, function (props) {
214
+ return props.theme.level5FontColor;
144
215
  });
145
216
 
146
217
  DxcHeading.propTypes = {
147
218
  level: _propTypes["default"].number,
148
- theme: _propTypes["default"].oneOf(["light", "dark", ""]),
149
219
  text: _propTypes["default"].string,
220
+ as: _propTypes["default"].oneOf(["h1", "h2", "h3", "h4", "h5"]),
150
221
  weight: _propTypes["default"].oneOf(["light", "normal", "bold", ""]),
151
222
  margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
152
223
  top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
@@ -0,0 +1,22 @@
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 _react = _interopRequireDefault(require("react"));
11
+
12
+ var _default = _react["default"].createElement("svg", {
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ height: "24px",
15
+ viewBox: "0 0 24 24",
16
+ width: "24px",
17
+ fill: "currentColor"
18
+ }, _react["default"].createElement("path", {
19
+ d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"
20
+ }));
21
+
22
+ exports["default"] = _default;