@itcase/ui 1.0.37 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Accordion.js +19 -2
- package/dist/components/Group.js +7 -4
- package/dist/components/Pagination.js +44 -36
- package/dist/css/components/Card/Card.css +0 -1
- package/dist/css/components/Select/Select.css +10 -3
- package/dist/css/components/Select/css/__control/select__control.css +6 -1
- package/dist/css/components/Select/css/__input-container/select__input-container.css +4 -2
- package/package.json +1 -1
- package/dist/index-f1505c84.js +0 -86
|
@@ -8,7 +8,6 @@ var fill = require('../constants/componentProps/fill.js');
|
|
|
8
8
|
var direction = require('../constants/componentProps/direction.js');
|
|
9
9
|
var shape = require('../constants/componentProps/shape.js');
|
|
10
10
|
var index = require('./Icon.js');
|
|
11
|
-
var index$1 = require('../index-f1505c84.js');
|
|
12
11
|
var useDeviceTargetClass = require('../hooks/useDeviceTargetClass.js');
|
|
13
12
|
var useStyles = require('../useStyles-e4accb53.js');
|
|
14
13
|
require('react-inlinesvg');
|
|
@@ -37,6 +36,24 @@ var PropTypes__default = /*#__PURE__*/_interopDefault(PropTypes);
|
|
|
37
36
|
var clsx__default = /*#__PURE__*/_interopDefault(clsx);
|
|
38
37
|
var castArray__default = /*#__PURE__*/_interopDefault(castArray);
|
|
39
38
|
|
|
39
|
+
var ChevronDown16 = function ChevronDown16(props) {
|
|
40
|
+
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
clipRule: "evenodd",
|
|
43
|
+
d: "M2.50398 4.75303C2.81229 4.41566 3.31216 4.41566 3.62047 4.75303L8.1611 9.72163C8.22276 9.7891 8.32274 9.7891 8.3844 9.72163L12.925 4.75303C13.2333 4.41566 13.7332 4.41566 14.0415 4.75303C14.3498 5.09039 14.3498 5.63737 14.0415 5.97474L9.50088 10.9433C8.8226 11.6856 7.7229 11.6856 7.04462 10.9433L2.50398 5.97474C2.19567 5.63737 2.19567 5.09039 2.50398 4.75303Z"
|
|
44
|
+
}));
|
|
45
|
+
};
|
|
46
|
+
ChevronDown16.defaultProps = {
|
|
47
|
+
width: "17",
|
|
48
|
+
height: "16",
|
|
49
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
50
|
+
fill: "none",
|
|
51
|
+
stroke: "none"
|
|
52
|
+
};
|
|
53
|
+
var icon16 = {
|
|
54
|
+
chevron_down: ChevronDown16
|
|
55
|
+
};
|
|
56
|
+
|
|
40
57
|
/* React, PropTypes, other third-party modules */
|
|
41
58
|
|
|
42
59
|
/* Component */
|
|
@@ -86,7 +103,7 @@ function AccordionItem(props) {
|
|
|
86
103
|
}, icon || /*#__PURE__*/React__default.default.createElement(index.Icon, {
|
|
87
104
|
fill: iconFillClass,
|
|
88
105
|
size: "16",
|
|
89
|
-
SvgImage:
|
|
106
|
+
SvgImage: icon16.chevron_down
|
|
90
107
|
})), beforeContent && beforeContent, isExpanded && /*#__PURE__*/React__default.default.createElement("div", {
|
|
91
108
|
className: "accordion-item__content"
|
|
92
109
|
}, children || content), afterContent && afterContent);
|
package/dist/components/Group.js
CHANGED
|
@@ -33,7 +33,8 @@ function Group(props) {
|
|
|
33
33
|
horizontalScroll = props.horizontalScroll,
|
|
34
34
|
set = props.set,
|
|
35
35
|
style = props.style,
|
|
36
|
-
dataTour = props.dataTour
|
|
36
|
+
dataTour = props.dataTour,
|
|
37
|
+
onClick = props.onClick;
|
|
37
38
|
var contentAlignClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
38
39
|
prefix: 'group_content-align_',
|
|
39
40
|
propsKey: 'contentAlign'
|
|
@@ -107,9 +108,10 @@ function Group(props) {
|
|
|
107
108
|
groupWrapperStyles = _useStyles.wrapper;
|
|
108
109
|
return /*#__PURE__*/React__default.default.createElement("div", {
|
|
109
110
|
className: clsx__default.default(className, 'group', widthClass, columnsClass, contentAlignClass, alignDirectionClass, directionClass, alignClass, fillClass, fillHoverClass, set && "group_set_" + set, horizontalScroll && 'group_type_horizontal_scroll', stackingClass, wrapClass, growClass, shapeClass, borderColorClass, borderWidthClass, borderTypeClass, elevationClass, justifyContentClass),
|
|
110
|
-
id: id,
|
|
111
111
|
"data-tour": dataTour,
|
|
112
|
-
|
|
112
|
+
id: id,
|
|
113
|
+
style: Object.assign({}, groupStyles, style),
|
|
114
|
+
onClick: onClick
|
|
113
115
|
}, horizontalScroll ? /*#__PURE__*/React__default.default.createElement("div", {
|
|
114
116
|
className: "group__wrapper",
|
|
115
117
|
style: groupWrapperStyles
|
|
@@ -156,7 +158,8 @@ Group.propTypes = {
|
|
|
156
158
|
columnsMobile: PropTypes__default.default.number,
|
|
157
159
|
columnsTablet: PropTypes__default.default.number,
|
|
158
160
|
set: PropTypes__default.default.string,
|
|
159
|
-
horizontalScroll: PropTypes__default.default.bool
|
|
161
|
+
horizontalScroll: PropTypes__default.default.bool,
|
|
162
|
+
onClick: PropTypes__default.default.func
|
|
160
163
|
};
|
|
161
164
|
|
|
162
165
|
exports.Group = Group;
|
|
@@ -3,50 +3,60 @@
|
|
|
3
3
|
var React = require('react');
|
|
4
4
|
require('prop-types');
|
|
5
5
|
var clsx = require('clsx');
|
|
6
|
+
var ceil = require('lodash/ceil');
|
|
6
7
|
var ReactPaginate = require('react-paginate');
|
|
7
|
-
var index = require('./Icon.js');
|
|
8
|
-
var index$1 = require('../index-f1505c84.js');
|
|
9
8
|
var useDeviceTargetClass = require('../hooks/useDeviceTargetClass.js');
|
|
10
|
-
require('
|
|
11
|
-
require('../constants/componentProps/fill.js');
|
|
12
|
-
require('../constants/componentProps/iconSize.js');
|
|
13
|
-
require('../constants/componentProps/shape.js');
|
|
14
|
-
require('../constants/componentProps/strokeColor.js');
|
|
15
|
-
require('./Link.js');
|
|
16
|
-
require('../useStyles-e4accb53.js');
|
|
9
|
+
require('lodash/castArray');
|
|
17
10
|
require('lodash/camelCase');
|
|
18
|
-
require('lodash/maxBy');
|
|
19
|
-
require('lodash/upperFirst');
|
|
20
|
-
require('../hooks/styleAttributes.js');
|
|
21
11
|
require('../context/UIContext.js');
|
|
22
12
|
require('../hooks/useMediaQueries.js');
|
|
23
13
|
require('react-responsive');
|
|
24
|
-
require('../constants/componentProps/size.js');
|
|
25
|
-
require('../constants/componentProps/textColor.js');
|
|
26
|
-
require('../constants/componentProps/textGradient.js');
|
|
27
|
-
require('../constants/componentProps/textStyle.js');
|
|
28
|
-
require('../constants/componentProps/textWeight.js');
|
|
29
|
-
require('../constants/componentProps/type.js');
|
|
30
|
-
require('../constants/componentProps/underline.js');
|
|
31
|
-
require('lodash/castArray');
|
|
32
14
|
|
|
33
15
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
34
16
|
|
|
35
17
|
var React__default = /*#__PURE__*/_interopDefault(React);
|
|
36
18
|
var clsx__default = /*#__PURE__*/_interopDefault(clsx);
|
|
19
|
+
var ceil__default = /*#__PURE__*/_interopDefault(ceil);
|
|
37
20
|
var ReactPaginate__default = /*#__PURE__*/_interopDefault(ReactPaginate);
|
|
38
21
|
|
|
39
22
|
function Pagination(props) {
|
|
40
|
-
var
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
23
|
+
var pageNumber = props.pageNumber,
|
|
24
|
+
perPageCount = props.perPageCount,
|
|
25
|
+
allItemsCount = props.allItemsCount,
|
|
26
|
+
className = props.className;
|
|
27
|
+
props.forcePage;
|
|
28
|
+
props.pageCount;
|
|
29
|
+
var marginPagesDisplayed = props.marginPagesDisplayed,
|
|
44
30
|
pageRangeDisplayed = props.pageRangeDisplayed,
|
|
31
|
+
previousLabel = props.previousLabel,
|
|
32
|
+
nextLabel = props.nextLabel,
|
|
45
33
|
onPageChange = props.onPageChange;
|
|
46
34
|
var justifyContentClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
47
35
|
prefix: 'pagination_justify-content_',
|
|
48
36
|
propsKey: 'justifyContent'
|
|
49
37
|
});
|
|
38
|
+
|
|
39
|
+
// Calculate count of pages for all items
|
|
40
|
+
var paginationPagesCount = React.useMemo(function () {
|
|
41
|
+
if (allItemsCount && allItemsCount > 0) {
|
|
42
|
+
// Round up. "perPageCount" may be is a query params "limit"
|
|
43
|
+
return ceil__default.default(allItemsCount / perPageCount);
|
|
44
|
+
}
|
|
45
|
+
return 0;
|
|
46
|
+
}, [allItemsCount, perPageCount]);
|
|
47
|
+
|
|
48
|
+
// Index for pagination state
|
|
49
|
+
var paginationPageIndex = React.useMemo(function () {
|
|
50
|
+
var intPageNumber = parseInt(pageNumber);
|
|
51
|
+
// For pagination need index of page, not number
|
|
52
|
+
if (!isNaN(intPageNumber) && intPageNumber > 1) {
|
|
53
|
+
return intPageNumber - 1;
|
|
54
|
+
}
|
|
55
|
+
return 0;
|
|
56
|
+
}, [pageNumber]);
|
|
57
|
+
if (paginationPagesCount <= 1) {
|
|
58
|
+
return null;
|
|
59
|
+
}
|
|
50
60
|
return /*#__PURE__*/React__default.default.createElement(ReactPaginate__default.default, {
|
|
51
61
|
containerClassName: clsx__default.default(className, 'pagination', justifyContentClass)
|
|
52
62
|
// page item
|
|
@@ -59,20 +69,12 @@ function Pagination(props) {
|
|
|
59
69
|
activeLinkClassName: "pagination__item-link_state_active"
|
|
60
70
|
// previous button
|
|
61
71
|
,
|
|
62
|
-
previousLabel:
|
|
63
|
-
fill: "surfaceItemPrimary",
|
|
64
|
-
SvgImage: index$1.icon24.doubleArrowLeft,
|
|
65
|
-
size: "24"
|
|
66
|
-
}),
|
|
72
|
+
previousLabel: previousLabel,
|
|
67
73
|
previousClassName: "pagination__item pagination__item_previous",
|
|
68
74
|
previousLinkClassName: "pagination__item-link"
|
|
69
75
|
// next button
|
|
70
76
|
,
|
|
71
|
-
nextLabel:
|
|
72
|
-
fill: "surfaceItemPrimary",
|
|
73
|
-
SvgImage: index$1.icon24.doubleArrowRight,
|
|
74
|
-
size: "24"
|
|
75
|
-
}),
|
|
77
|
+
nextLabel: nextLabel,
|
|
76
78
|
nextClassName: "pagination__item pagination__item_next",
|
|
77
79
|
nextLinkClassName: "pagination__item-link"
|
|
78
80
|
// break element
|
|
@@ -82,12 +84,18 @@ function Pagination(props) {
|
|
|
82
84
|
breakLinkClassName: "pagination__item-link"
|
|
83
85
|
// pages settings
|
|
84
86
|
,
|
|
85
|
-
forcePage:
|
|
86
|
-
pageCount:
|
|
87
|
+
forcePage: paginationPageIndex,
|
|
88
|
+
pageCount: paginationPagesCount,
|
|
87
89
|
marginPagesDisplayed: marginPagesDisplayed,
|
|
88
90
|
pageRangeDisplayed: pageRangeDisplayed,
|
|
89
91
|
onPageChange: onPageChange
|
|
90
92
|
});
|
|
91
93
|
}
|
|
94
|
+
Pagination.propTypes = {};
|
|
95
|
+
Pagination.defaultProps = {
|
|
96
|
+
pageNumber: 0,
|
|
97
|
+
perPageCount: 0,
|
|
98
|
+
allItemsCount: 0
|
|
99
|
+
};
|
|
92
100
|
|
|
93
101
|
exports.Pagination = Pagination;
|
|
@@ -60,9 +60,14 @@
|
|
|
60
60
|
flex-wrap: wrap;
|
|
61
61
|
justify-content: space-between;
|
|
62
62
|
align-items: center;
|
|
63
|
-
cursor: default;
|
|
64
63
|
outline: 0 !important;
|
|
65
64
|
}
|
|
65
|
+
&__value-container {
|
|
66
|
+
cursor: default;
|
|
67
|
+
}
|
|
68
|
+
&__input {
|
|
69
|
+
cursor: default;
|
|
70
|
+
}
|
|
66
71
|
}
|
|
67
72
|
|
|
68
73
|
.select {
|
|
@@ -121,6 +126,7 @@
|
|
|
121
126
|
|
|
122
127
|
.select {
|
|
123
128
|
&__input-container {
|
|
129
|
+
flex: 1;
|
|
124
130
|
@each $sizeText in xs, s, m, l, xl, xxl {
|
|
125
131
|
&.text_size_$(sizeText) {
|
|
126
132
|
& input {
|
|
@@ -131,9 +137,10 @@
|
|
|
131
137
|
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
132
138
|
&.text-color_$(type) {
|
|
133
139
|
&-text {
|
|
134
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent,
|
|
140
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent,
|
|
141
|
+
disabled, hover {
|
|
135
142
|
&-$(color) {
|
|
136
|
-
& input {
|
|
143
|
+
& input {
|
|
137
144
|
color: var(--color-$(type)-text-$(color));
|
|
138
145
|
}
|
|
139
146
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.select {
|
|
2
2
|
&__input-container {
|
|
3
|
+
flex: 1;
|
|
3
4
|
@each $sizeText in xs, s, m, l, xl, xxl {
|
|
4
5
|
&.text_size_$(sizeText) {
|
|
5
6
|
& input {
|
|
@@ -10,9 +11,10 @@
|
|
|
10
11
|
@each $type in accent, primary, secondary, tertiary, surface, success, error {
|
|
11
12
|
&.text-color_$(type) {
|
|
12
13
|
&-text {
|
|
13
|
-
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent,
|
|
14
|
+
@each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent,
|
|
15
|
+
disabled, hover {
|
|
14
16
|
&-$(color) {
|
|
15
|
-
& input {
|
|
17
|
+
& input {
|
|
16
18
|
color: var(--color-$(type)-text-$(color));
|
|
17
19
|
}
|
|
18
20
|
}
|
package/package.json
CHANGED
package/dist/index-f1505c84.js
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var React = require('react');
|
|
4
|
-
|
|
5
|
-
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
6
|
-
|
|
7
|
-
var React__default = /*#__PURE__*/_interopDefault(React);
|
|
8
|
-
|
|
9
|
-
var ChevronDown16 = function ChevronDown16(props) {
|
|
10
|
-
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
11
|
-
fillRule: "evenodd",
|
|
12
|
-
clipRule: "evenodd",
|
|
13
|
-
d: "M2.50398 4.75303C2.81229 4.41566 3.31216 4.41566 3.62047 4.75303L8.1611 9.72163C8.22276 9.7891 8.32274 9.7891 8.3844 9.72163L12.925 4.75303C13.2333 4.41566 13.7332 4.41566 14.0415 4.75303C14.3498 5.09039 14.3498 5.63737 14.0415 5.97474L9.50088 10.9433C8.8226 11.6856 7.7229 11.6856 7.04462 10.9433L2.50398 5.97474C2.19567 5.63737 2.19567 5.09039 2.50398 4.75303Z"
|
|
14
|
-
}));
|
|
15
|
-
};
|
|
16
|
-
ChevronDown16.defaultProps = {
|
|
17
|
-
width: "17",
|
|
18
|
-
height: "16",
|
|
19
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
20
|
-
fill: "none",
|
|
21
|
-
stroke: "none"
|
|
22
|
-
};
|
|
23
|
-
var Facebook24 = function Facebook24(props) {
|
|
24
|
-
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
25
|
-
d: "M24 12.0301C24 5.38947 18.624 0 12 0C5.376 0 0 5.38947 0 12.0301C0 17.8526 4.128 22.7008 9.6 23.8195V15.6391H7.2V12.0301H9.6V9.02256C9.6 6.70075 11.484 4.81203 13.8 4.81203H16.8V8.42105H14.4C13.74 8.42105 13.2 8.96241 13.2 9.62406V12.0301H16.8V15.6391H13.2V24C19.26 23.3985 24 18.2737 24 12.0301Z"
|
|
26
|
-
}));
|
|
27
|
-
};
|
|
28
|
-
Facebook24.defaultProps = {
|
|
29
|
-
width: "24",
|
|
30
|
-
height: "24",
|
|
31
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
32
|
-
fill: "none",
|
|
33
|
-
stroke: "none"
|
|
34
|
-
};
|
|
35
|
-
var Instagram24 = function Instagram24(props) {
|
|
36
|
-
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
37
|
-
d: "M6.96 0H17.04C20.88 0 24 3.12 24 6.96V17.04C24 18.8859 23.2667 20.6562 21.9615 21.9615C20.6562 23.2667 18.8859 24 17.04 24H6.96C3.12 24 0 20.88 0 17.04V6.96C0 5.11409 0.733284 3.34379 2.03854 2.03854C3.34379 0.733284 5.11409 0 6.96 0ZM6.72 2.4C5.57427 2.4 4.47546 2.85514 3.6653 3.6653C2.85514 4.47546 2.4 5.57427 2.4 6.72V17.28C2.4 19.668 4.332 21.6 6.72 21.6H17.28C18.4257 21.6 19.5245 21.1449 20.3347 20.3347C21.1449 19.5245 21.6 18.4257 21.6 17.28V6.72C21.6 4.332 19.668 2.4 17.28 2.4H6.72ZM18.3 4.2C18.6978 4.2 19.0794 4.35804 19.3607 4.63934C19.642 4.92064 19.8 5.30218 19.8 5.7C19.8 6.09783 19.642 6.47936 19.3607 6.76066C19.0794 7.04197 18.6978 7.2 18.3 7.2C17.9022 7.2 17.5206 7.04197 17.2393 6.76066C16.958 6.47936 16.8 6.09783 16.8 5.7C16.8 5.30218 16.958 4.92064 17.2393 4.63934C17.5206 4.35804 17.9022 4.2 18.3 4.2ZM12 6C13.5913 6 15.1174 6.63214 16.2426 7.75736C17.3679 8.88258 18 10.4087 18 12C18 13.5913 17.3679 15.1174 16.2426 16.2426C15.1174 17.3679 13.5913 18 12 18C10.4087 18 8.88258 17.3679 7.75736 16.2426C6.63214 15.1174 6 13.5913 6 12C6 10.4087 6.63214 8.88258 7.75736 7.75736C8.88258 6.63214 10.4087 6 12 6ZM12 8.4C11.0452 8.4 10.1295 8.77928 9.45442 9.45442C8.77928 10.1295 8.4 11.0452 8.4 12C8.4 12.9548 8.77928 13.8705 9.45442 14.5456C10.1295 15.2207 11.0452 15.6 12 15.6C12.9548 15.6 13.8705 15.2207 14.5456 14.5456C15.2207 13.8705 15.6 12.9548 15.6 12C15.6 11.0452 15.2207 10.1295 14.5456 9.45442C13.8705 8.77928 12.9548 8.4 12 8.4Z"
|
|
38
|
-
}));
|
|
39
|
-
};
|
|
40
|
-
Instagram24.defaultProps = {
|
|
41
|
-
width: "24",
|
|
42
|
-
height: "24",
|
|
43
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
44
|
-
fill: "none",
|
|
45
|
-
stroke: "none"
|
|
46
|
-
};
|
|
47
|
-
var DoubleArrowRight24 = function DoubleArrowRight24(props) {
|
|
48
|
-
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
49
|
-
d: "M17 12C17 12.2305 16.9233 12.4271 16.764 12.6034L12.1622 17.7763C12.0383 17.9254 11.8732 18 11.6844 18C11.3009 18 11 17.661 11 17.2136C11 16.9966 11.0767 16.8 11.2065 16.6508L15.354 12L11.2065 7.34915C11.0767 7.19322 11 6.99661 11 6.77966C11 6.33898 11.3009 6 11.6844 6C11.8732 6 12.0383 6.07458 12.1622 6.22373L16.764 11.3966C16.9233 11.5729 16.9941 11.7695 17 12Z"
|
|
50
|
-
}), /*#__PURE__*/React__default.default.createElement("path", {
|
|
51
|
-
d: "M13 12C13 12.2305 12.9233 12.4271 12.764 12.6034L8.16224 17.7763C8.03835 17.9254 7.87316 18 7.68437 18C7.30089 18 7 17.661 7 17.2136C7 16.9966 7.0767 16.8 7.20649 16.6508L11.354 12L7.20649 7.34915C7.0767 7.19322 7 6.99661 7 6.77966C7 6.33898 7.30089 6 7.68437 6C7.87316 6 8.03835 6.07458 8.16224 6.22373L12.764 11.3966C12.9233 11.5729 12.9941 11.7695 13 12Z"
|
|
52
|
-
}));
|
|
53
|
-
};
|
|
54
|
-
DoubleArrowRight24.defaultProps = {
|
|
55
|
-
width: "24",
|
|
56
|
-
height: "24",
|
|
57
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
58
|
-
fill: "none",
|
|
59
|
-
stroke: "none"
|
|
60
|
-
};
|
|
61
|
-
var DoubleArrowLeft24 = function DoubleArrowLeft24(props) {
|
|
62
|
-
return /*#__PURE__*/React__default.default.createElement("svg", props, /*#__PURE__*/React__default.default.createElement("path", {
|
|
63
|
-
d: "M7 12C7 12.2305 7.0767 12.4271 7.23599 12.6034L11.8378 17.7763C11.9617 17.9254 12.1268 18 12.3156 18C12.6991 18 13 17.661 13 17.2136C13 16.9966 12.9233 16.8 12.7935 16.6508L8.64602 12L12.7935 7.34915C12.9233 7.19322 13 6.99661 13 6.77966C13 6.33898 12.6991 6 12.3156 6C12.1268 6 11.9617 6.07458 11.8378 6.22373L7.23599 11.3966C7.0767 11.5729 7.0059 11.7695 7 12Z"
|
|
64
|
-
}), /*#__PURE__*/React__default.default.createElement("path", {
|
|
65
|
-
d: "M11 12C11 12.2305 11.0767 12.4271 11.236 12.6034L15.8378 17.7763C15.9617 17.9254 16.1268 18 16.3156 18C16.6991 18 17 17.661 17 17.2136C17 16.9966 16.9233 16.8 16.7935 16.6508L12.646 12L16.7935 7.34915C16.9233 7.19322 17 6.99661 17 6.77966C17 6.33898 16.6991 6 16.3156 6C16.1268 6 15.9617 6.07458 15.8378 6.22373L11.236 11.3966C11.0767 11.5729 11.0059 11.7695 11 12Z"
|
|
66
|
-
}));
|
|
67
|
-
};
|
|
68
|
-
DoubleArrowLeft24.defaultProps = {
|
|
69
|
-
width: "24",
|
|
70
|
-
height: "24",
|
|
71
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
72
|
-
fill: "none",
|
|
73
|
-
stroke: "none"
|
|
74
|
-
};
|
|
75
|
-
var icon16 = {
|
|
76
|
-
chevron_down: ChevronDown16
|
|
77
|
-
};
|
|
78
|
-
var icon24 = {
|
|
79
|
-
facebook: Facebook24,
|
|
80
|
-
instagram: Instagram24,
|
|
81
|
-
doubleArrowRight: DoubleArrowRight24,
|
|
82
|
-
doubleArrowLeft: DoubleArrowLeft24
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
exports.icon16 = icon16;
|
|
86
|
-
exports.icon24 = icon24;
|