@dxc-technology/halstack-react 0.0.0-0085b72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +66 -0
- package/babel.config.js +8 -0
- package/dist/BackgroundColorContext.js +46 -0
- package/dist/ThemeContext.js +250 -0
- package/dist/V3Select/V3Select.js +549 -0
- package/dist/V3Select/index.d.ts +27 -0
- package/dist/V3Textarea/V3Textarea.js +264 -0
- package/dist/V3Textarea/index.d.ts +27 -0
- package/dist/accordion/Accordion.js +353 -0
- package/dist/accordion/index.d.ts +28 -0
- package/dist/accordion-group/AccordionGroup.js +186 -0
- package/dist/accordion-group/index.d.ts +16 -0
- package/dist/alert/Alert.js +403 -0
- package/dist/alert/index.d.ts +51 -0
- package/dist/badge/Badge.js +63 -0
- package/dist/box/Box.js +156 -0
- package/dist/box/index.d.ts +25 -0
- package/dist/button/Button.js +238 -0
- package/dist/button/index.d.ts +24 -0
- package/dist/card/Card.js +254 -0
- package/dist/card/index.d.ts +22 -0
- package/dist/checkbox/Checkbox.js +299 -0
- package/dist/checkbox/index.d.ts +24 -0
- package/dist/chip/Chip.js +265 -0
- package/dist/chip/index.d.ts +22 -0
- package/dist/common/OpenSans.css +81 -0
- package/dist/common/RequiredComponent.js +40 -0
- package/dist/common/fonts/OpenSans-Bold.ttf +0 -0
- package/dist/common/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/dist/common/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/dist/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/dist/common/fonts/OpenSans-Italic.ttf +0 -0
- package/dist/common/fonts/OpenSans-Light.ttf +0 -0
- package/dist/common/fonts/OpenSans-LightItalic.ttf +0 -0
- package/dist/common/fonts/OpenSans-Regular.ttf +0 -0
- package/dist/common/fonts/OpenSans-SemiBold.ttf +0 -0
- package/dist/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/dist/common/utils.js +22 -0
- package/dist/common/variables.js +1574 -0
- package/dist/date/Date.js +379 -0
- package/dist/date/index.d.ts +27 -0
- package/dist/date-input/DateInput.js +400 -0
- package/dist/date-input/index.d.ts +95 -0
- package/dist/dialog/Dialog.js +218 -0
- package/dist/dialog/index.d.ts +18 -0
- package/dist/dropdown/Dropdown.js +544 -0
- package/dist/dropdown/index.d.ts +26 -0
- package/dist/file-input/FileInput.js +644 -0
- package/dist/file-input/FileItem.js +287 -0
- package/dist/file-input/index.d.ts +81 -0
- package/dist/footer/Footer.js +421 -0
- package/dist/footer/Icons.js +77 -0
- package/dist/footer/index.d.ts +25 -0
- package/dist/header/Header.js +470 -0
- package/dist/header/Icons.js +59 -0
- package/dist/header/index.d.ts +25 -0
- package/dist/heading/Heading.js +230 -0
- package/dist/heading/index.d.ts +17 -0
- package/dist/input-text/Icons.js +22 -0
- package/dist/input-text/InputText.js +705 -0
- package/dist/input-text/index.d.ts +36 -0
- package/dist/layout/ApplicationLayout.js +327 -0
- package/dist/layout/Icons.js +55 -0
- package/dist/link/Link.js +237 -0
- package/dist/link/index.d.ts +23 -0
- package/dist/main.d.ts +40 -0
- package/dist/main.js +359 -0
- package/dist/number-input/NumberInput.js +136 -0
- package/dist/number-input/NumberInputContext.js +16 -0
- package/dist/number-input/index.d.ts +113 -0
- package/dist/paginator/Icons.js +66 -0
- package/dist/paginator/Paginator.js +305 -0
- package/dist/paginator/index.d.ts +20 -0
- package/dist/password-input/PasswordInput.js +203 -0
- package/dist/password-input/index.d.ts +94 -0
- package/dist/progress-bar/ProgressBar.js +242 -0
- package/dist/progress-bar/index.d.ts +18 -0
- package/dist/radio/Radio.js +209 -0
- package/dist/radio/index.d.ts +23 -0
- package/dist/resultsetTable/ResultsetTable.js +358 -0
- package/dist/resultsetTable/index.d.ts +19 -0
- package/dist/select/Select.js +1096 -0
- package/dist/select/index.d.ts +53 -0
- package/dist/sidenav/Sidenav.js +179 -0
- package/dist/sidenav/index.d.ts +13 -0
- package/dist/slider/Slider.js +404 -0
- package/dist/slider/index.d.ts +29 -0
- package/dist/spinner/Spinner.js +381 -0
- package/dist/spinner/index.d.ts +17 -0
- package/dist/switch/Switch.js +222 -0
- package/dist/switch/index.d.ts +24 -0
- package/dist/table/Table.js +132 -0
- package/dist/table/index.d.ts +13 -0
- package/dist/tabs/Tabs.js +343 -0
- package/dist/tabs/index.d.ts +19 -0
- package/dist/tag/Tag.js +282 -0
- package/dist/tag/index.d.ts +24 -0
- package/dist/text-input/TextInput.js +974 -0
- package/dist/text-input/index.d.ts +135 -0
- package/dist/textarea/Textarea.js +369 -0
- package/dist/textarea/index.d.ts +117 -0
- package/dist/toggle/Toggle.js +220 -0
- package/dist/toggle/index.d.ts +21 -0
- package/dist/toggle-group/ToggleGroup.js +327 -0
- package/dist/toggle-group/index.d.ts +21 -0
- package/dist/upload/Upload.js +205 -0
- package/dist/upload/buttons-upload/ButtonsUpload.js +135 -0
- package/dist/upload/buttons-upload/Icons.js +40 -0
- package/dist/upload/dragAndDropArea/DragAndDropArea.js +329 -0
- package/dist/upload/dragAndDropArea/Icons.js +39 -0
- package/dist/upload/file-upload/FileToUpload.js +189 -0
- package/dist/upload/file-upload/Icons.js +66 -0
- package/dist/upload/files-upload/FilesToUpload.js +123 -0
- package/dist/upload/index.d.ts +15 -0
- package/dist/upload/transaction/Icons.js +160 -0
- package/dist/upload/transaction/Transaction.js +148 -0
- package/dist/upload/transactions/Transactions.js +138 -0
- package/dist/useTheme.js +22 -0
- package/dist/wizard/Icons.js +65 -0
- package/dist/wizard/Wizard.js +405 -0
- package/dist/wizard/index.d.ts +18 -0
- package/package.json +75 -0
- package/test/Accordion.test.js +33 -0
- package/test/AccordionGroup.test.js +125 -0
- package/test/Alert.test.js +53 -0
- package/test/Box.test.js +10 -0
- package/test/Button.test.js +18 -0
- package/test/Card.test.js +30 -0
- package/test/Checkbox.test.js +45 -0
- package/test/Chip.test.js +25 -0
- package/test/Date.test.js +395 -0
- package/test/DateInput.test.js +242 -0
- package/test/Dialog.test.js +23 -0
- package/test/Dropdown.test.js +145 -0
- package/test/FileInput.test.js +201 -0
- package/test/Footer.test.js +94 -0
- package/test/Header.test.js +34 -0
- package/test/Heading.test.js +83 -0
- package/test/InputText.test.js +240 -0
- package/test/Link.test.js +43 -0
- package/test/NumberInput.test.js +259 -0
- package/test/Paginator.test.js +181 -0
- package/test/PasswordInput.test.js +83 -0
- package/test/ProgressBar.test.js +35 -0
- package/test/Radio.test.js +37 -0
- package/test/ResultsetTable.test.js +330 -0
- package/test/Select.test.js +415 -0
- package/test/Sidenav.test.js +45 -0
- package/test/Slider.test.js +74 -0
- package/test/Spinner.test.js +32 -0
- package/test/Switch.test.js +45 -0
- package/test/Table.test.js +36 -0
- package/test/Tabs.test.js +109 -0
- package/test/Tag.test.js +32 -0
- package/test/TextInput.test.js +732 -0
- package/test/Textarea.test.js +193 -0
- package/test/ToggleGroup.test.js +85 -0
- package/test/Upload.test.js +60 -0
- package/test/V3Select.test.js +212 -0
- package/test/V3TextArea.test.js +51 -0
- package/test/Wizard.test.js +130 -0
- package/test/mocks/pngMock.js +1 -0
- package/test/mocks/svgMock.js +1 -0
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
4
|
+
|
|
5
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
|
|
12
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
13
|
+
|
|
14
|
+
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
15
|
+
|
|
16
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
17
|
+
|
|
18
|
+
var _react = _interopRequireDefault(require("react"));
|
|
19
|
+
|
|
20
|
+
var _styledComponents = _interopRequireWildcard(require("styled-components"));
|
|
21
|
+
|
|
22
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
23
|
+
|
|
24
|
+
var _variables = require("../common/variables.js");
|
|
25
|
+
|
|
26
|
+
var _useTheme = _interopRequireDefault(require("../useTheme.js"));
|
|
27
|
+
|
|
28
|
+
function _templateObject6() {
|
|
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
|
+
|
|
31
|
+
_templateObject6 = function _templateObject6() {
|
|
32
|
+
return data;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
return data;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function _templateObject5() {
|
|
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
|
+
|
|
41
|
+
_templateObject5 = function _templateObject5() {
|
|
42
|
+
return data;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return data;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function _templateObject4() {
|
|
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
|
+
|
|
51
|
+
_templateObject4 = function _templateObject4() {
|
|
52
|
+
return data;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
return data;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function _templateObject3() {
|
|
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
|
+
|
|
61
|
+
_templateObject3 = function _templateObject3() {
|
|
62
|
+
return data;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
return data;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function _templateObject2() {
|
|
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
|
+
|
|
71
|
+
_templateObject2 = function _templateObject2() {
|
|
72
|
+
return data;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
return data;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function _templateObject() {
|
|
79
|
+
var data = (0, _taggedTemplateLiteral2["default"])(["\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"]);
|
|
80
|
+
|
|
81
|
+
_templateObject = function _templateObject() {
|
|
82
|
+
return data;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
return data;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
var DxcHeading = function DxcHeading(_ref) {
|
|
89
|
+
var _ref$level = _ref.level,
|
|
90
|
+
level = _ref$level === void 0 ? 1 : _ref$level,
|
|
91
|
+
_ref$text = _ref.text,
|
|
92
|
+
text = _ref$text === void 0 ? "" : _ref$text,
|
|
93
|
+
as = _ref.as,
|
|
94
|
+
_ref$weight = _ref.weight,
|
|
95
|
+
weight = _ref$weight === void 0 ? "" : _ref$weight,
|
|
96
|
+
margin = _ref.margin;
|
|
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, {
|
|
106
|
+
margin: margin
|
|
107
|
+
}, level === 1 ? _react["default"].createElement(HeadingLevel1, {
|
|
108
|
+
as: checkValidAs(as),
|
|
109
|
+
weight: weight
|
|
110
|
+
}, text) : level === 2 ? _react["default"].createElement(HeadingLevel2, {
|
|
111
|
+
as: checkValidAs(as),
|
|
112
|
+
weight: weight
|
|
113
|
+
}, text) : level === 3 ? _react["default"].createElement(HeadingLevel3, {
|
|
114
|
+
as: checkValidAs(as),
|
|
115
|
+
weight: weight
|
|
116
|
+
}, text) : level === 4 ? _react["default"].createElement(HeadingLevel4, {
|
|
117
|
+
as: checkValidAs(as),
|
|
118
|
+
weight: weight
|
|
119
|
+
}, text) : _react["default"].createElement(HeadingLevel5, {
|
|
120
|
+
as: checkValidAs(as),
|
|
121
|
+
weight: weight
|
|
122
|
+
}, text)));
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
var HeadingContainer = _styledComponents["default"].div(_templateObject(), function (props) {
|
|
126
|
+
return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
|
|
127
|
+
}, function (props) {
|
|
128
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
|
|
129
|
+
}, function (props) {
|
|
130
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.right ? _variables.spaces[props.margin.right] : "";
|
|
131
|
+
}, function (props) {
|
|
132
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
|
|
133
|
+
}, function (props) {
|
|
134
|
+
return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
|
|
135
|
+
});
|
|
136
|
+
|
|
137
|
+
var HeadingLevel1 = _styledComponents["default"].h1(_templateObject2(), function (props) {
|
|
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;
|
|
151
|
+
});
|
|
152
|
+
|
|
153
|
+
var HeadingLevel2 = _styledComponents["default"].h2(_templateObject3(), function (props) {
|
|
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;
|
|
167
|
+
});
|
|
168
|
+
|
|
169
|
+
var HeadingLevel3 = _styledComponents["default"].h3(_templateObject4(), function (props) {
|
|
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;
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
var HeadingLevel4 = _styledComponents["default"].h4(_templateObject5(), function (props) {
|
|
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;
|
|
199
|
+
});
|
|
200
|
+
|
|
201
|
+
var HeadingLevel5 = _styledComponents["default"].h5(_templateObject6(), function (props) {
|
|
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;
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
DxcHeading.propTypes = {
|
|
218
|
+
level: _propTypes["default"].number,
|
|
219
|
+
text: _propTypes["default"].string,
|
|
220
|
+
as: _propTypes["default"].oneOf(["h1", "h2", "h3", "h4", "h5"]),
|
|
221
|
+
weight: _propTypes["default"].oneOf(["light", "normal", "bold", ""]),
|
|
222
|
+
margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
|
|
223
|
+
top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
224
|
+
bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
225
|
+
left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
|
|
226
|
+
right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
|
|
227
|
+
}), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
|
|
228
|
+
};
|
|
229
|
+
var _default = DxcHeading;
|
|
230
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
2
|
+
type Margin = {
|
|
3
|
+
top?: Space;
|
|
4
|
+
bottom?: Space;
|
|
5
|
+
left?: Space;
|
|
6
|
+
right?: Space;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
type Props = {
|
|
10
|
+
level?: 1 | 2 | 3 | 4 | 5;
|
|
11
|
+
text?: string;
|
|
12
|
+
as?: "h1" | "h2" | "h3" | "h4" | "h5";
|
|
13
|
+
weight?: "light" | "normal" | "bold";
|
|
14
|
+
margin?: Space | Margin;
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default function DxcHeading(props: Props): JSX.Element;
|
|
@@ -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;
|