@dxc-technology/halstack-react 0.0.0-67a8cc5 → 0.0.0-6bc7b92

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