@xelto.npm/xc2-lib 0.0.24 → 0.0.26
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/cjs/index.js +2402 -304
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/foundations/icon/Icon.d.ts +9 -0
- package/dist/cjs/types/components/foundations/icon/index.d.ts +1 -0
- package/dist/cjs/types/components/index.d.ts +1 -0
- package/dist/esm/index.js +2402 -305
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/foundations/icon/Icon.d.ts +9 -0
- package/dist/esm/types/components/foundations/icon/index.d.ts +1 -0
- package/dist/esm/types/components/index.d.ts +1 -0
- package/dist/index.d.ts +9 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -1359,8 +1359,8 @@ function requireReactJsxRuntime_development () {
|
|
|
1359
1359
|
}
|
|
1360
1360
|
} (jsxRuntime));
|
|
1361
1361
|
|
|
1362
|
-
function _extends$
|
|
1363
|
-
_extends$
|
|
1362
|
+
function _extends$19() {
|
|
1363
|
+
_extends$19 = Object.assign ? Object.assign.bind() : function (target) {
|
|
1364
1364
|
for (var i = 1; i < arguments.length; i++) {
|
|
1365
1365
|
var source = arguments[i];
|
|
1366
1366
|
for (var key in source) {
|
|
@@ -1371,7 +1371,7 @@ function _extends$t() {
|
|
|
1371
1371
|
}
|
|
1372
1372
|
return target;
|
|
1373
1373
|
};
|
|
1374
|
-
return _extends$
|
|
1374
|
+
return _extends$19.apply(this, arguments);
|
|
1375
1375
|
}
|
|
1376
1376
|
|
|
1377
1377
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
@@ -1387,7 +1387,7 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
1387
1387
|
return target;
|
|
1388
1388
|
}
|
|
1389
1389
|
|
|
1390
|
-
var _extends$
|
|
1390
|
+
var _extends$18 = {exports: {}};
|
|
1391
1391
|
|
|
1392
1392
|
(function (module) {
|
|
1393
1393
|
function _extends() {
|
|
@@ -1405,7 +1405,7 @@ var _extends$s = {exports: {}};
|
|
|
1405
1405
|
return _extends.apply(this, arguments);
|
|
1406
1406
|
}
|
|
1407
1407
|
module.exports = _extends, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
1408
|
-
} (_extends$
|
|
1408
|
+
} (_extends$18));
|
|
1409
1409
|
|
|
1410
1410
|
function memoize$1(fn) {
|
|
1411
1411
|
var cache = Object.create(null);
|
|
@@ -3805,7 +3805,7 @@ var createStyled$1 = function createStyled(tag, options) {
|
|
|
3805
3805
|
});
|
|
3806
3806
|
|
|
3807
3807
|
Styled.withComponent = function (nextTag, nextOptions) {
|
|
3808
|
-
return createStyled(nextTag, _extends$
|
|
3808
|
+
return createStyled(nextTag, _extends$19({}, options, nextOptions, {
|
|
3809
3809
|
shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
|
|
3810
3810
|
})).apply(void 0, styles);
|
|
3811
3811
|
};
|
|
@@ -4840,7 +4840,7 @@ function isPlainObject(item) {
|
|
|
4840
4840
|
function deepmerge(target, source, options = {
|
|
4841
4841
|
clone: true
|
|
4842
4842
|
}) {
|
|
4843
|
-
const output = options.clone ? _extends$
|
|
4843
|
+
const output = options.clone ? _extends$19({}, target) : target;
|
|
4844
4844
|
if (isPlainObject(target) && isPlainObject(source)) {
|
|
4845
4845
|
Object.keys(source).forEach(key => {
|
|
4846
4846
|
// Avoid prototype pollution
|
|
@@ -4946,7 +4946,7 @@ function exactProp(propTypes) {
|
|
|
4946
4946
|
if (process.env.NODE_ENV === 'production') {
|
|
4947
4947
|
return propTypes;
|
|
4948
4948
|
}
|
|
4949
|
-
return _extends$
|
|
4949
|
+
return _extends$19({}, propTypes, {
|
|
4950
4950
|
[specialProperty]: props => {
|
|
4951
4951
|
const unsupportedProps = Object.keys(props).filter(prop => !propTypes.hasOwnProperty(prop));
|
|
4952
4952
|
if (unsupportedProps.length > 0) {
|
|
@@ -5574,7 +5574,7 @@ process.env.NODE_ENV === 'production' ? validatorNoop : validator;
|
|
|
5574
5574
|
* @returns {object} resolved props
|
|
5575
5575
|
*/
|
|
5576
5576
|
function resolveProps(defaultProps, props) {
|
|
5577
|
-
const output = _extends$
|
|
5577
|
+
const output = _extends$19({}, props);
|
|
5578
5578
|
Object.keys(defaultProps).forEach(propName => {
|
|
5579
5579
|
if (output[propName] === undefined) {
|
|
5580
5580
|
output[propName] = defaultProps[propName];
|
|
@@ -6502,12 +6502,12 @@ function extendSxProp(props) {
|
|
|
6502
6502
|
if (!isPlainObject(result)) {
|
|
6503
6503
|
return systemProps;
|
|
6504
6504
|
}
|
|
6505
|
-
return _extends$
|
|
6505
|
+
return _extends$19({}, systemProps, result);
|
|
6506
6506
|
};
|
|
6507
6507
|
} else {
|
|
6508
|
-
finalSx = _extends$
|
|
6508
|
+
finalSx = _extends$19({}, systemProps, inSx);
|
|
6509
6509
|
}
|
|
6510
|
-
return _extends$
|
|
6510
|
+
return _extends$19({}, otherProps, {
|
|
6511
6511
|
sx: finalSx
|
|
6512
6512
|
});
|
|
6513
6513
|
}
|
|
@@ -6523,7 +6523,7 @@ const sortBreakpointsValues = values => {
|
|
|
6523
6523
|
// Sort in ascending order
|
|
6524
6524
|
breakpointsAsArray.sort((breakpoint1, breakpoint2) => breakpoint1.val - breakpoint2.val);
|
|
6525
6525
|
return breakpointsAsArray.reduce((acc, obj) => {
|
|
6526
|
-
return _extends$
|
|
6526
|
+
return _extends$19({}, acc, {
|
|
6527
6527
|
[obj.key]: obj.val
|
|
6528
6528
|
});
|
|
6529
6529
|
}, {});
|
|
@@ -6581,7 +6581,7 @@ function createBreakpoints(breakpoints) {
|
|
|
6581
6581
|
}
|
|
6582
6582
|
return between(key, keys[keys.indexOf(key) + 1]).replace('@media', '@media not all and');
|
|
6583
6583
|
}
|
|
6584
|
-
return _extends$
|
|
6584
|
+
return _extends$19({
|
|
6585
6585
|
keys,
|
|
6586
6586
|
values: sortedValues,
|
|
6587
6587
|
up,
|
|
@@ -6643,11 +6643,11 @@ function createTheme$1(options = {}, ...args) {
|
|
|
6643
6643
|
direction: 'ltr',
|
|
6644
6644
|
components: {},
|
|
6645
6645
|
// Inject component definitions.
|
|
6646
|
-
palette: _extends$
|
|
6646
|
+
palette: _extends$19({
|
|
6647
6647
|
mode: 'light'
|
|
6648
6648
|
}, paletteInput),
|
|
6649
6649
|
spacing,
|
|
6650
|
-
shape: _extends$
|
|
6650
|
+
shape: _extends$19({}, shape, shapeInput)
|
|
6651
6651
|
}, other);
|
|
6652
6652
|
muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
|
|
6653
6653
|
return muiTheme;
|
|
@@ -6681,7 +6681,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
|
|
|
6681
6681
|
}
|
|
6682
6682
|
return mergedTheme;
|
|
6683
6683
|
}
|
|
6684
|
-
return _extends$
|
|
6684
|
+
return _extends$19({}, outerTheme, localTheme);
|
|
6685
6685
|
}
|
|
6686
6686
|
|
|
6687
6687
|
/**
|
|
@@ -6758,7 +6758,7 @@ function createBox(options = {}) {
|
|
|
6758
6758
|
component = 'div'
|
|
6759
6759
|
} = _extendSxProp,
|
|
6760
6760
|
other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$f);
|
|
6761
|
-
return /*#__PURE__*/jsxRuntime.exports.jsx(BoxRoot, _extends$
|
|
6761
|
+
return /*#__PURE__*/jsxRuntime.exports.jsx(BoxRoot, _extends$19({
|
|
6762
6762
|
as: component,
|
|
6763
6763
|
ref: ref,
|
|
6764
6764
|
className: clsx(className, generateClassName ? generateClassName(defaultClassName) : defaultClassName),
|
|
@@ -6888,7 +6888,7 @@ function createStyled(input = {}) {
|
|
|
6888
6888
|
} = input;
|
|
6889
6889
|
const systemSx = props => {
|
|
6890
6890
|
const theme = isEmpty(props.theme) ? defaultTheme : props.theme;
|
|
6891
|
-
return styleFunctionSx$1(_extends$
|
|
6891
|
+
return styleFunctionSx$1(_extends$19({}, props, {
|
|
6892
6892
|
theme
|
|
6893
6893
|
}));
|
|
6894
6894
|
};
|
|
@@ -6924,7 +6924,7 @@ function createStyled(input = {}) {
|
|
|
6924
6924
|
// for string (html) tag, preserve the behavior in emotion & styled-components.
|
|
6925
6925
|
shouldForwardPropOption = undefined;
|
|
6926
6926
|
}
|
|
6927
|
-
const defaultStyledResolver = styled$2(tag, _extends$
|
|
6927
|
+
const defaultStyledResolver = styled$2(tag, _extends$19({
|
|
6928
6928
|
shouldForwardProp: shouldForwardPropOption,
|
|
6929
6929
|
label
|
|
6930
6930
|
}, options));
|
|
@@ -6938,7 +6938,7 @@ function createStyled(input = {}) {
|
|
|
6938
6938
|
theme: themeInput
|
|
6939
6939
|
} = _ref,
|
|
6940
6940
|
other = _objectWithoutPropertiesLoose(_ref, _excluded2$1);
|
|
6941
|
-
return stylesArg(_extends$
|
|
6941
|
+
return stylesArg(_extends$19({
|
|
6942
6942
|
theme: isEmpty(themeInput) ? defaultTheme : themeInput
|
|
6943
6943
|
}, other));
|
|
6944
6944
|
} : stylesArg;
|
|
@@ -6951,7 +6951,7 @@ function createStyled(input = {}) {
|
|
|
6951
6951
|
if (styleOverrides) {
|
|
6952
6952
|
const resolvedStyleOverrides = {};
|
|
6953
6953
|
Object.entries(styleOverrides).forEach(([slotKey, slotStyle]) => {
|
|
6954
|
-
resolvedStyleOverrides[slotKey] = typeof slotStyle === 'function' ? slotStyle(_extends$
|
|
6954
|
+
resolvedStyleOverrides[slotKey] = typeof slotStyle === 'function' ? slotStyle(_extends$19({}, props, {
|
|
6955
6955
|
theme
|
|
6956
6956
|
})) : slotStyle;
|
|
6957
6957
|
});
|
|
@@ -6986,7 +6986,7 @@ function createStyled(input = {}) {
|
|
|
6986
6986
|
theme: themeInput
|
|
6987
6987
|
} = _ref2,
|
|
6988
6988
|
other = _objectWithoutPropertiesLoose(_ref2, _excluded3);
|
|
6989
|
-
return styleArg(_extends$
|
|
6989
|
+
return styleArg(_extends$19({
|
|
6990
6990
|
theme: isEmpty(themeInput) ? defaultTheme : themeInput
|
|
6991
6991
|
}, other));
|
|
6992
6992
|
};
|
|
@@ -7635,7 +7635,7 @@ function useCurrentColorScheme(options) {
|
|
|
7635
7635
|
} catch (e) {
|
|
7636
7636
|
// Unsupported
|
|
7637
7637
|
}
|
|
7638
|
-
return _extends$
|
|
7638
|
+
return _extends$19({}, currentState, {
|
|
7639
7639
|
mode: newMode,
|
|
7640
7640
|
systemMode: getSystemMode(newMode)
|
|
7641
7641
|
});
|
|
@@ -7650,7 +7650,7 @@ function useCurrentColorScheme(options) {
|
|
|
7650
7650
|
} catch (e) {
|
|
7651
7651
|
// Unsupported
|
|
7652
7652
|
}
|
|
7653
|
-
return _extends$
|
|
7653
|
+
return _extends$19({}, currentState, {
|
|
7654
7654
|
lightColorScheme: defaultLightColorScheme,
|
|
7655
7655
|
darkColorScheme: defaultDarkColorScheme
|
|
7656
7656
|
});
|
|
@@ -7660,7 +7660,7 @@ function useCurrentColorScheme(options) {
|
|
|
7660
7660
|
console.error(`\`${value}\` does not exist in \`theme.colorSchemes\`.`);
|
|
7661
7661
|
} else {
|
|
7662
7662
|
setState(currentState => {
|
|
7663
|
-
const newState = _extends$
|
|
7663
|
+
const newState = _extends$19({}, currentState);
|
|
7664
7664
|
processState(currentState, mode => {
|
|
7665
7665
|
try {
|
|
7666
7666
|
localStorage.setItem(`${colorSchemeStorageKey}-${mode}`, value);
|
|
@@ -7679,7 +7679,7 @@ function useCurrentColorScheme(options) {
|
|
|
7679
7679
|
}
|
|
7680
7680
|
} else {
|
|
7681
7681
|
setState(currentState => {
|
|
7682
|
-
const newState = _extends$
|
|
7682
|
+
const newState = _extends$19({}, currentState);
|
|
7683
7683
|
const newLightColorScheme = value.light === null ? defaultLightColorScheme : value.light;
|
|
7684
7684
|
const newDarkColorScheme = value.dark === null ? defaultDarkColorScheme : value.dark;
|
|
7685
7685
|
if (newLightColorScheme) {
|
|
@@ -7712,7 +7712,7 @@ function useCurrentColorScheme(options) {
|
|
|
7712
7712
|
}, [joinedColorSchemes, colorSchemeStorageKey, defaultLightColorScheme, defaultDarkColorScheme]);
|
|
7713
7713
|
const handleMediaQuery = React.useCallback(e => {
|
|
7714
7714
|
if (state.mode === 'system') {
|
|
7715
|
-
setState(currentState => _extends$
|
|
7715
|
+
setState(currentState => _extends$19({}, currentState, {
|
|
7716
7716
|
systemMode: e != null && e.matches ? 'dark' : 'light'
|
|
7717
7717
|
}));
|
|
7718
7718
|
}
|
|
@@ -7761,7 +7761,7 @@ function useCurrentColorScheme(options) {
|
|
|
7761
7761
|
}
|
|
7762
7762
|
return undefined;
|
|
7763
7763
|
}, [setColorScheme, setMode, modeStorageKey, colorSchemeStorageKey, joinedColorSchemes, defaultMode, storageWindow]);
|
|
7764
|
-
return _extends$
|
|
7764
|
+
return _extends$19({}, state, {
|
|
7765
7765
|
colorScheme,
|
|
7766
7766
|
setMode,
|
|
7767
7767
|
setColorScheme
|
|
@@ -7881,7 +7881,7 @@ function createCssVarsProvider(options) {
|
|
|
7881
7881
|
});
|
|
7882
7882
|
|
|
7883
7883
|
// 3. Start composing the theme object
|
|
7884
|
-
const theme = _extends$
|
|
7884
|
+
const theme = _extends$19({}, restThemeProp, {
|
|
7885
7885
|
components,
|
|
7886
7886
|
colorSchemes,
|
|
7887
7887
|
cssVarPrefix,
|
|
@@ -7908,7 +7908,7 @@ function createCssVarsProvider(options) {
|
|
|
7908
7908
|
Object.keys(scheme).forEach(schemeKey => {
|
|
7909
7909
|
if (scheme[schemeKey] && typeof scheme[schemeKey] === 'object') {
|
|
7910
7910
|
// shallow merge the 1st level structure of the theme.
|
|
7911
|
-
theme[schemeKey] = _extends$
|
|
7911
|
+
theme[schemeKey] = _extends$19({}, theme[schemeKey], scheme[schemeKey]);
|
|
7912
7912
|
} else {
|
|
7913
7913
|
theme[schemeKey] = scheme[schemeKey];
|
|
7914
7914
|
}
|
|
@@ -8080,7 +8080,7 @@ function createCssVarsProvider(options) {
|
|
|
8080
8080
|
} : void 0;
|
|
8081
8081
|
const defaultLightColorScheme = typeof designSystemColorScheme === 'string' ? designSystemColorScheme : designSystemColorScheme.light;
|
|
8082
8082
|
const defaultDarkColorScheme = typeof designSystemColorScheme === 'string' ? designSystemColorScheme : designSystemColorScheme.dark;
|
|
8083
|
-
const getInitColorSchemeScript$1 = params => getInitColorSchemeScript(_extends$
|
|
8083
|
+
const getInitColorSchemeScript$1 = params => getInitColorSchemeScript(_extends$19({
|
|
8084
8084
|
attribute: defaultAttribute,
|
|
8085
8085
|
colorSchemeStorageKey: defaultColorSchemeStorageKey,
|
|
8086
8086
|
defaultMode: designSystemMode,
|
|
@@ -8160,7 +8160,7 @@ function createContainer(options = {}) {
|
|
|
8160
8160
|
const ContainerRoot = createStyledComponent(({
|
|
8161
8161
|
theme,
|
|
8162
8162
|
ownerState
|
|
8163
|
-
}) => _extends$
|
|
8163
|
+
}) => _extends$19({
|
|
8164
8164
|
width: '100%',
|
|
8165
8165
|
marginLeft: 'auto',
|
|
8166
8166
|
boxSizing: 'border-box',
|
|
@@ -8190,7 +8190,7 @@ function createContainer(options = {}) {
|
|
|
8190
8190
|
}, {}), ({
|
|
8191
8191
|
theme,
|
|
8192
8192
|
ownerState
|
|
8193
|
-
}) => _extends$
|
|
8193
|
+
}) => _extends$19({}, ownerState.maxWidth === 'xs' && {
|
|
8194
8194
|
// @ts-ignore module augmentation fails if custom breakpoints are used
|
|
8195
8195
|
[theme.breakpoints.up('xs')]: {
|
|
8196
8196
|
// @ts-ignore module augmentation fails if custom breakpoints are used
|
|
@@ -8215,7 +8215,7 @@ function createContainer(options = {}) {
|
|
|
8215
8215
|
maxWidth = 'lg'
|
|
8216
8216
|
} = props,
|
|
8217
8217
|
other = _objectWithoutPropertiesLoose(props, _excluded$b);
|
|
8218
|
-
const ownerState = _extends$
|
|
8218
|
+
const ownerState = _extends$19({}, props, {
|
|
8219
8219
|
component,
|
|
8220
8220
|
disableGutters,
|
|
8221
8221
|
fixed,
|
|
@@ -8227,7 +8227,7 @@ function createContainer(options = {}) {
|
|
|
8227
8227
|
return (
|
|
8228
8228
|
/*#__PURE__*/
|
|
8229
8229
|
// @ts-ignore theme is injected by the styled util
|
|
8230
|
-
jsxRuntime.exports.jsx(ContainerRoot, _extends$
|
|
8230
|
+
jsxRuntime.exports.jsx(ContainerRoot, _extends$19({
|
|
8231
8231
|
as: component
|
|
8232
8232
|
// @ts-ignore module augmentation fails if custom breakpoints are used
|
|
8233
8233
|
,
|
|
@@ -8472,10 +8472,10 @@ const generateGridDirectionStyles = ({
|
|
|
8472
8472
|
const generateGridStyles = ({
|
|
8473
8473
|
ownerState
|
|
8474
8474
|
}) => {
|
|
8475
|
-
return _extends$
|
|
8475
|
+
return _extends$19({
|
|
8476
8476
|
minWidth: 0,
|
|
8477
8477
|
boxSizing: 'border-box'
|
|
8478
|
-
}, ownerState.container ? _extends$
|
|
8478
|
+
}, ownerState.container ? _extends$19({
|
|
8479
8479
|
display: 'flex',
|
|
8480
8480
|
flexWrap: 'wrap'
|
|
8481
8481
|
}, ownerState.wrap && ownerState.wrap !== 'wrap' && {
|
|
@@ -8484,14 +8484,14 @@ const generateGridStyles = ({
|
|
|
8484
8484
|
margin: `calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2)`
|
|
8485
8485
|
}, ownerState.disableEqualOverflow && {
|
|
8486
8486
|
margin: `calc(var(--Grid-rowSpacing) * -1) 0px 0px calc(var(--Grid-columnSpacing) * -1)`
|
|
8487
|
-
}, ownerState.nested ? _extends$
|
|
8487
|
+
}, ownerState.nested ? _extends$19({
|
|
8488
8488
|
padding: `calc(var(--Grid-nested-rowSpacing) / 2) calc(var(--Grid-nested-columnSpacing) / 2)`
|
|
8489
8489
|
}, (ownerState.disableEqualOverflow || ownerState.parentDisableEqualOverflow) && {
|
|
8490
8490
|
padding: `calc(var(--Grid-nested-rowSpacing)) 0px 0px calc(var(--Grid-nested-columnSpacing))`
|
|
8491
8491
|
}) : {
|
|
8492
8492
|
'--Grid-nested-rowSpacing': 'var(--Grid-rowSpacing)',
|
|
8493
8493
|
'--Grid-nested-columnSpacing': 'var(--Grid-columnSpacing)'
|
|
8494
|
-
}) : _extends$
|
|
8494
|
+
}) : _extends$19({
|
|
8495
8495
|
padding: `calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2)`
|
|
8496
8496
|
}, ownerState.disableEqualOverflow && {
|
|
8497
8497
|
padding: `calc(var(--Grid-rowSpacing)) 0px 0px calc(var(--Grid-columnSpacing))`
|
|
@@ -8618,7 +8618,7 @@ function createGrid(options = {}) {
|
|
|
8618
8618
|
const spacing = (_inProps$spacing = inProps.spacing) != null ? _inProps$spacing : nested ? undefined : spacingProp;
|
|
8619
8619
|
const rowSpacing = (_ref = (_inProps$rowSpacing = inProps.rowSpacing) != null ? _inProps$rowSpacing : inProps.spacing) != null ? _ref : nested ? undefined : rowSpacingProp;
|
|
8620
8620
|
const columnSpacing = (_ref2 = (_inProps$columnSpacin = inProps.columnSpacing) != null ? _inProps$columnSpacin : inProps.spacing) != null ? _ref2 : nested ? undefined : columnSpacingProp;
|
|
8621
|
-
const ownerState = _extends$
|
|
8621
|
+
const ownerState = _extends$19({}, props, {
|
|
8622
8622
|
nested,
|
|
8623
8623
|
columns,
|
|
8624
8624
|
container,
|
|
@@ -8635,7 +8635,7 @@ function createGrid(options = {}) {
|
|
|
8635
8635
|
});
|
|
8636
8636
|
|
|
8637
8637
|
const classes = useUtilityClasses(ownerState, theme);
|
|
8638
|
-
let result = /*#__PURE__*/jsxRuntime.exports.jsx(GridRoot, _extends$
|
|
8638
|
+
let result = /*#__PURE__*/jsxRuntime.exports.jsx(GridRoot, _extends$19({
|
|
8639
8639
|
ref: ref,
|
|
8640
8640
|
as: component,
|
|
8641
8641
|
ownerState: ownerState,
|
|
@@ -8895,7 +8895,7 @@ const style = ({
|
|
|
8895
8895
|
ownerState,
|
|
8896
8896
|
theme
|
|
8897
8897
|
}) => {
|
|
8898
|
-
let styles = _extends$
|
|
8898
|
+
let styles = _extends$19({
|
|
8899
8899
|
display: 'flex',
|
|
8900
8900
|
flexDirection: 'column'
|
|
8901
8901
|
}, handleBreakpoints({
|
|
@@ -8977,7 +8977,7 @@ function createStack(options = {}) {
|
|
|
8977
8977
|
spacing
|
|
8978
8978
|
};
|
|
8979
8979
|
const classes = useUtilityClasses();
|
|
8980
|
-
return /*#__PURE__*/jsxRuntime.exports.jsx(StackRoot, _extends$
|
|
8980
|
+
return /*#__PURE__*/jsxRuntime.exports.jsx(StackRoot, _extends$19({
|
|
8981
8981
|
as: component,
|
|
8982
8982
|
ownerState: ownerState,
|
|
8983
8983
|
ref: ref,
|
|
@@ -9041,7 +9041,7 @@ process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ =
|
|
|
9041
9041
|
generateUtilityClasses('MuiStack', ['root']);
|
|
9042
9042
|
|
|
9043
9043
|
function createMixins(breakpoints, mixins) {
|
|
9044
|
-
return _extends$
|
|
9044
|
+
return _extends$19({
|
|
9045
9045
|
toolbar: {
|
|
9046
9046
|
minHeight: 56,
|
|
9047
9047
|
[breakpoints.up('xs')]: {
|
|
@@ -9377,7 +9377,7 @@ function createPalette(palette) {
|
|
|
9377
9377
|
lightShade = 300,
|
|
9378
9378
|
darkShade = 700
|
|
9379
9379
|
}) => {
|
|
9380
|
-
color = _extends$
|
|
9380
|
+
color = _extends$19({}, color);
|
|
9381
9381
|
if (!color.main && color[mainShade]) {
|
|
9382
9382
|
color.main = color[mainShade];
|
|
9383
9383
|
}
|
|
@@ -9417,9 +9417,9 @@ const theme2 = createTheme({ palette: {
|
|
|
9417
9417
|
console.error(`MUI: The palette mode \`${mode}\` is not supported.`);
|
|
9418
9418
|
}
|
|
9419
9419
|
}
|
|
9420
|
-
const paletteOutput = deepmerge(_extends$
|
|
9420
|
+
const paletteOutput = deepmerge(_extends$19({
|
|
9421
9421
|
// A collection of common colors.
|
|
9422
|
-
common: _extends$
|
|
9422
|
+
common: _extends$19({}, common),
|
|
9423
9423
|
// prevent mutable object.
|
|
9424
9424
|
// The palette mode, can be light or dark.
|
|
9425
9425
|
mode,
|
|
@@ -9515,7 +9515,7 @@ function createTypography(palette, typography) {
|
|
|
9515
9515
|
}
|
|
9516
9516
|
const coef = fontSize / 14;
|
|
9517
9517
|
const pxToRem = pxToRem2 || (size => `${size / htmlFontSize * coef}rem`);
|
|
9518
|
-
const buildVariant = (fontWeight, size, lineHeight, letterSpacing, casing) => _extends$
|
|
9518
|
+
const buildVariant = (fontWeight, size, lineHeight, letterSpacing, casing) => _extends$19({
|
|
9519
9519
|
fontFamily,
|
|
9520
9520
|
fontWeight,
|
|
9521
9521
|
fontSize: pxToRem(size),
|
|
@@ -9539,7 +9539,7 @@ function createTypography(palette, typography) {
|
|
|
9539
9539
|
caption: buildVariant(fontWeightRegular, 12, 1.66, 0.4),
|
|
9540
9540
|
overline: buildVariant(fontWeightRegular, 12, 2.66, 1, caseAllCaps)
|
|
9541
9541
|
};
|
|
9542
|
-
return deepmerge(_extends$
|
|
9542
|
+
return deepmerge(_extends$19({
|
|
9543
9543
|
htmlFontSize,
|
|
9544
9544
|
pxToRem,
|
|
9545
9545
|
fontFamily,
|
|
@@ -9606,8 +9606,8 @@ function getAutoHeightDuration(height) {
|
|
|
9606
9606
|
return Math.round((4 + 15 * constant ** 0.25 + constant / 5) * 10);
|
|
9607
9607
|
}
|
|
9608
9608
|
function createTransitions(inputTransitions) {
|
|
9609
|
-
const mergedEasing = _extends$
|
|
9610
|
-
const mergedDuration = _extends$
|
|
9609
|
+
const mergedEasing = _extends$19({}, easing, inputTransitions.easing);
|
|
9610
|
+
const mergedDuration = _extends$19({}, duration, inputTransitions.duration);
|
|
9611
9611
|
const create = (props = ['all'], options = {}) => {
|
|
9612
9612
|
const {
|
|
9613
9613
|
duration: durationOption = mergedDuration.standard,
|
|
@@ -9638,7 +9638,7 @@ function createTransitions(inputTransitions) {
|
|
|
9638
9638
|
}
|
|
9639
9639
|
return (Array.isArray(props) ? props : [props]).map(animatedProp => `${animatedProp} ${typeof durationOption === 'string' ? durationOption : formatMs(durationOption)} ${easingOption} ${typeof delay === 'string' ? delay : formatMs(delay)}`).join(',');
|
|
9640
9640
|
};
|
|
9641
|
-
return _extends$
|
|
9641
|
+
return _extends$19({
|
|
9642
9642
|
getAutoHeightDuration,
|
|
9643
9643
|
create
|
|
9644
9644
|
}, inputTransitions, {
|
|
@@ -9682,7 +9682,7 @@ Please use another name.` : formatMuiErrorMessage(18));
|
|
|
9682
9682
|
shadows: shadows.slice(),
|
|
9683
9683
|
typography: createTypography(palette, typographyInput),
|
|
9684
9684
|
transitions: createTransitions(transitionsInput),
|
|
9685
|
-
zIndex: _extends$
|
|
9685
|
+
zIndex: _extends$19({}, zIndex)
|
|
9686
9686
|
});
|
|
9687
9687
|
muiTheme = deepmerge(muiTheme, other);
|
|
9688
9688
|
muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
|
|
@@ -9786,7 +9786,7 @@ function extendTheme(options = {}, ...args) {
|
|
|
9786
9786
|
} = options,
|
|
9787
9787
|
input = _objectWithoutPropertiesLoose(options, _excluded$4);
|
|
9788
9788
|
const getCssVar = createGetCssVar(cssVarPrefix);
|
|
9789
|
-
const _createThemeWithoutVa = createTheme(_extends$
|
|
9789
|
+
const _createThemeWithoutVa = createTheme(_extends$19({}, input, colorSchemesInput.light && {
|
|
9790
9790
|
palette: (_colorSchemesInput$li = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li.palette
|
|
9791
9791
|
})),
|
|
9792
9792
|
{
|
|
@@ -9796,17 +9796,17 @@ function extendTheme(options = {}, ...args) {
|
|
|
9796
9796
|
const {
|
|
9797
9797
|
palette: darkPalette
|
|
9798
9798
|
} = createTheme({
|
|
9799
|
-
palette: _extends$
|
|
9799
|
+
palette: _extends$19({
|
|
9800
9800
|
mode: 'dark'
|
|
9801
9801
|
}, (_colorSchemesInput$da = colorSchemesInput.dark) == null ? void 0 : _colorSchemesInput$da.palette)
|
|
9802
9802
|
});
|
|
9803
|
-
let theme = _extends$
|
|
9803
|
+
let theme = _extends$19({}, muiTheme, {
|
|
9804
9804
|
cssVarPrefix,
|
|
9805
9805
|
getCssVar,
|
|
9806
|
-
colorSchemes: _extends$
|
|
9807
|
-
light: _extends$
|
|
9806
|
+
colorSchemes: _extends$19({}, colorSchemesInput, {
|
|
9807
|
+
light: _extends$19({}, colorSchemesInput.light, {
|
|
9808
9808
|
palette: lightPalette,
|
|
9809
|
-
opacity: _extends$
|
|
9809
|
+
opacity: _extends$19({
|
|
9810
9810
|
inputPlaceholder: 0.42,
|
|
9811
9811
|
inputUnderline: 0.42,
|
|
9812
9812
|
switchTrackDisabled: 0.12,
|
|
@@ -9814,9 +9814,9 @@ function extendTheme(options = {}, ...args) {
|
|
|
9814
9814
|
}, (_colorSchemesInput$li2 = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li2.opacity),
|
|
9815
9815
|
overlays: ((_colorSchemesInput$li3 = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li3.overlays) || []
|
|
9816
9816
|
}),
|
|
9817
|
-
dark: _extends$
|
|
9817
|
+
dark: _extends$19({}, colorSchemesInput.dark, {
|
|
9818
9818
|
palette: darkPalette,
|
|
9819
|
-
opacity: _extends$
|
|
9819
|
+
opacity: _extends$19({
|
|
9820
9820
|
inputPlaceholder: 0.5,
|
|
9821
9821
|
inputUnderline: 0.7,
|
|
9822
9822
|
switchTrackDisabled: 0.2,
|
|
@@ -10024,7 +10024,7 @@ createCssVarsProvider({
|
|
|
10024
10024
|
dark: 'dark'
|
|
10025
10025
|
},
|
|
10026
10026
|
resolveTheme: theme => {
|
|
10027
|
-
const newTheme = _extends$
|
|
10027
|
+
const newTheme = _extends$19({}, theme, {
|
|
10028
10028
|
typography: createTypography(theme.palette, theme.typography)
|
|
10029
10029
|
});
|
|
10030
10030
|
return newTheme;
|
|
@@ -10129,7 +10129,7 @@ const TypographyRoot = styled('span', {
|
|
|
10129
10129
|
})(({
|
|
10130
10130
|
theme,
|
|
10131
10131
|
ownerState
|
|
10132
|
-
}) => _extends$
|
|
10132
|
+
}) => _extends$19({
|
|
10133
10133
|
margin: 0
|
|
10134
10134
|
}, ownerState.variant && theme.typography[ownerState.variant], ownerState.align !== 'inherit' && {
|
|
10135
10135
|
textAlign: ownerState.align
|
|
@@ -10173,7 +10173,7 @@ const Typography = /*#__PURE__*/React.forwardRef(function Typography(inProps, re
|
|
|
10173
10173
|
name: 'MuiTypography'
|
|
10174
10174
|
});
|
|
10175
10175
|
const color = transformDeprecatedColors(themeProps.color);
|
|
10176
|
-
const props = extendSxProp(_extends$
|
|
10176
|
+
const props = extendSxProp(_extends$19({}, themeProps, {
|
|
10177
10177
|
color
|
|
10178
10178
|
}));
|
|
10179
10179
|
const {
|
|
@@ -10187,7 +10187,7 @@ const Typography = /*#__PURE__*/React.forwardRef(function Typography(inProps, re
|
|
|
10187
10187
|
variantMapping = defaultVariantMapping
|
|
10188
10188
|
} = props,
|
|
10189
10189
|
other = _objectWithoutPropertiesLoose(props, _excluded$3);
|
|
10190
|
-
const ownerState = _extends$
|
|
10190
|
+
const ownerState = _extends$19({}, props, {
|
|
10191
10191
|
align,
|
|
10192
10192
|
color,
|
|
10193
10193
|
className,
|
|
@@ -10200,7 +10200,7 @@ const Typography = /*#__PURE__*/React.forwardRef(function Typography(inProps, re
|
|
|
10200
10200
|
});
|
|
10201
10201
|
const Component = component || (paragraph ? 'p' : variantMapping[variant] || defaultVariantMapping[variant]) || 'span';
|
|
10202
10202
|
const classes = useUtilityClasses$2(ownerState);
|
|
10203
|
-
return /*#__PURE__*/jsxRuntime.exports.jsx(TypographyRoot, _extends$
|
|
10203
|
+
return /*#__PURE__*/jsxRuntime.exports.jsx(TypographyRoot, _extends$19({
|
|
10204
10204
|
as: Component,
|
|
10205
10205
|
ref: ref,
|
|
10206
10206
|
ownerState: ownerState,
|
|
@@ -11476,7 +11476,7 @@ var CSSTransition = /*#__PURE__*/function (_React$Component) {
|
|
|
11476
11476
|
_this$props.classNames;
|
|
11477
11477
|
var props = _objectWithoutPropertiesLoose(_this$props, ["classNames"]);
|
|
11478
11478
|
|
|
11479
|
-
return /*#__PURE__*/React__default.createElement(Transition, _extends$
|
|
11479
|
+
return /*#__PURE__*/React__default.createElement(Transition, _extends$19({}, props, {
|
|
11480
11480
|
onEnter: this.onEnter,
|
|
11481
11481
|
onEntered: this.onEntered,
|
|
11482
11482
|
onEntering: this.onEntering,
|
|
@@ -11492,7 +11492,7 @@ var CSSTransition = /*#__PURE__*/function (_React$Component) {
|
|
|
11492
11492
|
CSSTransition.defaultProps = {
|
|
11493
11493
|
classNames: ''
|
|
11494
11494
|
};
|
|
11495
|
-
CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? _extends$
|
|
11495
|
+
CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? _extends$19({}, Transition.propTypes, {
|
|
11496
11496
|
/**
|
|
11497
11497
|
* The animation classNames applied to the component as it appears, enters,
|
|
11498
11498
|
* exits or has finished the transition. A single name can be provided, which
|
|
@@ -11854,7 +11854,7 @@ var TransitionGroup = /*#__PURE__*/function (_React$Component) {
|
|
|
11854
11854
|
|
|
11855
11855
|
if (this.mounted) {
|
|
11856
11856
|
this.setState(function (state) {
|
|
11857
|
-
var children = _extends$
|
|
11857
|
+
var children = _extends$19({}, state.children);
|
|
11858
11858
|
|
|
11859
11859
|
delete children[child.key];
|
|
11860
11860
|
return {
|
|
@@ -12706,7 +12706,7 @@ const TouchRipple = /*#__PURE__*/React.forwardRef(function TouchRipple(inProps,
|
|
|
12706
12706
|
start,
|
|
12707
12707
|
stop
|
|
12708
12708
|
}), [pulsate, start, stop]);
|
|
12709
|
-
return /*#__PURE__*/jsxRuntime.exports.jsx(TouchRippleRoot, _extends$
|
|
12709
|
+
return /*#__PURE__*/jsxRuntime.exports.jsx(TouchRippleRoot, _extends$19({
|
|
12710
12710
|
className: clsx(touchRippleClasses.root, classes.root, className),
|
|
12711
12711
|
ref: container
|
|
12712
12712
|
}, other, {
|
|
@@ -12998,7 +12998,7 @@ const ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(inProps, re
|
|
|
12998
12998
|
}
|
|
12999
12999
|
}, [enableTouchRipple]);
|
|
13000
13000
|
}
|
|
13001
|
-
const ownerState = _extends$
|
|
13001
|
+
const ownerState = _extends$19({}, props, {
|
|
13002
13002
|
centerRipple,
|
|
13003
13003
|
component,
|
|
13004
13004
|
disabled,
|
|
@@ -13009,7 +13009,7 @@ const ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(inProps, re
|
|
|
13009
13009
|
focusVisible
|
|
13010
13010
|
});
|
|
13011
13011
|
const classes = useUtilityClasses$1(ownerState);
|
|
13012
|
-
return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonBaseRoot, _extends$
|
|
13012
|
+
return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonBaseRoot, _extends$19({
|
|
13013
13013
|
as: ComponentProp,
|
|
13014
13014
|
className: clsx(classes.root, className),
|
|
13015
13015
|
ownerState: ownerState,
|
|
@@ -13033,7 +13033,7 @@ const ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(inProps, re
|
|
|
13033
13033
|
children: [children, enableTouchRipple ?
|
|
13034
13034
|
/*#__PURE__*/
|
|
13035
13035
|
/* TouchRipple is only needed client-side, x2 boost on the server. */
|
|
13036
|
-
jsxRuntime.exports.jsx(TouchRipple, _extends$
|
|
13036
|
+
jsxRuntime.exports.jsx(TouchRipple, _extends$19({
|
|
13037
13037
|
ref: handleRippleRef,
|
|
13038
13038
|
center: centerRipple
|
|
13039
13039
|
}, TouchRippleProps)) : null]
|
|
@@ -13228,9 +13228,9 @@ const useUtilityClasses = ownerState => {
|
|
|
13228
13228
|
endIcon: ['endIcon', `iconSize${capitalize(size)}`]
|
|
13229
13229
|
};
|
|
13230
13230
|
const composedClasses = composeClasses(slots, getButtonUtilityClass, classes);
|
|
13231
|
-
return _extends$
|
|
13231
|
+
return _extends$19({}, classes, composedClasses);
|
|
13232
13232
|
};
|
|
13233
|
-
const commonIconStyles = ownerState => _extends$
|
|
13233
|
+
const commonIconStyles = ownerState => _extends$19({}, ownerState.size === 'small' && {
|
|
13234
13234
|
'& > *:nth-of-type(1)': {
|
|
13235
13235
|
fontSize: 18
|
|
13236
13236
|
}
|
|
@@ -13258,14 +13258,14 @@ const ButtonRoot = styled(ButtonBase, {
|
|
|
13258
13258
|
ownerState
|
|
13259
13259
|
}) => {
|
|
13260
13260
|
var _theme$palette$getCon, _theme$palette;
|
|
13261
|
-
return _extends$
|
|
13261
|
+
return _extends$19({}, theme.typography.button, {
|
|
13262
13262
|
minWidth: 64,
|
|
13263
13263
|
padding: '6px 16px',
|
|
13264
13264
|
borderRadius: (theme.vars || theme).shape.borderRadius,
|
|
13265
13265
|
transition: theme.transitions.create(['background-color', 'box-shadow', 'border-color', 'color'], {
|
|
13266
13266
|
duration: theme.transitions.duration.short
|
|
13267
13267
|
}),
|
|
13268
|
-
'&:hover': _extends$
|
|
13268
|
+
'&:hover': _extends$19({
|
|
13269
13269
|
textDecoration: 'none',
|
|
13270
13270
|
backgroundColor: theme.vars ? `rgba(${theme.vars.palette.text.primaryChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette.text.primary, theme.palette.action.hoverOpacity),
|
|
13271
13271
|
// Reset on touch devices, it doesn't add specificity
|
|
@@ -13300,13 +13300,13 @@ const ButtonRoot = styled(ButtonBase, {
|
|
|
13300
13300
|
backgroundColor: (theme.vars || theme).palette[ownerState.color].main
|
|
13301
13301
|
}
|
|
13302
13302
|
}),
|
|
13303
|
-
'&:active': _extends$
|
|
13303
|
+
'&:active': _extends$19({}, ownerState.variant === 'contained' && {
|
|
13304
13304
|
boxShadow: (theme.vars || theme).shadows[8]
|
|
13305
13305
|
}),
|
|
13306
|
-
[`&.${buttonClasses.focusVisible}`]: _extends$
|
|
13306
|
+
[`&.${buttonClasses.focusVisible}`]: _extends$19({}, ownerState.variant === 'contained' && {
|
|
13307
13307
|
boxShadow: (theme.vars || theme).shadows[6]
|
|
13308
13308
|
}),
|
|
13309
|
-
[`&.${buttonClasses.disabled}`]: _extends$
|
|
13309
|
+
[`&.${buttonClasses.disabled}`]: _extends$19({
|
|
13310
13310
|
color: (theme.vars || theme).palette.action.disabled
|
|
13311
13311
|
}, ownerState.variant === 'outlined' && {
|
|
13312
13312
|
border: `1px solid ${(theme.vars || theme).palette.action.disabledBackground}`
|
|
@@ -13388,7 +13388,7 @@ const ButtonStartIcon = styled('span', {
|
|
|
13388
13388
|
}
|
|
13389
13389
|
})(({
|
|
13390
13390
|
ownerState
|
|
13391
|
-
}) => _extends$
|
|
13391
|
+
}) => _extends$19({
|
|
13392
13392
|
display: 'inherit',
|
|
13393
13393
|
marginRight: 8,
|
|
13394
13394
|
marginLeft: -4
|
|
@@ -13406,7 +13406,7 @@ const ButtonEndIcon = styled('span', {
|
|
|
13406
13406
|
}
|
|
13407
13407
|
})(({
|
|
13408
13408
|
ownerState
|
|
13409
|
-
}) => _extends$
|
|
13409
|
+
}) => _extends$19({
|
|
13410
13410
|
display: 'inherit',
|
|
13411
13411
|
marginRight: -4,
|
|
13412
13412
|
marginLeft: 8
|
|
@@ -13438,7 +13438,7 @@ const Button = /*#__PURE__*/React.forwardRef(function Button(inProps, ref) {
|
|
|
13438
13438
|
variant = 'text'
|
|
13439
13439
|
} = props,
|
|
13440
13440
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
13441
|
-
const ownerState = _extends$
|
|
13441
|
+
const ownerState = _extends$19({}, props, {
|
|
13442
13442
|
color,
|
|
13443
13443
|
component,
|
|
13444
13444
|
disabled,
|
|
@@ -13460,7 +13460,7 @@ const Button = /*#__PURE__*/React.forwardRef(function Button(inProps, ref) {
|
|
|
13460
13460
|
ownerState: ownerState,
|
|
13461
13461
|
children: endIconProp
|
|
13462
13462
|
});
|
|
13463
|
-
return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonRoot, _extends$
|
|
13463
|
+
return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonRoot, _extends$19({
|
|
13464
13464
|
ownerState: ownerState,
|
|
13465
13465
|
className: clsx(contextProps.className, classes.root, className),
|
|
13466
13466
|
component: component,
|
|
@@ -13807,14 +13807,14 @@ var CustomButtonComponent = function (_a) {
|
|
|
13807
13807
|
return (jsxRuntime.exports.jsx(CustomButton, __assign({ disabled: disabled, onClick: onClick, className: finalClassName, fluid: fluid, variant: "contained", disableRipple: true, ref: forwardedRef }, props, { children: text })));
|
|
13808
13808
|
};
|
|
13809
13809
|
|
|
13810
|
-
var _g$
|
|
13811
|
-
function _extends$
|
|
13810
|
+
var _g$W;
|
|
13811
|
+
function _extends$17() { _extends$17 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$17.apply(this, arguments); }
|
|
13812
13812
|
var SvgIluAvailabilityByItem = function SvgIluAvailabilityByItem(props) {
|
|
13813
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
13813
|
+
return /*#__PURE__*/React.createElement("svg", _extends$17({
|
|
13814
13814
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13815
13815
|
width: 170,
|
|
13816
13816
|
height: 170
|
|
13817
|
-
}, props), _g$
|
|
13817
|
+
}, props), _g$W || (_g$W = /*#__PURE__*/React.createElement("g", {
|
|
13818
13818
|
"data-name": "ilu_availability-by-item_1"
|
|
13819
13819
|
}, /*#__PURE__*/React.createElement("g", {
|
|
13820
13820
|
"data-name": "ilu_availability-by-item_3"
|
|
@@ -14764,21 +14764,21 @@ var SvgIluAvailabilityByItem = function SvgIluAvailabilityByItem(props) {
|
|
|
14764
14764
|
}))));
|
|
14765
14765
|
};
|
|
14766
14766
|
|
|
14767
|
-
var _defs$
|
|
14768
|
-
function _extends$
|
|
14767
|
+
var _defs$p, _g$V, _g2$a, _path$F;
|
|
14768
|
+
function _extends$16() { _extends$16 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$16.apply(this, arguments); }
|
|
14769
14769
|
var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
|
|
14770
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
14770
|
+
return /*#__PURE__*/React.createElement("svg", _extends$16({
|
|
14771
14771
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14772
14772
|
width: 170,
|
|
14773
14773
|
height: 170
|
|
14774
|
-
}, props), _defs$
|
|
14774
|
+
}, props), _defs$p || (_defs$p = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
14775
14775
|
id: "ilu_add-goods-to-pallet_svg__a"
|
|
14776
14776
|
}, /*#__PURE__*/React.createElement("path", {
|
|
14777
14777
|
"data-name": "Path 84842",
|
|
14778
14778
|
d: "M169.513 101.274c0 .678-.008 1.352-.03 2.026a65.134 65.134 0 0 1-1.288 11.128 60.13 60.13 0 0 1-.619 2.771 57.118 57.118 0 0 1-.822 3.03q-.636 2.168-1.424 4.267l-.076.212a65.618 65.618 0 0 1-1.356 3.327s0 .013-.008.025c-.093.208-.182.411-.275.614a68.725 68.725 0 0 1-4.081 7.713 69.9 69.9 0 0 1-5.068 7.2l-.051.064c-.216.263-.432.53-.648.792-.034.042-.068.081-.1.123-.161.195-.326.39-.492.585l-.288.339c-.191.225-.386.453-.585.678q-.858.979-1.754 1.92c-.67.712-1.36 1.411-2.06 2.093q-1.672 1.64-3.445 3.161a76.265 76.265 0 0 1-12.688 8.831 78.677 78.677 0 0 1-14.519 6.229 80.445 80.445 0 0 1-16.57 3.348q-3.839.369-7.785.369a78.566 78.566 0 0 1-55.014-21.93v-.008q-1.055-1.023-2.059-2.093a71.597 71.597 0 0 1-3.119-3.522c-.025-.034-.055-.064-.081-.1l-.021-.025a71.089 71.089 0 0 1-5.763-8.056 66.883 66.883 0 0 1-9.95-33.088 54.61 54.61 0 0 1-.034-2.026c0-.564.008-1.123.021-1.682a65.691 65.691 0 0 1 1.051-10.234 68.5 68.5 0 0 1 16.571-33.476q1.716-1.907 3.568-3.7a78.588 78.588 0 0 1 54.824-21.756 78.58 78.58 0 0 1 54.819 21.752q1.85 1.793 3.568 3.7a70.31 70.31 0 0 1 11.056 16.5 67.1 67.1 0 0 1 2.649 6.314c.081.225.161.449.237.674.195.547.378 1.1.555 1.653a66.428 66.428 0 0 1 3.119 18.15c0 .14.008.28.013.424v.25a38 38 0 0 1 .022 1.434Z",
|
|
14779
14779
|
transform: "translate(-17.433 -30.423)",
|
|
14780
14780
|
fill: "none"
|
|
14781
|
-
})))), _g$
|
|
14781
|
+
})))), _g$V || (_g$V = /*#__PURE__*/React.createElement("g", {
|
|
14782
14782
|
"data-name": "Group 44661"
|
|
14783
14783
|
}, /*#__PURE__*/React.createElement("path", {
|
|
14784
14784
|
"data-name": "Path 84837",
|
|
@@ -14788,7 +14788,7 @@ var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
|
|
|
14788
14788
|
"data-name": "Path 84838",
|
|
14789
14789
|
d: "M143.864 127.282c-.161.195-.326.39-.492.585l-.288.339c-.191.225-.386.453-.585.678q-.858.979-1.754 1.92c-.67.712-1.36 1.411-2.06 2.094q-1.672 1.64-3.445 3.161a76.268 76.268 0 0 1-12.688 8.831 78.681 78.681 0 0 1-14.519 6.229 80.444 80.444 0 0 1-16.57 3.348q-3.839.369-7.785.369a78.566 78.566 0 0 1-55.017-21.927v-.008q-1.055-1.023-2.06-2.094a71.597 71.597 0 0 1-3.119-3.522Z",
|
|
14790
14790
|
fill: "#cbcbcb"
|
|
14791
|
-
}))), _g2$
|
|
14791
|
+
}))), _g2$a || (_g2$a = /*#__PURE__*/React.createElement("g", {
|
|
14792
14792
|
"data-name": "Group 44674"
|
|
14793
14793
|
}, /*#__PURE__*/React.createElement("g", {
|
|
14794
14794
|
"data-name": "Group 44673",
|
|
@@ -15001,28 +15001,28 @@ var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
|
|
|
15001
15001
|
"data-name": "Rectangle 21223",
|
|
15002
15002
|
fill: "#e42127",
|
|
15003
15003
|
d: "M103.313 101.233v13.906h-3.459v-13.906z"
|
|
15004
|
-
})))), _path$
|
|
15004
|
+
})))), _path$F || (_path$F = /*#__PURE__*/React.createElement("path", {
|
|
15005
15005
|
"data-name": "Rectangle 21224",
|
|
15006
15006
|
fill: "none",
|
|
15007
15007
|
d: "M0 0h170v170H0z"
|
|
15008
15008
|
})));
|
|
15009
15009
|
};
|
|
15010
15010
|
|
|
15011
|
-
var _defs$
|
|
15012
|
-
function _extends$
|
|
15011
|
+
var _defs$o, _g$U, _path$E;
|
|
15012
|
+
function _extends$15() { _extends$15 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$15.apply(this, arguments); }
|
|
15013
15013
|
var SvgIluAvailabilityByIndex = function SvgIluAvailabilityByIndex(props) {
|
|
15014
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
15014
|
+
return /*#__PURE__*/React.createElement("svg", _extends$15({
|
|
15015
15015
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15016
15016
|
width: 170,
|
|
15017
15017
|
height: 170
|
|
15018
|
-
}, props), _defs$
|
|
15018
|
+
}, props), _defs$o || (_defs$o = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
15019
15019
|
id: "ilu_availability-by-index_svg__a"
|
|
15020
15020
|
}, /*#__PURE__*/React.createElement("path", {
|
|
15021
15021
|
"data-name": "Path 85163",
|
|
15022
15022
|
d: "M169.5 101.268c0 .678-.008 1.352-.03 2.025a65.128 65.128 0 0 1-1.288 11.127 60.13 60.13 0 0 1-.619 2.771 57.118 57.118 0 0 1-.822 3.03q-.636 2.167-1.424 4.267l-.076.212a64.306 64.306 0 0 1-1.356 3.326s0 .013-.008.025c-.093.208-.182.411-.275.614a68.722 68.722 0 0 1-4.081 7.712 69.9 69.9 0 0 1-5.068 7.2l-.051.064c-.216.263-.432.53-.648.792-.034.042-.068.081-.1.123-.161.195-.326.39-.492.585l-.288.339c-.191.225-.386.453-.585.678q-.858.979-1.754 1.92c-.67.712-1.36 1.411-2.059 2.093q-1.672 1.64-3.445 3.161a76.262 76.262 0 0 1-12.687 8.831 78.671 78.671 0 0 1-14.517 6.229 80.439 80.439 0 0 1-16.568 3.348q-3.839.369-7.784.369a78.559 78.559 0 0 1-55.01-21.929v-.008q-1.055-1.023-2.059-2.093a72.038 72.038 0 0 1-3.119-3.521c-.025-.034-.055-.064-.081-.1l-.021-.025a71.084 71.084 0 0 1-5.763-8.055 66.878 66.878 0 0 1-9.949-33.086 54.556 54.556 0 0 1-.034-2.025c0-.564.008-1.123.021-1.682a65.687 65.687 0 0 1 1.051-10.233 68.493 68.493 0 0 1 16.571-33.475q1.716-1.907 3.568-3.7a78.582 78.582 0 0 1 54.819-21.754 78.573 78.573 0 0 1 54.815 21.751q1.85 1.792 3.568 3.7a70.3 70.3 0 0 1 11.055 16.5 67.085 67.085 0 0 1 2.648 6.314c.081.225.161.449.237.674.195.547.378 1.1.555 1.653a66.423 66.423 0 0 1 3.119 18.149c0 .14.008.28.013.424v.25c.021.472.021.951.021 1.43Z",
|
|
15023
15023
|
transform: "translate(-17.433 -30.423)",
|
|
15024
15024
|
fill: "none"
|
|
15025
|
-
})))), _g$
|
|
15025
|
+
})))), _g$U || (_g$U = /*#__PURE__*/React.createElement("g", {
|
|
15026
15026
|
"data-name": "Group 46266",
|
|
15027
15027
|
clipPath: "url(#ilu_availability-by-index_svg__a)",
|
|
15028
15028
|
transform: "translate(7.637 13.141)"
|
|
@@ -15787,27 +15787,27 @@ var SvgIluAvailabilityByIndex = function SvgIluAvailabilityByIndex(props) {
|
|
|
15787
15787
|
"data-name": "Rectangle 21792",
|
|
15788
15788
|
fill: "#5d5d5c",
|
|
15789
15789
|
d: "M108.08 85.336h2.119v3.459h-2.119z"
|
|
15790
|
-
}))))), _path$
|
|
15790
|
+
}))))), _path$E || (_path$E = /*#__PURE__*/React.createElement("path", {
|
|
15791
15791
|
"data-name": "Rectangle 21793",
|
|
15792
15792
|
fill: "none",
|
|
15793
15793
|
d: "M0 0h170v170H0z"
|
|
15794
15794
|
})));
|
|
15795
15795
|
};
|
|
15796
15796
|
|
|
15797
|
-
var _g$
|
|
15798
|
-
function _extends$
|
|
15797
|
+
var _g$T, _g2$9, _g3$4, _g4$3, _g5$2, _g6$2, _g7$2, _g8$2, _g9, _g10, _g11, _g12, _g13, _g14, _g15, _g16, _g17, _g18, _g19, _g20, _g21, _g22, _g23, _g24, _g25, _g26, _g27, _g28, _g29, _g30, _g31, _g32, _g33, _g34, _g35, _g36, _g37, _g38, _g39, _g40, _g41, _g42, _g43, _g44, _g45, _g46, _g47, _g48, _g49, _g50, _g51, _g52, _g53, _g54, _g55, _g56, _g57, _g58, _g59, _g60, _path$D;
|
|
15798
|
+
function _extends$14() { _extends$14 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$14.apply(this, arguments); }
|
|
15799
15799
|
var SvgIluAvailabilityByLocation = function SvgIluAvailabilityByLocation(props) {
|
|
15800
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
15800
|
+
return /*#__PURE__*/React.createElement("svg", _extends$14({
|
|
15801
15801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
15802
15802
|
width: 170,
|
|
15803
15803
|
height: 170
|
|
15804
|
-
}, props), _g$
|
|
15804
|
+
}, props), _g$T || (_g$T = /*#__PURE__*/React.createElement("g", {
|
|
15805
15805
|
"data-name": "Group 45606"
|
|
15806
15806
|
}, /*#__PURE__*/React.createElement("path", {
|
|
15807
15807
|
"data-name": "Path 85086",
|
|
15808
15808
|
d: "M163.032 83.974c0 .687-.009 1.371-.03 2.054a66.079 66.079 0 0 1-1.306 11.287c-.189.945-.4 1.882-.627 2.81a56.813 56.813 0 0 1-.834 3.072q-.644 2.2-1.444 4.327c-.026.073-.052.142-.077.215a66.134 66.134 0 0 1-1.375 3.373s0 .013-.009.026c-.095.211-.185.417-.279.623a69.674 69.674 0 0 1-4.138 7.82 70.88 70.88 0 0 1-5.139 7.3l-.052.064c-.219.266-.438.537-.657.8-.034.043-.069.082-.1.125-.163.2-.331.4-.5.593l-.292.344c-.193.228-.391.46-.593.687q-.87.993-1.779 1.946a69.675 69.675 0 0 1-2.088 2.123q-1.7 1.663-3.493 3.205a77.327 77.327 0 0 1-12.864 8.954 79.773 79.773 0 0 1-14.72 6.316 81.565 81.565 0 0 1-16.8 3.394q-3.893.374-7.893.374a79.659 79.659 0 0 1-55.78-22.235v-.009q-1.07-1.038-2.088-2.123a70.579 70.579 0 0 1-3.162-3.571c-.026-.034-.056-.064-.082-.1l-.021-.026a72.081 72.081 0 0 1-5.843-8.168A67.813 67.813 0 0 1 8.878 86.025a53.944 53.944 0 0 1-.034-2.054c0-.571.009-1.139.021-1.706a66.657 66.657 0 0 1 1.066-10.376 69.451 69.451 0 0 1 16.802-33.941q1.74-1.934 3.618-3.755a79.681 79.681 0 0 1 55.586-22.055 79.673 79.673 0 0 1 55.582 22.055q1.875 1.817 3.618 3.755a71.286 71.286 0 0 1 11.209 16.727 68.016 68.016 0 0 1 2.685 6.4c.082.228.163.455.241.683.2.554.382 1.117.563 1.676a67.355 67.355 0 0 1 3.162 18.4c0 .142.009.284.013.43v.253c.018.486.022.972.022 1.457Z",
|
|
15809
15809
|
fill: "#dfdfdf"
|
|
15810
|
-
}))), _g2$
|
|
15810
|
+
}))), _g2$9 || (_g2$9 = /*#__PURE__*/React.createElement("g", {
|
|
15811
15811
|
"data-name": "Group 45607"
|
|
15812
15812
|
}, /*#__PURE__*/React.createElement("path", {
|
|
15813
15813
|
"data-name": "Rectangle 21670",
|
|
@@ -16602,21 +16602,21 @@ var SvgIluAvailabilityByLocation = function SvgIluAvailabilityByLocation(props)
|
|
|
16602
16602
|
"data-name": "Rectangle 21693",
|
|
16603
16603
|
fill: "#b7b7b7",
|
|
16604
16604
|
d: "M132.487 131.44h.43v9.642h-.43z"
|
|
16605
|
-
}))), _path$
|
|
16605
|
+
}))), _path$D || (_path$D = /*#__PURE__*/React.createElement("path", {
|
|
16606
16606
|
"data-name": "Rectangle 21694",
|
|
16607
16607
|
fill: "none",
|
|
16608
16608
|
d: "M0 0h170v170H0z"
|
|
16609
16609
|
})));
|
|
16610
16610
|
};
|
|
16611
16611
|
|
|
16612
|
-
var _defs$
|
|
16613
|
-
function _extends$
|
|
16612
|
+
var _defs$n, _g$S, _path$C;
|
|
16613
|
+
function _extends$13() { _extends$13 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$13.apply(this, arguments); }
|
|
16614
16614
|
var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
|
|
16615
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
16615
|
+
return /*#__PURE__*/React.createElement("svg", _extends$13({
|
|
16616
16616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16617
16617
|
width: 138,
|
|
16618
16618
|
height: 138
|
|
16619
|
-
}, props), _defs$
|
|
16619
|
+
}, props), _defs$n || (_defs$n = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16620
16620
|
id: "ilu_blocked-pallet_svg__a"
|
|
16621
16621
|
}, /*#__PURE__*/React.createElement("path", {
|
|
16622
16622
|
"data-name": "Rectangle 22236",
|
|
@@ -16647,7 +16647,7 @@ var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
|
|
|
16647
16647
|
"data-name": "Rectangle 22231",
|
|
16648
16648
|
fill: "none",
|
|
16649
16649
|
d: "M0 0h24.344v22.984H0z"
|
|
16650
|
-
})))), _g$
|
|
16650
|
+
})))), _g$S || (_g$S = /*#__PURE__*/React.createElement("g", {
|
|
16651
16651
|
clipPath: "url(#ilu_blocked-pallet_svg__a)",
|
|
16652
16652
|
transform: "translate(.047 .047)"
|
|
16653
16653
|
}, /*#__PURE__*/React.createElement("g", {
|
|
@@ -16967,28 +16967,28 @@ var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
|
|
|
16967
16967
|
"data-name": "Rectangle 22234",
|
|
16968
16968
|
fill: "#b70000",
|
|
16969
16969
|
d: "M81.618 30.959h5.597v2.814h-5.597z"
|
|
16970
|
-
})))), _path$
|
|
16970
|
+
})))), _path$C || (_path$C = /*#__PURE__*/React.createElement("path", {
|
|
16971
16971
|
"data-name": "Rectangle 22917",
|
|
16972
16972
|
fill: "none",
|
|
16973
16973
|
d: "M1 1h137v137H1z"
|
|
16974
16974
|
})));
|
|
16975
16975
|
};
|
|
16976
16976
|
|
|
16977
|
-
var _defs$
|
|
16978
|
-
function _extends$
|
|
16977
|
+
var _defs$m, _g$R, _path$B;
|
|
16978
|
+
function _extends$12() { _extends$12 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$12.apply(this, arguments); }
|
|
16979
16979
|
var SvgIluFinishedProduct = function SvgIluFinishedProduct(props) {
|
|
16980
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
16980
|
+
return /*#__PURE__*/React.createElement("svg", _extends$12({
|
|
16981
16981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16982
16982
|
width: 170,
|
|
16983
16983
|
height: 170
|
|
16984
|
-
}, props), _defs$
|
|
16984
|
+
}, props), _defs$m || (_defs$m = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
16985
16985
|
id: "ilu_finished-product_svg__a"
|
|
16986
16986
|
}, /*#__PURE__*/React.createElement("path", {
|
|
16987
16987
|
"data-name": "Path 85400",
|
|
16988
16988
|
d: "M46.355 52.191q-1.855 1.8-3.578 3.714a68.7 68.7 0 0 0-16.631 33.58 65.938 65.938 0 0 0-1.054 10.264 72.703 72.703 0 0 0-.022 1.687c0 .68.009 1.355.034 2.031a67.08 67.08 0 0 0 9.979 33.185 71.37 71.37 0 0 0 5.78 8.079l.022.025c.025.034.055.064.081.1 1 1.207 2.044 2.389 3.128 3.532q1.007 1.071 2.066 2.1v.008a78.791 78.791 0 0 0 55.173 21.994q3.959 0 7.807-.37a80.631 80.631 0 0 0 16.618-3.357 78.925 78.925 0 0 0 14.56-6.247 76.519 76.519 0 0 0 12.725-8.857q1.779-1.53 3.455-3.171c.7-.684 1.394-1.386 2.065-2.1q.9-.944 1.759-1.925c.2-.225.4-.455.587-.68l.289-.34c.166-.2.332-.391.493-.587.034-.042.068-.081.1-.123.217-.264.433-.532.65-.8l.051-.063a70.089 70.089 0 0 0 5.083-7.221 68.786 68.786 0 0 0 4.093-7.735c.094-.2.183-.408.276-.616 0-.013 0-.021.008-.026q.727-1.645 1.36-3.336l.077-.212q.791-2.111 1.428-4.28c.3-1 .578-2.019.825-3.039a60.77 60.77 0 0 0 .62-2.779 65.322 65.322 0 0 0 1.292-11.161c.021-.676.03-1.351.03-2.031 0-.481 0-.961-.017-1.437v-.25c0-.145-.008-.285-.012-.425a66.642 66.642 0 0 0-3.128-18.2 56.598 56.598 0 0 0-.557-1.658 45.378 45.378 0 0 0-.238-.676 67.181 67.181 0 0 0-2.656-6.333A70.535 70.535 0 0 0 159.89 55.91q-1.721-1.91-3.579-3.71a78.806 78.806 0 0 0-54.978-21.82 78.813 78.813 0 0 0-54.978 21.811",
|
|
16989
16989
|
transform: "translate(-25.071 -30.38)",
|
|
16990
16990
|
fill: "none"
|
|
16991
|
-
})))), _g$
|
|
16991
|
+
})))), _g$R || (_g$R = /*#__PURE__*/React.createElement("g", {
|
|
16992
16992
|
transform: "translate(6.21 13.01)",
|
|
16993
16993
|
clipPath: "url(#ilu_finished-product_svg__a)"
|
|
16994
16994
|
}, /*#__PURE__*/React.createElement("path", {
|
|
@@ -17219,28 +17219,28 @@ var SvgIluFinishedProduct = function SvgIluFinishedProduct(props) {
|
|
|
17219
17219
|
"data-name": "Path 85399",
|
|
17220
17220
|
d: "M137.421 110.551a.48.48 0 1 1 .393.5.453.453 0 0 1-.393-.5",
|
|
17221
17221
|
fill: "#5d5d5c"
|
|
17222
|
-
}))), _path$
|
|
17222
|
+
}))), _path$B || (_path$B = /*#__PURE__*/React.createElement("path", {
|
|
17223
17223
|
"data-name": "Rectangle 22211",
|
|
17224
17224
|
fill: "none",
|
|
17225
17225
|
d: "M0 0h170v170H0z"
|
|
17226
17226
|
})));
|
|
17227
17227
|
};
|
|
17228
17228
|
|
|
17229
|
-
var _defs$
|
|
17230
|
-
function _extends$
|
|
17229
|
+
var _defs$l, _g$Q;
|
|
17230
|
+
function _extends$11() { _extends$11 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$11.apply(this, arguments); }
|
|
17231
17231
|
var SvgIluFromPalletToRack = function SvgIluFromPalletToRack(props) {
|
|
17232
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
17232
|
+
return /*#__PURE__*/React.createElement("svg", _extends$11({
|
|
17233
17233
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17234
17234
|
width: 170,
|
|
17235
17235
|
height: 170
|
|
17236
|
-
}, props), _defs$
|
|
17236
|
+
}, props), _defs$l || (_defs$l = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17237
17237
|
id: "ilu_from-pallet-to-rack_svg__a"
|
|
17238
17238
|
}, /*#__PURE__*/React.createElement("path", {
|
|
17239
17239
|
"data-name": "Path 84914",
|
|
17240
17240
|
d: "M170.63 101.939c0 .683-.009 1.362-.03 2.041a65.613 65.613 0 0 1-1.3 11.21c-.188.939-.393 1.87-.624 2.792a57.688 57.688 0 0 1-.828 3.052q-.64 2.184-1.434 4.3l-.077.213a65.274 65.274 0 0 1-1.366 3.351s0 .013-.009.026c-.094.209-.184.414-.277.619a69.226 69.226 0 0 1-4.111 7.769 70.417 70.417 0 0 1-5.106 7.253l-.051.064c-.218.265-.435.534-.653.8-.034.043-.068.081-.1.124-.162.2-.329.393-.5.589l-.29.342c-.192.226-.388.457-.589.683q-.864.986-1.767 1.934a67.648 67.648 0 0 1-2.075 2.109q-1.684 1.652-3.471 3.185a76.827 76.827 0 0 1-12.781 8.9 79.252 79.252 0 0 1-14.625 6.275 81.035 81.035 0 0 1-16.691 3.372q-3.868.371-7.842.371a79.143 79.143 0 0 1-55.418-22.091v-.009q-1.063-1.031-2.074-2.109a72.635 72.635 0 0 1-3.142-3.547c-.026-.034-.055-.064-.081-.1l-.021-.026a71.614 71.614 0 0 1-5.806-8.115 67.374 67.374 0 0 1-10.024-33.336 53.263 53.263 0 0 1-.034-2.041c0-.568.009-1.131.021-1.695a66.174 66.174 0 0 1 1.059-10.309 69 69 0 0 1 16.7-33.724q1.729-1.921 3.594-3.731a79.165 79.165 0 0 1 55.226-21.912 79.156 79.156 0 0 1 55.222 21.912q1.863 1.806 3.594 3.731a70.825 70.825 0 0 1 11.138 16.619 67.593 67.593 0 0 1 2.668 6.361c.081.226.162.452.239.679.2.551.38 1.11.559 1.665a66.916 66.916 0 0 1 3.147 18.282c0 .141.009.282.013.427v.252c.012.478.017.961.017 1.443Z",
|
|
17241
17241
|
transform: "translate(-17.433 -30.568)",
|
|
17242
17242
|
fill: "none"
|
|
17243
|
-
})))), _g$
|
|
17243
|
+
})))), _g$Q || (_g$Q = /*#__PURE__*/React.createElement("g", {
|
|
17244
17244
|
"data-name": "ilu_from-pallet-to-rack"
|
|
17245
17245
|
}, /*#__PURE__*/React.createElement("g", {
|
|
17246
17246
|
"data-name": "ilu_from-pallet-to-rack"
|
|
@@ -17735,21 +17735,21 @@ var SvgIluFromPalletToRack = function SvgIluFromPalletToRack(props) {
|
|
|
17735
17735
|
}))));
|
|
17736
17736
|
};
|
|
17737
17737
|
|
|
17738
|
-
var _defs$
|
|
17739
|
-
function _extends$
|
|
17738
|
+
var _defs$k, _g$P, _path$A;
|
|
17739
|
+
function _extends$10() { _extends$10 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$10.apply(this, arguments); }
|
|
17740
17740
|
var SvgIluInternalLogistic = function SvgIluInternalLogistic(props) {
|
|
17741
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
17741
|
+
return /*#__PURE__*/React.createElement("svg", _extends$10({
|
|
17742
17742
|
xmlns: "http://www.w3.org/2000/svg",
|
|
17743
17743
|
width: 170,
|
|
17744
17744
|
height: 170
|
|
17745
|
-
}, props), _defs$
|
|
17745
|
+
}, props), _defs$k || (_defs$k = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
17746
17746
|
id: "ilu_internal-logistic_svg__a"
|
|
17747
17747
|
}, /*#__PURE__*/React.createElement("path", {
|
|
17748
17748
|
"data-name": "Path 85203",
|
|
17749
17749
|
d: "M170.088 101.542a65.4 65.4 0 0 1-.03 2.033 65.38 65.38 0 0 1-1.293 11.17 61.958 61.958 0 0 1-.621 2.782 57.273 57.273 0 0 1-.825 3.041q-.638 2.176-1.429 4.284l-.077.213a64.806 64.806 0 0 1-1.361 3.339s0 .013-.008.026c-.094.208-.183.413-.277.617a68.984 68.984 0 0 1-4.1 7.742 70.165 70.165 0 0 1-5.088 7.227l-.051.064c-.217.264-.434.532-.651.8-.034.043-.068.081-.1.123-.162.2-.328.391-.493.587l-.289.34c-.191.225-.387.455-.587.681q-.861.983-1.761 1.927a66.043 66.043 0 0 1-2.067 2.1q-1.678 1.646-3.458 3.173a76.555 76.555 0 0 1-12.736 8.865 78.975 78.975 0 0 1-14.573 6.253 80.75 80.75 0 0 1-16.632 3.36q-3.854.37-7.814.37a78.863 78.863 0 0 1-55.227-22.016v-.008q-1.059-1.027-2.067-2.1A72.137 72.137 0 0 1 33.342 145c-.026-.034-.055-.064-.081-.1l-.021-.026a71.358 71.358 0 0 1-5.785-8.086 67.136 67.136 0 0 1-9.988-33.213 52.88 52.88 0 0 1-.034-2.033c0-.566.009-1.127.021-1.689A65.94 65.94 0 0 1 18.51 89.58a68.757 68.757 0 0 1 16.64-33.6q1.723-1.914 3.582-3.718a78.885 78.885 0 0 1 55.027-21.83 78.877 78.877 0 0 1 55.027 21.835q1.857 1.8 3.582 3.718a70.575 70.575 0 0 1 11.1 16.56 67.35 67.35 0 0 1 2.659 6.338c.081.225.162.451.238.676.2.549.379 1.106.557 1.659a66.68 66.68 0 0 1 3.131 18.219c0 .14.009.281.013.425v.251c.018.467.022.948.022 1.429Z",
|
|
17750
17750
|
transform: "translate(-17.433 -30.423)",
|
|
17751
17751
|
fill: "none"
|
|
17752
|
-
})))), _g$
|
|
17752
|
+
})))), _g$P || (_g$P = /*#__PURE__*/React.createElement("g", {
|
|
17753
17753
|
"data-name": "Group 46399"
|
|
17754
17754
|
}, /*#__PURE__*/React.createElement("g", {
|
|
17755
17755
|
"data-name": "Group 46398",
|
|
@@ -18180,28 +18180,28 @@ var SvgIluInternalLogistic = function SvgIluInternalLogistic(props) {
|
|
|
18180
18180
|
"data-name": "Rectangle 21843",
|
|
18181
18181
|
fill: "#fff",
|
|
18182
18182
|
d: "M25.589 51.136h3.444v3.402h-3.444z"
|
|
18183
|
-
})))), _path$
|
|
18183
|
+
})))), _path$A || (_path$A = /*#__PURE__*/React.createElement("path", {
|
|
18184
18184
|
"data-name": "Rectangle 21819",
|
|
18185
18185
|
fill: "none",
|
|
18186
18186
|
d: "M0 0h170v170H0z"
|
|
18187
18187
|
})));
|
|
18188
18188
|
};
|
|
18189
18189
|
|
|
18190
|
-
var _defs$
|
|
18191
|
-
function _extends
|
|
18190
|
+
var _defs$j, _g$O, _path$z;
|
|
18191
|
+
function _extends$$() { _extends$$ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$$.apply(this, arguments); }
|
|
18192
18192
|
var SvgIluInventory = function SvgIluInventory(props) {
|
|
18193
|
-
return /*#__PURE__*/React.createElement("svg", _extends
|
|
18193
|
+
return /*#__PURE__*/React.createElement("svg", _extends$$({
|
|
18194
18194
|
xmlns: "http://www.w3.org/2000/svg",
|
|
18195
18195
|
width: 170,
|
|
18196
18196
|
height: 170
|
|
18197
|
-
}, props), _defs$
|
|
18197
|
+
}, props), _defs$j || (_defs$j = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
18198
18198
|
id: "ilu_inventory_svg__a"
|
|
18199
18199
|
}, /*#__PURE__*/React.createElement("path", {
|
|
18200
18200
|
"data-name": "Path 84958",
|
|
18201
18201
|
d: "M168.954 101.369c0 .679-.008 1.354-.03 2.028a65.263 65.263 0 0 1-1.29 11.143c-.187.934-.39 1.859-.62 2.775a57.268 57.268 0 0 1-.823 3.034q-.637 2.171-1.426 4.273l-.076.212a64.5 64.5 0 0 1-1.358 3.331s0 .013-.008.025c-.093.208-.182.412-.276.615a68.819 68.819 0 0 1-4.086 7.723 70 70 0 0 1-5.075 7.21l-.051.064-.649.794c-.034.042-.068.081-.1.123-.161.2-.327.39-.492.586l-.289.339c-.191.225-.386.454-.586.679q-.859.98-1.757 1.922a72.878 72.878 0 0 1-2.062 2.1q-1.674 1.642-3.45 3.166a76.371 76.371 0 0 1-12.7 8.843 78.784 78.784 0 0 1-14.538 6.238 80.552 80.552 0 0 1-16.592 3.352q-3.845.369-7.8.369a78.671 78.671 0 0 1-55.088-21.96v-.008q-1.057-1.025-2.062-2.1a71.77 71.77 0 0 1-3.123-3.526c-.025-.034-.055-.064-.081-.1l-.021-.025a71.189 71.189 0 0 1-5.771-8.067A66.973 66.973 0 0 1 16.7 103.4a54.718 54.718 0 0 1-.034-2.028c0-.564.008-1.125.021-1.685a65.831 65.831 0 0 1 1.052-10.248 68.591 68.591 0 0 1 16.6-33.523Q36.062 54 37.917 52.2a78.693 78.693 0 0 1 54.897-21.777A78.686 78.686 0 0 1 147.707 52.2q1.852 1.795 3.573 3.709a70.405 70.405 0 0 1 11.071 16.52A67.184 67.184 0 0 1 165 78.756c.081.225.161.45.238.675.2.547.378 1.1.556 1.655a66.518 66.518 0 0 1 3.126 18.174c0 .14.008.28.013.424v.25c.017.476.021.955.021 1.435Z",
|
|
18202
18202
|
transform: "translate(-16.67 -30.423)",
|
|
18203
18203
|
fill: "none"
|
|
18204
|
-
})))), _g$
|
|
18204
|
+
})))), _g$O || (_g$O = /*#__PURE__*/React.createElement("g", {
|
|
18205
18205
|
"data-name": "Group 45104"
|
|
18206
18206
|
}, /*#__PURE__*/React.createElement("g", {
|
|
18207
18207
|
"data-name": "Group 45103"
|
|
@@ -19088,34 +19088,34 @@ var SvgIluInventory = function SvgIluInventory(props) {
|
|
|
19088
19088
|
"data-name": "Path 84957",
|
|
19089
19089
|
d: "M91.635 115.829a1.051 1.051 0 0 1-.764.225l-.386-.076-3.552-.7a.44.44 0 0 0-.352.085.409.409 0 0 0-.136.212.364.364 0 0 0-.021.115v2.376H86v-.2l.025-2.236a.848.848 0 0 1 .314-.649.755.755 0 0 1 .666-.119Z",
|
|
19090
19090
|
fill: "#e0e0e0"
|
|
19091
|
-
}))))))), _path$
|
|
19091
|
+
}))))))), _path$z || (_path$z = /*#__PURE__*/React.createElement("path", {
|
|
19092
19092
|
"data-name": "Rectangle 21469",
|
|
19093
19093
|
fill: "none",
|
|
19094
19094
|
d: "M0 0h170v170H0z"
|
|
19095
19095
|
})));
|
|
19096
19096
|
};
|
|
19097
19097
|
|
|
19098
|
-
var _defs$
|
|
19099
|
-
function _extends$
|
|
19098
|
+
var _defs$i, _g$N, _g2$8, _g3$3, _path$y;
|
|
19099
|
+
function _extends$_() { _extends$_ = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$_.apply(this, arguments); }
|
|
19100
19100
|
var SvgIluInventoryTransfer = function SvgIluInventoryTransfer(props) {
|
|
19101
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
19101
|
+
return /*#__PURE__*/React.createElement("svg", _extends$_({
|
|
19102
19102
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19103
19103
|
width: 170,
|
|
19104
19104
|
height: 170
|
|
19105
|
-
}, props), _defs$
|
|
19105
|
+
}, props), _defs$i || (_defs$i = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19106
19106
|
id: "ilu_inventory-transfer_svg__a"
|
|
19107
19107
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19108
19108
|
"data-name": "Path 85128",
|
|
19109
19109
|
d: "M170.409 101.249c0 .678-.008 1.351-.03 2.025a65.154 65.154 0 0 1-1.288 11.124c-.186.932-.39 1.855-.618 2.771a57.083 57.083 0 0 1-.822 3.029q-.635 2.167-1.423 4.266l-.076.212a64.804 64.804 0 0 1-1.356 3.325s0 .013-.008.025c-.093.208-.182.411-.275.614a68.7 68.7 0 0 1-4.079 7.71 69.885 69.885 0 0 1-5.067 7.2l-.051.064c-.216.263-.432.53-.648.792-.034.042-.068.08-.1.123-.161.195-.326.39-.491.585l-.288.339c-.191.225-.385.453-.585.678q-.858.979-1.754 1.919a67.736 67.736 0 0 1-2.059 2.093q-1.671 1.639-3.444 3.16a76.241 76.241 0 0 1-12.683 8.828 78.651 78.651 0 0 1-14.513 6.227 80.418 80.418 0 0 1-16.571 3.342q-3.838.369-7.782.369A78.538 78.538 0 0 1 39.4 150.148v-.008q-1.055-1.023-2.059-2.093a72.525 72.525 0 0 1-3.118-3.52c-.025-.034-.055-.064-.08-.1l-.021-.025a71.064 71.064 0 0 1-5.761-8.053 66.859 66.859 0 0 1-9.947-33.077 54.556 54.556 0 0 1-.034-2.025c0-.563.008-1.123.021-1.682a65.72 65.72 0 0 1 1.051-10.231A68.475 68.475 0 0 1 36.027 55.87q1.716-1.906 3.567-3.7a78.56 78.56 0 0 1 54.8-21.74 78.553 78.553 0 0 1 54.8 21.745q1.849 1.792 3.567 3.7a70.285 70.285 0 0 1 11.052 16.492 67.06 67.06 0 0 1 2.648 6.312c.08.225.161.449.237.674.195.546.377 1.1.555 1.652a66.408 66.408 0 0 1 3.118 18.144c0 .14.008.28.013.424v.25c.016.468.025.947.025 1.426Z",
|
|
19110
19110
|
transform: "translate(-18.383 -30.423)",
|
|
19111
19111
|
fill: "none"
|
|
19112
|
-
})))), _g$
|
|
19112
|
+
})))), _g$N || (_g$N = /*#__PURE__*/React.createElement("g", {
|
|
19113
19113
|
"data-name": "Group 45904"
|
|
19114
19114
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19115
19115
|
"data-name": "Path 85125",
|
|
19116
19116
|
d: "M160.086 83.987c0 .678-.008 1.351-.03 2.025a65.154 65.154 0 0 1-1.288 11.124c-.186.932-.39 1.855-.618 2.771a57.083 57.083 0 0 1-.822 3.029q-.635 2.167-1.423 4.266l-.076.212a64.804 64.804 0 0 1-1.356 3.325s0 .013-.008.025c-.093.208-.182.411-.275.614a68.7 68.7 0 0 1-4.079 7.71 69.885 69.885 0 0 1-5.067 7.2l-.051.064c-.216.263-.432.53-.648.792-.034.042-.068.08-.1.123-.161.195-.326.39-.491.585l-.288.339c-.191.225-.385.453-.585.678q-.858.979-1.754 1.919a67.736 67.736 0 0 1-2.059 2.093q-1.671 1.639-3.444 3.16a76.241 76.241 0 0 1-12.683 8.828 78.651 78.651 0 0 1-14.513 6.227 80.418 80.418 0 0 1-16.571 3.342q-3.838.369-7.782.369a78.538 78.538 0 0 1-54.998-21.921v-.008q-1.055-1.023-2.059-2.093a72.525 72.525 0 0 1-3.118-3.52c-.025-.034-.055-.064-.08-.1l-.021-.025a71.064 71.064 0 0 1-5.761-8.053A66.859 66.859 0 0 1 8.091 86.01a54.556 54.556 0 0 1-.034-2.025c0-.563.008-1.123.021-1.682a65.72 65.72 0 0 1 1.051-10.231 68.475 68.475 0 0 1 16.575-33.464q1.716-1.906 3.567-3.7a78.56 78.56 0 0 1 54.8-21.74 78.553 78.553 0 0 1 54.8 21.745q1.849 1.792 3.567 3.7a70.285 70.285 0 0 1 11.052 16.492 67.06 67.06 0 0 1 2.648 6.312c.08.225.161.449.237.674.195.546.377 1.1.555 1.652a66.408 66.408 0 0 1 3.118 18.144c0 .14.008.28.013.424v.25c.016.468.025.947.025 1.426Z",
|
|
19117
19117
|
fill: "#e0e0e0"
|
|
19118
|
-
}))), _g2$
|
|
19118
|
+
}))), _g2$8 || (_g2$8 = /*#__PURE__*/React.createElement("g", {
|
|
19119
19119
|
"data-name": "Group 45905"
|
|
19120
19120
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19121
19121
|
"data-name": "Path 85126",
|
|
@@ -19295,28 +19295,28 @@ var SvgIluInventoryTransfer = function SvgIluInventoryTransfer(props) {
|
|
|
19295
19295
|
}), /*#__PURE__*/React.createElement("path", {
|
|
19296
19296
|
"data-name": "Rectangle 21742",
|
|
19297
19297
|
d: "M92.098 53.128h5.083v2.754h-5.083z"
|
|
19298
|
-
}))))), _path$
|
|
19298
|
+
}))))), _path$y || (_path$y = /*#__PURE__*/React.createElement("path", {
|
|
19299
19299
|
"data-name": "Rectangle 21743",
|
|
19300
19300
|
fill: "none",
|
|
19301
19301
|
d: "M0 0h170v170H0z"
|
|
19302
19302
|
})));
|
|
19303
19303
|
};
|
|
19304
19304
|
|
|
19305
|
-
var _defs$
|
|
19306
|
-
function _extends$
|
|
19305
|
+
var _defs$h, _g$M, _path$x;
|
|
19306
|
+
function _extends$Z() { _extends$Z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Z.apply(this, arguments); }
|
|
19307
19307
|
var SvgIluLabelingOfPallets = function SvgIluLabelingOfPallets(props) {
|
|
19308
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
19308
|
+
return /*#__PURE__*/React.createElement("svg", _extends$Z({
|
|
19309
19309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19310
19310
|
width: 170,
|
|
19311
19311
|
height: 170
|
|
19312
|
-
}, props), _defs$
|
|
19312
|
+
}, props), _defs$h || (_defs$h = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19313
19313
|
id: "ilu_labeling-of-pallets_svg__a"
|
|
19314
19314
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19315
19315
|
"data-name": "Path 84989",
|
|
19316
19316
|
d: "M169.235 101.144c0 .677-.008 1.349-.03 2.022a65.018 65.018 0 0 1-1.285 11.108c-.187.931-.39 1.853-.618 2.766a55.96 55.96 0 0 1-.821 3.024q-.635 2.164-1.421 4.26l-.076.212a64.477 64.477 0 0 1-1.354 3.321s0 .013-.008.025c-.093.207-.182.41-.275.613a68.6 68.6 0 0 1-4.073 7.7 69.779 69.779 0 0 1-5.059 7.187l-.051.063c-.216.262-.431.529-.647.791-.034.042-.068.08-.1.123-.161.195-.326.389-.491.584l-.288.338a39.1 39.1 0 0 1-.584.677q-.857.977-1.751 1.916a67.54 67.54 0 0 1-2.056 2.09q-1.669 1.637-3.439 3.156a76.127 76.127 0 0 1-12.665 8.815 78.536 78.536 0 0 1-14.492 6.218 80.3 80.3 0 0 1-16.539 3.342q-3.832.368-7.771.368a78.422 78.422 0 0 1-54.914-21.89v-.008q-1.053-1.022-2.055-2.09a72.328 72.328 0 0 1-3.114-3.515c-.025-.034-.055-.063-.08-.1l-.021-.025a70.962 70.962 0 0 1-5.753-8.041 66.761 66.761 0 0 1-9.932-33.028 54.395 54.395 0 0 1-.034-2.022c0-.563.008-1.121.021-1.679A65.571 65.571 0 0 1 18.5 89.25a68.373 68.373 0 0 1 16.551-33.417q1.713-1.9 3.562-3.7a78.444 78.444 0 0 1 54.723-21.71 78.436 78.436 0 0 1 54.719 21.713q1.846 1.789 3.562 3.7A70.182 70.182 0 0 1 162.653 72.3a66.98 66.98 0 0 1 2.644 6.3c.08.224.161.448.237.673.195.546.377 1.1.554 1.65a66.307 66.307 0 0 1 3.112 18.119c0 .14.008.279.013.423v.25c.018.473.022.951.022 1.429Z",
|
|
19317
19317
|
transform: "translate(-17.433 -30.423)",
|
|
19318
19318
|
fill: "none"
|
|
19319
|
-
})))), _g$
|
|
19319
|
+
})))), _g$M || (_g$M = /*#__PURE__*/React.createElement("g", {
|
|
19320
19320
|
"data-name": "Group 45194"
|
|
19321
19321
|
}, /*#__PURE__*/React.createElement("g", {
|
|
19322
19322
|
"data-name": "Group 45139"
|
|
@@ -19630,28 +19630,28 @@ var SvgIluLabelingOfPallets = function SvgIluLabelingOfPallets(props) {
|
|
|
19630
19630
|
"data-name": "Path 84988",
|
|
19631
19631
|
d: "M49.359 52.717h-22.6l.157-.106 22.443-12.11Z",
|
|
19632
19632
|
fill: "#a8a8a8"
|
|
19633
|
-
})))))), _path$
|
|
19633
|
+
})))))), _path$x || (_path$x = /*#__PURE__*/React.createElement("path", {
|
|
19634
19634
|
"data-name": "Rectangle 21512",
|
|
19635
19635
|
fill: "none",
|
|
19636
19636
|
d: "M0 0h170v170H0z"
|
|
19637
19637
|
})));
|
|
19638
19638
|
};
|
|
19639
19639
|
|
|
19640
|
-
var _defs$
|
|
19641
|
-
function _extends$
|
|
19640
|
+
var _defs$g, _g$L, _path$w;
|
|
19641
|
+
function _extends$Y() { _extends$Y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Y.apply(this, arguments); }
|
|
19642
19642
|
var SvgIluLoadingCar = function SvgIluLoadingCar(props) {
|
|
19643
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
19643
|
+
return /*#__PURE__*/React.createElement("svg", _extends$Y({
|
|
19644
19644
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19645
19645
|
width: 170,
|
|
19646
19646
|
height: 170
|
|
19647
|
-
}, props), _defs$
|
|
19647
|
+
}, props), _defs$g || (_defs$g = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
19648
19648
|
id: "ilu_loading-car_svg__a"
|
|
19649
19649
|
}, /*#__PURE__*/React.createElement("path", {
|
|
19650
19650
|
"data-name": "Path 85215",
|
|
19651
19651
|
d: "M170.9 101.479c0 .68-.008 1.356-.03 2.031a65.366 65.366 0 0 1-1.292 11.16 60.473 60.473 0 0 1-.62 2.779 57.463 57.463 0 0 1-.825 3.039q-.637 2.174-1.428 4.28l-.076.213a65.6 65.6 0 0 1-1.36 3.336s0 .013-.008.025c-.094.208-.183.412-.276.616a68.924 68.924 0 0 1-4.093 7.735 70.109 70.109 0 0 1-5.083 7.221l-.051.064-.65.795c-.034.042-.068.081-.1.123-.161.2-.327.391-.493.587l-.289.34c-.191.225-.387.455-.586.68q-.861.982-1.759 1.925a68.175 68.175 0 0 1-2.066 2.1q-1.677 1.645-3.455 3.171a76.489 76.489 0 0 1-12.724 8.857 78.906 78.906 0 0 1-14.56 6.247 80.677 80.677 0 0 1-16.617 3.357q-3.85.37-7.807.37a78.793 78.793 0 0 1-55.173-21.994v-.008q-1.058-1.026-2.065-2.1a72.007 72.007 0 0 1-3.128-3.532c-.026-.034-.055-.064-.081-.1l-.021-.025a71.3 71.3 0 0 1-5.78-8.079 67.076 67.076 0 0 1-9.979-33.184 54.917 54.917 0 0 1-.034-2.031c0-.565.009-1.126.021-1.687a65.933 65.933 0 0 1 1.054-10.264 68.7 68.7 0 0 1 16.618-33.573q1.721-1.913 3.578-3.714a78.815 78.815 0 0 1 54.983-21.816 78.807 78.807 0 0 1 54.978 21.815q1.855 1.8 3.578 3.714A70.513 70.513 0 0 1 164.289 72.5a67.278 67.278 0 0 1 2.656 6.332c.081.225.162.451.238.676.2.548.378 1.1.557 1.657a66.622 66.622 0 0 1 3.128 18.2c0 .14.008.28.013.425v.251c.019.477.019.959.019 1.438Z",
|
|
19652
19652
|
transform: "translate(-18.383 -30.423)",
|
|
19653
19653
|
fill: "none"
|
|
19654
|
-
})))), _g$
|
|
19654
|
+
})))), _g$L || (_g$L = /*#__PURE__*/React.createElement("g", {
|
|
19655
19655
|
"data-name": "Group 46461"
|
|
19656
19656
|
}, /*#__PURE__*/React.createElement("g", {
|
|
19657
19657
|
"data-name": "Group 46460",
|
|
@@ -20011,21 +20011,21 @@ var SvgIluLoadingCar = function SvgIluLoadingCar(props) {
|
|
|
20011
20011
|
"data-name": "Rectangle 21879",
|
|
20012
20012
|
d: "M99.766 59.87h-6.992V42.582h5.492a1.5 1.5 0 0 1 1.5 1.5V59.87Z",
|
|
20013
20013
|
fill: "#e42127"
|
|
20014
|
-
}))))), _path$
|
|
20014
|
+
}))))), _path$w || (_path$w = /*#__PURE__*/React.createElement("path", {
|
|
20015
20015
|
"data-name": "Rectangle 21880",
|
|
20016
20016
|
fill: "none",
|
|
20017
20017
|
d: "M0 0h170v170H0z"
|
|
20018
20018
|
})));
|
|
20019
20019
|
};
|
|
20020
20020
|
|
|
20021
|
-
var _g$
|
|
20022
|
-
function _extends$
|
|
20021
|
+
var _g$K, _path$v;
|
|
20022
|
+
function _extends$X() { _extends$X = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$X.apply(this, arguments); }
|
|
20023
20023
|
var SvgIluManualTransfer = function SvgIluManualTransfer(props) {
|
|
20024
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
20024
|
+
return /*#__PURE__*/React.createElement("svg", _extends$X({
|
|
20025
20025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20026
20026
|
width: 170,
|
|
20027
20027
|
height: 170
|
|
20028
|
-
}, props), _g$
|
|
20028
|
+
}, props), _g$K || (_g$K = /*#__PURE__*/React.createElement("g", {
|
|
20029
20029
|
transform: "translate(9.215 12.933)"
|
|
20030
20030
|
}, /*#__PURE__*/React.createElement("path", {
|
|
20031
20031
|
"data-name": "Path 84771",
|
|
@@ -20668,28 +20668,28 @@ var SvgIluManualTransfer = function SvgIluManualTransfer(props) {
|
|
|
20668
20668
|
"data-name": "Rectangle 21045",
|
|
20669
20669
|
fill: "#fff",
|
|
20670
20670
|
d: "M25.251 97.218h3.455v3.454h-3.455z"
|
|
20671
|
-
}))), _path$
|
|
20671
|
+
}))), _path$v || (_path$v = /*#__PURE__*/React.createElement("path", {
|
|
20672
20672
|
"data-name": "Rectangle 21009",
|
|
20673
20673
|
fill: "none",
|
|
20674
20674
|
d: "M0 0h170v170H0z"
|
|
20675
20675
|
})));
|
|
20676
20676
|
};
|
|
20677
20677
|
|
|
20678
|
-
var _defs$
|
|
20679
|
-
function _extends$
|
|
20678
|
+
var _defs$f, _g$J, _g2$7, _path$u;
|
|
20679
|
+
function _extends$W() { _extends$W = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$W.apply(this, arguments); }
|
|
20680
20680
|
var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAnother(props) {
|
|
20681
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
20681
|
+
return /*#__PURE__*/React.createElement("svg", _extends$W({
|
|
20682
20682
|
xmlns: "http://www.w3.org/2000/svg",
|
|
20683
20683
|
width: 170,
|
|
20684
20684
|
height: 170
|
|
20685
|
-
}, props), _defs$
|
|
20685
|
+
}, props), _defs$f || (_defs$f = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
20686
20686
|
id: "ilu_move-goods-from-pallet-to-another_svg__a"
|
|
20687
20687
|
}, /*#__PURE__*/React.createElement("path", {
|
|
20688
20688
|
"data-name": "Path 84876",
|
|
20689
20689
|
d: "M169.363 101.2c0 .677-.008 1.351-.03 2.024a65.069 65.069 0 0 1-1.287 11.117 60.34 60.34 0 0 1-.619 2.769 57.976 57.976 0 0 1-.821 3.027q-.635 2.165-1.422 4.263l-.076.212a64.193 64.193 0 0 1-1.355 3.323s0 .013-.008.025c-.093.207-.182.411-.275.614a68.655 68.655 0 0 1-4.077 7.705 69.837 69.837 0 0 1-5.063 7.193l-.051.064c-.216.262-.432.529-.648.792-.034.042-.068.08-.1.123-.161.195-.326.389-.491.584l-.288.339a39.1 39.1 0 0 1-.584.677q-.857.978-1.753 1.918a67.638 67.638 0 0 1-2.058 2.091q-1.67 1.638-3.442 3.158a76.194 76.194 0 0 1-12.675 8.823 78.6 78.6 0 0 1-14.5 6.223 80.367 80.367 0 0 1-16.553 3.345q-3.836.368-7.777.368a78.489 78.489 0 0 1-54.96-21.909v-.008q-1.054-1.022-2.057-2.091a71.908 71.908 0 0 1-3.116-3.518c-.025-.034-.055-.064-.08-.1l-.021-.025a71.02 71.02 0 0 1-5.758-8.048 66.817 66.817 0 0 1-9.94-33.056 54.466 54.466 0 0 1-.034-2.024c0-.563.008-1.122.021-1.681A65.627 65.627 0 0 1 18.5 89.3a68.431 68.431 0 0 1 16.566-33.446q1.715-1.905 3.565-3.7A78.511 78.511 0 0 1 93.4 30.423a78.5 78.5 0 0 1 54.766 21.731q1.848 1.791 3.565 3.7a70.241 70.241 0 0 1 11.045 16.481 67.03 67.03 0 0 1 2.646 6.308c.08.224.161.449.237.673.195.546.377 1.1.555 1.651A66.365 66.365 0 0 1 169.33 99.1c0 .14.008.279.013.423v.25c.016.474.02.953.02 1.427Z",
|
|
20690
20690
|
transform: "translate(-17.433 -30.423)",
|
|
20691
20691
|
fill: "none"
|
|
20692
|
-
})))), _g$
|
|
20692
|
+
})))), _g$J || (_g$J = /*#__PURE__*/React.createElement("g", {
|
|
20693
20693
|
"data-name": "Group 44723"
|
|
20694
20694
|
}, /*#__PURE__*/React.createElement("path", {
|
|
20695
20695
|
"data-name": "Path 84869",
|
|
@@ -20699,7 +20699,7 @@ var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAno
|
|
|
20699
20699
|
"data-name": "Path 84870",
|
|
20700
20700
|
d: "M143.81 127.24c-.161.195-.326.389-.491.584l-.288.339c-.191.224-.385.453-.584.677q-.857.978-1.753 1.918a67.638 67.638 0 0 1-2.058 2.091q-1.67 1.638-3.442 3.158a76.194 76.194 0 0 1-12.675 8.823 78.6 78.6 0 0 1-14.5 6.223 80.365 80.365 0 0 1-16.553 3.345q-3.836.368-7.777.368a78.489 78.489 0 0 1-54.96-21.909v-.008q-1.054-1.022-2.058-2.091a71.908 71.908 0 0 1-3.116-3.518Z",
|
|
20701
20701
|
fill: "#cbcbcb"
|
|
20702
|
-
}))), _g2$
|
|
20702
|
+
}))), _g2$7 || (_g2$7 = /*#__PURE__*/React.createElement("g", {
|
|
20703
20703
|
"data-name": "Group 44778"
|
|
20704
20704
|
}, /*#__PURE__*/React.createElement("g", {
|
|
20705
20705
|
"data-name": "Group 44777",
|
|
@@ -21025,28 +21025,28 @@ var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAno
|
|
|
21025
21025
|
"data-name": "Rectangle 21342",
|
|
21026
21026
|
fill: "#e42127",
|
|
21027
21027
|
d: "M116.972 101.133v13.893h-3.456v-13.893z"
|
|
21028
|
-
}))))), _path$
|
|
21028
|
+
}))))), _path$u || (_path$u = /*#__PURE__*/React.createElement("path", {
|
|
21029
21029
|
"data-name": "Rectangle 21343",
|
|
21030
21030
|
fill: "none",
|
|
21031
21031
|
d: "M0 0h170v170H0z"
|
|
21032
21032
|
})));
|
|
21033
21033
|
};
|
|
21034
21034
|
|
|
21035
|
-
var _defs$
|
|
21036
|
-
function _extends$
|
|
21035
|
+
var _defs$e, _g$I, _g2$6, _path$t;
|
|
21036
|
+
function _extends$V() { _extends$V = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$V.apply(this, arguments); }
|
|
21037
21037
|
var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
|
|
21038
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
21038
|
+
return /*#__PURE__*/React.createElement("svg", _extends$V({
|
|
21039
21039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21040
21040
|
width: 170,
|
|
21041
21041
|
height: 170
|
|
21042
|
-
}, props), _defs$
|
|
21042
|
+
}, props), _defs$e || (_defs$e = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
21043
21043
|
id: "ilu_printing-label_svg__a"
|
|
21044
21044
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21045
21045
|
"data-name": "Path 84919",
|
|
21046
21046
|
d: "M169.953 100.871c0 .68-.009 1.356-.03 2.032a65.322 65.322 0 0 1-1.292 11.16 59.512 59.512 0 0 1-.621 2.78 57.454 57.454 0 0 1-.824 3.039q-.638 2.174-1.428 4.28l-.077.213a64.693 64.693 0 0 1-1.36 3.336s0 .013-.009.025c-.094.208-.183.412-.276.616a68.922 68.922 0 0 1-4.093 7.735 70.1 70.1 0 0 1-5.083 7.221l-.051.064-.65.795c-.034.042-.068.081-.1.123-.161.2-.327.391-.493.586l-.289.34c-.191.225-.387.455-.586.68q-.861.982-1.76 1.925a69.307 69.307 0 0 1-2.065 2.1q-1.677 1.645-3.455 3.17a76.486 76.486 0 0 1-12.725 8.857 78.9 78.9 0 0 1-14.56 6.247 80.677 80.677 0 0 1-16.618 3.357q-3.851.37-7.807.37a78.793 78.793 0 0 1-55.173-21.994v-.008q-1.058-1.026-2.065-2.1a72.007 72.007 0 0 1-3.128-3.532c-.026-.034-.055-.064-.081-.1l-.021-.025a71.3 71.3 0 0 1-5.78-8.079 67.076 67.076 0 0 1-9.986-33.184 52.827 52.827 0 0 1-.034-2.032c0-.565.008-1.126.021-1.687a65.882 65.882 0 0 1 1.055-10.261 68.7 68.7 0 0 1 16.625-33.575q1.721-1.913 3.578-3.715a78.815 78.815 0 0 1 54.983-21.815 78.807 78.807 0 0 1 54.978 21.815q1.855 1.8 3.579 3.715A70.514 70.514 0 0 1 163.34 71.89a67.289 67.289 0 0 1 2.66 6.332c.081.225.161.451.238.676.2.548.379 1.105.557 1.658a66.622 66.622 0 0 1 3.128 18.2c0 .14.008.28.013.425v.251c.012.478.017.958.017 1.439Z",
|
|
21047
21047
|
transform: "translate(-17.433 -29.815)",
|
|
21048
21048
|
fill: "none"
|
|
21049
|
-
})))), _g$
|
|
21049
|
+
})))), _g$I || (_g$I = /*#__PURE__*/React.createElement("g", {
|
|
21050
21050
|
"data-name": "Group 44887"
|
|
21051
21051
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21052
21052
|
"data-name": "Path 84915",
|
|
@@ -21056,7 +21056,7 @@ var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
|
|
|
21056
21056
|
"data-name": "Path 84916",
|
|
21057
21057
|
d: "M144.034 127.145c-.161.2-.327.391-.493.587l-.289.34c-.191.225-.387.455-.586.68q-.861.982-1.759 1.925a69.307 69.307 0 0 1-2.065 2.1q-1.677 1.645-3.455 3.17a76.49 76.49 0 0 1-12.725 8.857 78.909 78.909 0 0 1-14.56 6.247 80.681 80.681 0 0 1-16.618 3.357q-3.851.37-7.807.37a78.793 78.793 0 0 1-55.18-21.998q-1.058-1.026-2.065-2.1a72.007 72.007 0 0 1-3.128-3.532Z",
|
|
21058
21058
|
fill: "#cbcbcb"
|
|
21059
|
-
}))), _g2$
|
|
21059
|
+
}))), _g2$6 || (_g2$6 = /*#__PURE__*/React.createElement("g", {
|
|
21060
21060
|
"data-name": "Group 44907"
|
|
21061
21061
|
}, /*#__PURE__*/React.createElement("g", {
|
|
21062
21062
|
"data-name": "Group 44906",
|
|
@@ -21210,34 +21210,34 @@ var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
|
|
|
21210
21210
|
"data-name": "Rectangle 21409",
|
|
21211
21211
|
fill: "#5d5d5c",
|
|
21212
21212
|
d: "M58.509 25.279h31.224v.425H58.509z"
|
|
21213
|
-
})))))), _path$
|
|
21213
|
+
})))))), _path$t || (_path$t = /*#__PURE__*/React.createElement("path", {
|
|
21214
21214
|
"data-name": "Rectangle 21410",
|
|
21215
21215
|
fill: "none",
|
|
21216
21216
|
d: "M0 0h170v170H0z"
|
|
21217
21217
|
})));
|
|
21218
21218
|
};
|
|
21219
21219
|
|
|
21220
|
-
var _defs$
|
|
21221
|
-
function _extends$
|
|
21220
|
+
var _defs$d, _g$H, _g2$5, _path$s;
|
|
21221
|
+
function _extends$U() { _extends$U = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$U.apply(this, arguments); }
|
|
21222
21222
|
var SvgIluProduction = function SvgIluProduction(props) {
|
|
21223
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
21223
|
+
return /*#__PURE__*/React.createElement("svg", _extends$U({
|
|
21224
21224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21225
21225
|
width: 170,
|
|
21226
21226
|
height: 170
|
|
21227
|
-
}, props), _defs$
|
|
21227
|
+
}, props), _defs$d || (_defs$d = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
21228
21228
|
id: "ilu_production_svg__a"
|
|
21229
21229
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21230
21230
|
"data-name": "Path 85301",
|
|
21231
21231
|
d: "M716.33 569.924c0 .68-.009 1.357-.03 2.033a65.418 65.418 0 0 1-1.293 11.169 59.31 59.31 0 0 1-.621 2.782 57.534 57.534 0 0 1-.825 3.041q-.638 2.176-1.429 4.283l-.077.213a64.806 64.806 0 0 1-1.361 3.339s0 .013-.008.026c-.094.208-.183.413-.276.617a68.963 68.963 0 0 1-4.1 7.741 70.164 70.164 0 0 1-5.087 7.226l-.051.064c-.217.264-.434.532-.651.8-.034.043-.068.081-.1.123-.162.2-.328.391-.493.587l-.289.34c-.191.225-.387.455-.587.68q-.861.982-1.761 1.927a67.117 67.117 0 0 1-2.067 2.1q-1.678 1.646-3.458 3.173a76.553 76.553 0 0 1-12.734 8.864 78.962 78.962 0 0 1-14.572 6.252 80.736 80.736 0 0 1-16.63 3.36q-3.853.37-7.813.37a78.853 78.853 0 0 1-55.216-22.01v-.008q-1.059-1.027-2.067-2.1a72.034 72.034 0 0 1-3.13-3.534c-.026-.034-.055-.064-.081-.1l-.021-.026a71.352 71.352 0 0 1-5.784-8.085 67.127 67.127 0 0 1-9.987-33.209 52.88 52.88 0 0 1-.034-2.033c0-.566.008-1.127.021-1.689a65.991 65.991 0 0 1 1.055-10.272 68.75 68.75 0 0 1 16.639-33.6q1.723-1.914 3.581-3.717a80.251 80.251 0 0 1 110.04 0q1.857 1.8 3.581 3.717a70.564 70.564 0 0 1 11.1 16.558 67.315 67.315 0 0 1 2.658 6.337c.081.225.162.451.238.676.2.549.378 1.106.557 1.659a66.671 66.671 0 0 1 3.13 18.217c0 .14.008.281.013.425v.251c.016.472.02.952.02 1.433Z",
|
|
21232
21232
|
transform: "translate(-563.694 -498.814)",
|
|
21233
21233
|
fill: "none"
|
|
21234
|
-
})))), _g$
|
|
21234
|
+
})))), _g$H || (_g$H = /*#__PURE__*/React.createElement("g", {
|
|
21235
21235
|
"data-name": "Group 46712"
|
|
21236
21236
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21237
21237
|
"data-name": "Path 85290",
|
|
21238
21238
|
d: "M159.982 83.982a65.4 65.4 0 0 1-.03 2.033 65.389 65.389 0 0 1-1.296 11.168 59.31 59.31 0 0 1-.621 2.782 57.534 57.534 0 0 1-.825 3.041q-.638 2.175-1.429 4.283l-.077.213a65.174 65.174 0 0 1-1.361 3.339s0 .013-.008.026c-.094.208-.183.413-.276.617a69 69 0 0 1-4.1 7.741 70.181 70.181 0 0 1-5.087 7.226l-.051.064c-.217.264-.434.532-.651.8-.034.043-.068.081-.1.123-.162.2-.328.391-.493.586l-.289.341c-.191.225-.387.455-.587.68q-.861.983-1.761 1.927a68.226 68.226 0 0 1-2.067 2.1q-1.678 1.646-3.458 3.173a76.549 76.549 0 0 1-12.734 8.864 78.966 78.966 0 0 1-14.572 6.252 80.74 80.74 0 0 1-16.63 3.36q-3.853.37-7.813.37A78.854 78.854 0 0 1 28.45 133.08v-.009q-1.059-1.027-2.067-2.1a72.183 72.183 0 0 1-3.075-3.471.75.75 0 0 1-.055-.064c-.025-.034-.055-.064-.081-.1l-.021-.026a71.347 71.347 0 0 1-5.784-8.085A67.129 67.129 0 0 1 7.38 86.016a52.88 52.88 0 0 1-.034-2.033c0-.566.009-1.127.021-1.688a65.99 65.99 0 0 1 1.055-10.272 68.75 68.75 0 0 1 16.639-33.6l.268-.294q1.6-1.761 3.313-3.424a80.251 80.251 0 0 1 110.04 0q1.857 1.8 3.581 3.717a70.57 70.57 0 0 1 11.1 16.558 67.371 67.371 0 0 1 2.658 6.337c.081.225.161.451.238.676.2.549.379 1.106.557 1.659a66.668 66.668 0 0 1 3.13 18.217c0 .14.009.281.013.425v.251c.019.476.023.956.023 1.437Z",
|
|
21239
21239
|
fill: "#e0e0e0"
|
|
21240
|
-
}))), _g2$
|
|
21240
|
+
}))), _g2$5 || (_g2$5 = /*#__PURE__*/React.createElement("g", {
|
|
21241
21241
|
"data-name": "Group 46777"
|
|
21242
21242
|
}, /*#__PURE__*/React.createElement("g", {
|
|
21243
21243
|
"data-name": "Group 46776",
|
|
@@ -21669,28 +21669,28 @@ var SvgIluProduction = function SvgIluProduction(props) {
|
|
|
21669
21669
|
"data-name": "Rectangle 21993",
|
|
21670
21670
|
fill: "#930000",
|
|
21671
21671
|
d: "M80.076 23.671h27.776v.425H80.076z"
|
|
21672
|
-
})))))), _path$
|
|
21672
|
+
})))))), _path$s || (_path$s = /*#__PURE__*/React.createElement("path", {
|
|
21673
21673
|
"data-name": "Rectangle 21994",
|
|
21674
21674
|
fill: "none",
|
|
21675
21675
|
d: "M0 0h170v170H0z"
|
|
21676
21676
|
})));
|
|
21677
21677
|
};
|
|
21678
21678
|
|
|
21679
|
-
var _defs$
|
|
21680
|
-
function _extends$
|
|
21679
|
+
var _defs$c, _g$G, _g2$4, _path$r;
|
|
21680
|
+
function _extends$T() { _extends$T = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$T.apply(this, arguments); }
|
|
21681
21681
|
var SvgIluQualityControl = function SvgIluQualityControl(props) {
|
|
21682
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
21682
|
+
return /*#__PURE__*/React.createElement("svg", _extends$T({
|
|
21683
21683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
21684
21684
|
width: 170,
|
|
21685
21685
|
height: 170
|
|
21686
|
-
}, props), _defs$
|
|
21686
|
+
}, props), _defs$c || (_defs$c = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
21687
21687
|
id: "ilu_quality-control_svg__a"
|
|
21688
21688
|
}, /*#__PURE__*/React.createElement("path", {
|
|
21689
21689
|
"data-name": "Path 85248",
|
|
21690
21690
|
d: "M169.355 101.2c0 .677-.008 1.35-.03 2.024a65.065 65.065 0 0 1-1.287 11.117c-.187.931-.39 1.854-.618 2.769a57.976 57.976 0 0 1-.821 3.027q-.635 2.165-1.422 4.263l-.076.212a64.193 64.193 0 0 1-1.355 3.323s0 .013-.008.025c-.093.207-.182.411-.275.614a68.65 68.65 0 0 1-4.077 7.7 69.832 69.832 0 0 1-5.063 7.192l-.051.063c-.216.262-.432.529-.648.792-.034.042-.068.08-.1.123-.161.195-.326.389-.491.584l-.288.339a39.1 39.1 0 0 1-.584.677q-.857.978-1.753 1.918a68.761 68.761 0 0 1-2.057 2.091q-1.67 1.638-3.442 3.158a76.188 76.188 0 0 1-12.675 8.822 78.6 78.6 0 0 1-14.5 6.223 80.362 80.362 0 0 1-16.552 3.344q-3.835.368-7.777.368a78.484 78.484 0 0 1-54.957-21.908v-.008q-1.054-1.022-2.057-2.091a71.908 71.908 0 0 1-3.116-3.518c-.025-.034-.055-.064-.08-.1l-.021-.025a71.015 71.015 0 0 1-5.757-8.048 66.813 66.813 0 0 1-9.94-33.054 54.466 54.466 0 0 1-.034-2.024c0-.563.008-1.122.021-1.681A65.623 65.623 0 0 1 18.5 89.3a68.427 68.427 0 0 1 16.56-33.443q1.714-1.905 3.564-3.7A78.506 78.506 0 0 1 93.4 30.423a78.5 78.5 0 0 1 54.762 21.73q1.848 1.791 3.564 3.7a70.237 70.237 0 0 1 11.045 16.48 67.023 67.023 0 0 1 2.646 6.308c.08.224.161.449.237.673.195.546.377 1.1.555 1.651a66.361 66.361 0 0 1 3.112 18.135c0 .14.008.279.013.423v.25c.017.47.021.949.021 1.427Z",
|
|
21691
21691
|
transform: "translate(-17.433 -30.423)",
|
|
21692
21692
|
fill: "none"
|
|
21693
|
-
})))), _g$
|
|
21693
|
+
})))), _g$G || (_g$G = /*#__PURE__*/React.createElement("g", {
|
|
21694
21694
|
"data-name": "Group 46586",
|
|
21695
21695
|
clipPath: "url(#ilu_quality-control_svg__a)",
|
|
21696
21696
|
transform: "translate(7.711 13.21)"
|
|
@@ -22009,7 +22009,7 @@ var SvgIluQualityControl = function SvgIluQualityControl(props) {
|
|
|
22009
22009
|
"data-name": "Path 85247",
|
|
22010
22010
|
d: "M97.353 63.889a2.653 2.653 0 0 1-2.04-.949l-2.547-3.059 1.952-1.625 2.544 3.055a.115.115 0 0 0 .163.012l7.595-6.332 1.626 1.95-7.594 6.332a2.643 2.643 0 0 1-1.699.616Z",
|
|
22011
22011
|
fill: "#e42127"
|
|
22012
|
-
})))), _g2$
|
|
22012
|
+
})))), _g2$4 || (_g2$4 = /*#__PURE__*/React.createElement("g", {
|
|
22013
22013
|
"data-name": "Group 46634",
|
|
22014
22014
|
clipPath: "url(#ilu_quality-control_svg__a)",
|
|
22015
22015
|
transform: "translate(7.711 13.21)"
|
|
@@ -22328,28 +22328,28 @@ var SvgIluQualityControl = function SvgIluQualityControl(props) {
|
|
|
22328
22328
|
"data-name": "Path 85267",
|
|
22329
22329
|
d: "M97.353 63.889a2.653 2.653 0 0 1-2.04-.949l-2.547-3.059 1.952-1.625 2.544 3.055a.115.115 0 0 0 .163.012l7.595-6.332 1.626 1.95-7.594 6.332a2.643 2.643 0 0 1-1.699.616Z",
|
|
22330
22330
|
fill: "#e42127"
|
|
22331
|
-
})))), _path$
|
|
22331
|
+
})))), _path$r || (_path$r = /*#__PURE__*/React.createElement("path", {
|
|
22332
22332
|
"data-name": "Rectangle 21927",
|
|
22333
22333
|
fill: "none",
|
|
22334
22334
|
d: "M0 0h170v170H0z"
|
|
22335
22335
|
})));
|
|
22336
22336
|
};
|
|
22337
22337
|
|
|
22338
|
-
var _defs$
|
|
22339
|
-
function _extends$
|
|
22338
|
+
var _defs$b, _g$F, _g2$3, _g3$2, _g4$2, _g5$1, _g6$1, _g7$1, _g8$1, _path$q;
|
|
22339
|
+
function _extends$S() { _extends$S = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$S.apply(this, arguments); }
|
|
22340
22340
|
var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehouse(props) {
|
|
22341
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
22341
|
+
return /*#__PURE__*/React.createElement("svg", _extends$S({
|
|
22342
22342
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22343
22343
|
width: 170,
|
|
22344
22344
|
height: 170
|
|
22345
|
-
}, props), _defs$
|
|
22345
|
+
}, props), _defs$b || (_defs$b = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
22346
22346
|
id: "ilu_release-of-goods-from-warehouse_svg__a"
|
|
22347
22347
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22348
22348
|
"data-name": "Path 84826",
|
|
22349
22349
|
d: "M170.821 101.441c0 .68-.008 1.355-.03 2.03a65.331 65.331 0 0 1-1.291 11.154 60.43 60.43 0 0 1-.62 2.778 56.437 56.437 0 0 1-.824 3.037q-.637 2.173-1.427 4.277l-.076.212a65.147 65.147 0 0 1-1.359 3.334s0 .013-.008.025c-.093.208-.183.412-.276.616a68.885 68.885 0 0 1-4.091 7.731 70.069 70.069 0 0 1-5.08 7.217l-.051.064c-.217.263-.433.531-.65.794-.034.042-.068.081-.1.123-.161.2-.327.391-.493.586l-.289.34c-.191.225-.387.455-.586.68q-.86.981-1.759 1.924a71.703 71.703 0 0 1-2.064 2.1q-1.676 1.644-3.453 3.169a76.445 76.445 0 0 1-12.718 8.852 78.862 78.862 0 0 1-14.553 6.244 80.634 80.634 0 0 1-16.609 3.356q-3.848.37-7.8.37a78.751 78.751 0 0 1-55.154-21.982v-.008q-1.058-1.026-2.064-2.1a72.386 72.386 0 0 1-3.126-3.53c-.025-.034-.055-.064-.081-.1l-.021-.025a71.258 71.258 0 0 1-5.777-8.075 67.04 67.04 0 0 1-9.974-33.166 54.826 54.826 0 0 1-.034-2.03c0-.565.008-1.126.021-1.686A65.9 65.9 0 0 1 19.458 89.5a68.66 68.66 0 0 1 16.617-33.561q1.72-1.911 3.577-3.712A78.773 78.773 0 0 1 94.6 30.423a78.765 78.765 0 0 1 54.948 21.8q1.854 1.8 3.577 3.712a70.475 70.475 0 0 1 11.082 16.536 67.24 67.24 0 0 1 2.655 6.329c.081.225.161.45.238.675.2.548.378 1.1.556 1.657a66.588 66.588 0 0 1 3.126 18.193c0 .14.008.28.013.425v.251c.021.48.026.96.026 1.44Z",
|
|
22350
22350
|
transform: "translate(-18.383 -30.423)",
|
|
22351
22351
|
fill: "none"
|
|
22352
|
-
})))), _g$
|
|
22352
|
+
})))), _g$F || (_g$F = /*#__PURE__*/React.createElement("g", {
|
|
22353
22353
|
"data-name": "Group 44559"
|
|
22354
22354
|
}, /*#__PURE__*/React.createElement("g", {
|
|
22355
22355
|
"data-name": "Group 44558",
|
|
@@ -22729,7 +22729,7 @@ var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehou
|
|
|
22729
22729
|
"data-name": "Path 84825",
|
|
22730
22730
|
d: "M152.437 71.018c0 .68-.008 1.355-.03 2.03a65.286 65.286 0 0 1-1.291 11.154 59.146 59.146 0 0 1-.621 2.778 56.437 56.437 0 0 1-.824 3.037q-.637 2.173-1.427 4.277l-.076.212a65.147 65.147 0 0 1-1.359 3.334s0 .013-.008.025c-.093.208-.182.412-.276.616a68.955 68.955 0 0 1-4.091 7.731 69.942 69.942 0 0 1-5.08 7.217l-.051.064c-.217.263-.433.531-.65.794-.034.042-.068.081-.1.123-.162.2-.327.391-.493.586l-.289.34c-.191.225-.386.455-.586.68q-.861.981-1.759 1.924a71.703 71.703 0 0 1-2.064 2.1q-1.676 1.644-3.454 3.169a76.424 76.424 0 0 1-12.717 8.852 78.853 78.853 0 0 1-14.553 6.244 80.628 80.628 0 0 1-16.609 3.356q-3.848.37-7.8.37a78.751 78.751 0 0 1-55.144-21.982v-.008q-1.057-1.026-2.064-2.1a72.94 72.94 0 0 1-3.127-3.53c-.025-.034-.055-.064-.08-.1l-.022-.025a71.312 71.312 0 0 1-5.777-8.075A67.045 67.045 0 0 1 .041 73.045a54.826 54.826 0 0 1-.034-2.03c0-.565.008-1.126.021-1.686a65.846 65.846 0 0 1 1.046-10.252 68.663 68.663 0 0 1 16.617-33.561q1.72-1.911 3.577-3.712A78.774 78.774 0 0 1 76.219 0a78.764 78.764 0 0 1 54.948 21.8q1.855 1.8 3.577 3.712a70.473 70.473 0 0 1 11.082 16.536 67.143 67.143 0 0 1 2.655 6.329c.081.225.162.45.238.675.2.548.378 1.1.557 1.657a66.608 66.608 0 0 1 3.126 18.193c0 .14.008.28.013.425v.251c.017.48.022.96.022 1.44Z",
|
|
22731
22731
|
fill: "none"
|
|
22732
|
-
}))))), _g2$
|
|
22732
|
+
}))))), _g2$3 || (_g2$3 = /*#__PURE__*/React.createElement("g", {
|
|
22733
22733
|
"data-name": "Group 44561"
|
|
22734
22734
|
}, /*#__PURE__*/React.createElement("g", {
|
|
22735
22735
|
"data-name": "Group 44560"
|
|
@@ -22788,28 +22788,28 @@ var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehou
|
|
|
22788
22788
|
"data-name": "Rectangle 21150",
|
|
22789
22789
|
fill: "#e42127",
|
|
22790
22790
|
d: "M93.691 56.047h3.423v2.761h-3.423z"
|
|
22791
|
-
})))), _path$
|
|
22791
|
+
})))), _path$q || (_path$q = /*#__PURE__*/React.createElement("path", {
|
|
22792
22792
|
"data-name": "Rectangle 21151",
|
|
22793
22793
|
fill: "none",
|
|
22794
22794
|
d: "M0 0h170v170H0z"
|
|
22795
22795
|
})));
|
|
22796
22796
|
};
|
|
22797
22797
|
|
|
22798
|
-
var _defs$
|
|
22799
|
-
function _extends$
|
|
22798
|
+
var _defs$a, _g$E, _path$p;
|
|
22799
|
+
function _extends$R() { _extends$R = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$R.apply(this, arguments); }
|
|
22800
22800
|
var SvgIluRemoveGoodsFromPallet = function SvgIluRemoveGoodsFromPallet(props) {
|
|
22801
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
22801
|
+
return /*#__PURE__*/React.createElement("svg", _extends$R({
|
|
22802
22802
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22803
22803
|
width: 170,
|
|
22804
22804
|
height: 170
|
|
22805
|
-
}, props), _defs$
|
|
22805
|
+
}, props), _defs$a || (_defs$a = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
22806
22806
|
id: "ilu_remove_goods_from_pallet_svg__a"
|
|
22807
22807
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22808
22808
|
"data-name": "Path 84868",
|
|
22809
22809
|
d: "M169.355 101.2c0 .677-.008 1.35-.03 2.024a65.065 65.065 0 0 1-1.287 11.117c-.187.931-.39 1.854-.618 2.769a57.976 57.976 0 0 1-.821 3.027q-.635 2.165-1.422 4.263l-.076.212a64.193 64.193 0 0 1-1.355 3.323s0 .013-.008.025c-.093.207-.182.411-.275.614a68.65 68.65 0 0 1-4.077 7.7 69.832 69.832 0 0 1-5.063 7.192l-.051.063c-.216.262-.432.529-.648.792-.034.042-.068.08-.1.123-.161.195-.326.389-.491.584l-.288.339a39.1 39.1 0 0 1-.584.677q-.857.978-1.753 1.918a68.761 68.761 0 0 1-2.057 2.091q-1.67 1.638-3.442 3.158a76.188 76.188 0 0 1-12.675 8.822 78.6 78.6 0 0 1-14.5 6.223 80.362 80.362 0 0 1-16.552 3.344q-3.835.368-7.777.368a78.484 78.484 0 0 1-54.957-21.908v-.008q-1.054-1.022-2.057-2.091a71.908 71.908 0 0 1-3.116-3.518c-.025-.034-.055-.064-.08-.1l-.021-.025a71.015 71.015 0 0 1-5.757-8.048 66.813 66.813 0 0 1-9.94-33.054 54.466 54.466 0 0 1-.034-2.024c0-.563.008-1.122.021-1.681A65.623 65.623 0 0 1 18.5 89.3a68.427 68.427 0 0 1 16.56-33.443q1.714-1.905 3.564-3.7A78.506 78.506 0 0 1 93.4 30.423a78.5 78.5 0 0 1 54.762 21.73q1.848 1.791 3.564 3.7a70.237 70.237 0 0 1 11.045 16.48 67.023 67.023 0 0 1 2.646 6.308c.08.224.161.449.237.673.195.546.377 1.1.555 1.651a66.361 66.361 0 0 1 3.112 18.135c0 .14.008.279.013.423v.25c.017.47.021.949.021 1.427Z",
|
|
22810
22810
|
transform: "translate(-17.433 -30.423)",
|
|
22811
22811
|
fill: "none"
|
|
22812
|
-
})))), _g$
|
|
22812
|
+
})))), _g$E || (_g$E = /*#__PURE__*/React.createElement("g", {
|
|
22813
22813
|
"data-name": "ilu_remove_goods_from_pallet _2"
|
|
22814
22814
|
}, /*#__PURE__*/React.createElement("g", {
|
|
22815
22815
|
"data-name": "Group 44716"
|
|
@@ -22977,28 +22977,28 @@ var SvgIluRemoveGoodsFromPallet = function SvgIluRemoveGoodsFromPallet(props) {
|
|
|
22977
22977
|
"data-name": "Rectangle 21297",
|
|
22978
22978
|
fill: "#e42127",
|
|
22979
22979
|
d: "M103.205 101.127v13.892h-3.456v-13.892z"
|
|
22980
|
-
}))))), _path$
|
|
22980
|
+
}))))), _path$p || (_path$p = /*#__PURE__*/React.createElement("path", {
|
|
22981
22981
|
"data-name": "Rectangle 21298",
|
|
22982
22982
|
fill: "none",
|
|
22983
22983
|
d: "M0 0h170v170H0z"
|
|
22984
22984
|
})));
|
|
22985
22985
|
};
|
|
22986
22986
|
|
|
22987
|
-
var _defs$
|
|
22988
|
-
function _extends$
|
|
22987
|
+
var _defs$9, _g$D, _g2$2, _g3$1, _g4$1, _path$o;
|
|
22988
|
+
function _extends$Q() { _extends$Q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$Q.apply(this, arguments); }
|
|
22989
22989
|
var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
|
|
22990
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
22990
|
+
return /*#__PURE__*/React.createElement("svg", _extends$Q({
|
|
22991
22991
|
xmlns: "http://www.w3.org/2000/svg",
|
|
22992
22992
|
width: 170,
|
|
22993
22993
|
height: 170
|
|
22994
|
-
}, props), _defs$
|
|
22994
|
+
}, props), _defs$9 || (_defs$9 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
22995
22995
|
id: "ilu_reprinting-label_svg__a"
|
|
22996
22996
|
}, /*#__PURE__*/React.createElement("path", {
|
|
22997
22997
|
"data-name": "Path 84924",
|
|
22998
22998
|
d: "M172.943 103.8c0 .679-.008 1.354-.03 2.03a65.307 65.307 0 0 1-1.291 11.15c-.187.934-.391 1.86-.62 2.777a56.402 56.402 0 0 1-.824 3.036q-.637 2.172-1.427 4.276l-.076.212a65.485 65.485 0 0 1-1.359 3.333s0 .013-.008.025c-.093.208-.183.412-.276.616a68.86 68.86 0 0 1-4.089 7.728 70.038 70.038 0 0 1-5.078 7.214l-.051.064c-.217.263-.433.531-.65.794-.034.042-.068.081-.1.123-.161.2-.327.391-.493.586l-.289.34c-.191.225-.386.454-.586.679q-.86.981-1.758 1.923a71.682 71.682 0 0 1-2.064 2.1q-1.675 1.643-3.452 3.168a76.414 76.414 0 0 1-12.713 8.849 78.834 78.834 0 0 1-14.547 6.242 80.6 80.6 0 0 1-16.6 3.354q-3.847.369-7.8.369a78.72 78.72 0 0 1-55.122-21.973v-.008q-1.057-1.025-2.064-2.1a72.32 72.32 0 0 1-3.125-3.528c-.025-.034-.055-.064-.081-.1l-.021-.025a71.23 71.23 0 0 1-5.775-8.072 67.014 67.014 0 0 1-9.97-33.153 54.79 54.79 0 0 1-.034-2.03c0-.565.008-1.125.021-1.686a65.872 65.872 0 0 1 1.053-10.254A68.633 68.633 0 0 1 38.25 58.321q1.72-1.911 3.575-3.711a78.742 78.742 0 0 1 54.931-21.795 78.734 78.734 0 0 1 54.927 21.8q1.853 1.8 3.575 3.711a70.449 70.449 0 0 1 11.078 16.53 67.223 67.223 0 0 1 2.654 6.327c.081.225.161.45.238.675.2.548.378 1.1.556 1.656a66.562 66.562 0 0 1 3.125 18.186c0 .14.008.28.013.425v.251c.017.469.021.949.021 1.424Z",
|
|
22999
22999
|
transform: "translate(-20.565 -32.815)",
|
|
23000
23000
|
fill: "none"
|
|
23001
|
-
})))), _g$
|
|
23001
|
+
})))), _g$D || (_g$D = /*#__PURE__*/React.createElement("g", {
|
|
23002
23002
|
"data-name": "Group 44912"
|
|
23003
23003
|
}, /*#__PURE__*/React.createElement("g", {
|
|
23004
23004
|
"data-name": "Group 44910"
|
|
@@ -23012,7 +23012,7 @@ var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
|
|
|
23012
23012
|
"data-name": "Path 84921",
|
|
23013
23013
|
d: "M145.309 128.38c-.161.2-.327.391-.493.586l-.289.34c-.191.225-.386.454-.586.679q-.86.981-1.758 1.923a71.682 71.682 0 0 1-2.064 2.1q-1.675 1.643-3.452 3.168a76.417 76.417 0 0 1-12.713 8.849 78.834 78.834 0 0 1-14.547 6.242 80.6 80.6 0 0 1-16.6 3.354q-3.847.369-7.8.369a78.72 78.72 0 0 1-55.127-21.975v-.009q-1.057-1.025-2.064-2.1a71.878 71.878 0 0 1-3.125-3.529Z",
|
|
23014
23014
|
fill: "#cbcbcb"
|
|
23015
|
-
})))), _g2$
|
|
23015
|
+
})))), _g2$2 || (_g2$2 = /*#__PURE__*/React.createElement("g", {
|
|
23016
23016
|
"data-name": "Group 44938"
|
|
23017
23017
|
}, /*#__PURE__*/React.createElement("g", {
|
|
23018
23018
|
"data-name": "Group 44937",
|
|
@@ -23210,28 +23210,28 @@ var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
|
|
|
23210
23210
|
}), /*#__PURE__*/React.createElement("path", {
|
|
23211
23211
|
"data-name": "Path 84932",
|
|
23212
23212
|
d: "m49.206 83.734 1.83 2.862a12.778 12.778 0 0 0 2.616-2.2l-2.524-2.273a9.349 9.349 0 0 1-1.922 1.611Z"
|
|
23213
|
-
}))), _path$
|
|
23213
|
+
}))), _path$o || (_path$o = /*#__PURE__*/React.createElement("path", {
|
|
23214
23214
|
"data-name": "Rectangle 21432",
|
|
23215
23215
|
fill: "none",
|
|
23216
23216
|
d: "M0 0h170v170H0z"
|
|
23217
23217
|
})));
|
|
23218
23218
|
};
|
|
23219
23219
|
|
|
23220
|
-
var _defs$
|
|
23221
|
-
function _extends$
|
|
23220
|
+
var _defs$8, _g$C;
|
|
23221
|
+
function _extends$P() { _extends$P = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$P.apply(this, arguments); }
|
|
23222
23222
|
var SvgIluReturnFromCustomers = function SvgIluReturnFromCustomers(props) {
|
|
23223
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
23223
|
+
return /*#__PURE__*/React.createElement("svg", _extends$P({
|
|
23224
23224
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23225
23225
|
width: 170,
|
|
23226
23226
|
height: 170
|
|
23227
|
-
}, props), _defs$
|
|
23227
|
+
}, props), _defs$8 || (_defs$8 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
23228
23228
|
id: "ilu_return-from-customers_svg__a"
|
|
23229
23229
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23230
23230
|
"data-name": "Path 84902",
|
|
23231
23231
|
d: "M170.787 102.115c0 .684-.009 1.363-.03 2.042a65.689 65.689 0 0 1-1.3 11.214c-.188.939-.393 1.87-.623 2.793a56.785 56.785 0 0 1-.829 3.053q-.641 2.184-1.435 4.3l-.077.214a65.32 65.32 0 0 1-1.367 3.352s0 .013-.009.026c-.094.209-.184.415-.278.62a69.286 69.286 0 0 1-4.113 7.772 70.491 70.491 0 0 1-5.108 7.256l-.051.064c-.218.265-.436.534-.653.8-.034.042-.068.081-.1.124-.162.2-.329.393-.5.589l-.29.342c-.192.226-.389.457-.589.683q-.865.986-1.768 1.934a69.994 69.994 0 0 1-2.075 2.11q-1.685 1.652-3.472 3.186a76.88 76.88 0 0 1-12.786 8.9 79.259 79.259 0 0 1-14.631 6.278 81.094 81.094 0 0 1-16.7 3.374q-3.869.371-7.845.372a79.174 79.174 0 0 1-55.44-22.1v-.013q-1.063-1.031-2.075-2.11a72.678 72.678 0 0 1-3.143-3.548c-.026-.034-.056-.064-.081-.1l-.021-.026a71.68 71.68 0 0 1-5.808-8.118 67.4 67.4 0 0 1-10.027-33.344 53.315 53.315 0 0 1-.034-2.042c0-.568.009-1.131.021-1.695a66.257 66.257 0 0 1 1.059-10.314A69.031 69.031 0 0 1 35.318 56.37q1.73-1.922 3.6-3.732a79.2 79.2 0 0 1 55.243-21.921 79.19 79.19 0 0 1 55.239 21.92q1.864 1.806 3.6 3.732A70.865 70.865 0 0 1 164.142 73a67.6 67.6 0 0 1 2.669 6.363c.081.226.162.453.239.679.2.551.38 1.11.559 1.665a66.943 66.943 0 0 1 3.143 18.291c0 .141.009.282.013.427v.252c.018.473.022.956.022 1.438Z",
|
|
23232
23232
|
transform: "translate(-17.531 -30.717)",
|
|
23233
23233
|
fill: "none"
|
|
23234
|
-
})))), _g$
|
|
23234
|
+
})))), _g$C || (_g$C = /*#__PURE__*/React.createElement("g", {
|
|
23235
23235
|
"data-name": "Group 44789"
|
|
23236
23236
|
}, /*#__PURE__*/React.createElement("g", {
|
|
23237
23237
|
"data-name": "Group 44788"
|
|
@@ -23490,19 +23490,19 @@ var SvgIluReturnFromCustomers = function SvgIluReturnFromCustomers(props) {
|
|
|
23490
23490
|
}))));
|
|
23491
23491
|
};
|
|
23492
23492
|
|
|
23493
|
-
var _defs$
|
|
23494
|
-
function _extends$
|
|
23493
|
+
var _defs$7, _path$n, _path2$e, _path3$6, _path4$2, _path5$2, _path6$1, _path7$1, _ellipse$1, _ellipse2$1, _path8$1, _ellipse3$1, _path9$1, _ellipse4$1, _ellipse5$1, _path10$1, _path11$1, _path12$1, _path13$1, _path14$1, _path15, _path16, _path17, _path18, _circle$1, _circle2$1, _circle3$1, _ellipse6$1, _ellipse7, _path19;
|
|
23494
|
+
function _extends$O() { _extends$O = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$O.apply(this, arguments); }
|
|
23495
23495
|
var SvgIluSale = function SvgIluSale(props) {
|
|
23496
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
23496
|
+
return /*#__PURE__*/React.createElement("svg", _extends$O({
|
|
23497
23497
|
id: "ilu_sale_svg__sprzedaz",
|
|
23498
23498
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23499
23499
|
viewBox: "0 0 400.01 400.01"
|
|
23500
|
-
}, props), _defs$
|
|
23500
|
+
}, props), _defs$7 || (_defs$7 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
23501
23501
|
id: "ilu_sale_svg__clippath"
|
|
23502
23502
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23503
23503
|
className: "ilu_sale_svg__cls-9",
|
|
23504
23504
|
d: "M376.36 197.57c0 1.6-.02 3.19-.07 4.78a153.8 153.8 0 0 1-3.04 26.26c-.44 2.2-.92 4.38-1.46 6.54-.58 2.4-1.23 4.79-1.94 7.15-1 3.41-2.12 6.76-3.36 10.07-.06.17-.12.33-.18.5-1 2.65-2.06 5.27-3.2 7.85-.01.01-.01.03-.02.06-.22.49-.43.97-.65 1.45a162.17 162.17 0 0 1-9.63 18.2c-3.62 5.9-7.61 11.57-11.96 16.99l-.12.15c-.51.62-1.02 1.25-1.53 1.87-.08.1-.16.19-.24.29-.38.46-.77.92-1.16 1.38l-.68.8a148.11 148.11 0 0 1-5.52 6.13c-1.58 1.68-3.21 3.33-4.86 4.94-2.63 2.58-5.34 5.06-8.13 7.46a179.97 179.97 0 0 1-29.94 20.84c-10.73 5.96-22.22 10.9-34.26 14.7-12.46 3.93-25.56 6.61-39.1 7.9-6.04.58-12.16.87-18.37.87-51.07 0-97.14-19.86-129.82-51.75v-.02c-1.66-1.61-3.28-3.26-4.86-4.94-2.55-2.69-5-5.47-7.36-8.31-.06-.08-.13-.15-.19-.23l-.05-.06c-4.98-6.02-9.52-12.38-13.6-19.01-14.19-23.13-22.63-49.72-23.48-78.08-.06-1.59-.08-3.18-.08-4.78 0-1.33.02-2.65.05-3.97.2-8.22 1.04-16.27 2.48-24.15 5.4-29.74 19.23-56.81 39.12-79 2.7-3 5.51-5.92 8.42-8.74h.01c32.64-31.64 78.54-51.33 129.36-51.33s96.71 19.69 129.36 51.33c2.91 2.82 5.72 5.74 8.42 8.74 10.5 11.72 19.32 24.81 26.09 38.93 2.33 4.85 4.42 9.82 6.25 14.9.19.53.38 1.06.56 1.59.46 1.29.89 2.6 1.31 3.9 2.05 6.41 3.69 12.98 4.91 19.68 1.37 7.56 2.2 15.28 2.45 23.15l.03 1c0 .2.01.39.01.59.03 1.12.04 2.25.04 3.38Z"
|
|
23505
|
-
})), /*#__PURE__*/React.createElement("style", null, ".ilu_sale_svg__cls-1{fill:#b7b7b7}.ilu_sale_svg__cls-2{fill:#fff}.ilu_sale_svg__cls-4{fill:#b70000}.ilu_sale_svg__cls-5{fill:#5d5d5c}.ilu_sale_svg__cls-8{fill:#930000}.ilu_sale_svg__cls-9{fill:none}.ilu_sale_svg__cls-10{fill:#a8a8a8}.ilu_sale_svg__cls-11{fill:#e42127}"))), _path$
|
|
23505
|
+
})), /*#__PURE__*/React.createElement("style", null, ".ilu_sale_svg__cls-1{fill:#b7b7b7}.ilu_sale_svg__cls-2{fill:#fff}.ilu_sale_svg__cls-4{fill:#b70000}.ilu_sale_svg__cls-5{fill:#5d5d5c}.ilu_sale_svg__cls-8{fill:#930000}.ilu_sale_svg__cls-9{fill:none}.ilu_sale_svg__cls-10{fill:#a8a8a8}.ilu_sale_svg__cls-11{fill:#e42127}"))), _path$n || (_path$n = /*#__PURE__*/React.createElement("path", {
|
|
23506
23506
|
className: "ilu_sale_svg__cls-9",
|
|
23507
23507
|
d: "M0 0h400v400H0z"
|
|
23508
23508
|
})), /*#__PURE__*/React.createElement("g", {
|
|
@@ -23514,7 +23514,7 @@ var SvgIluSale = function SvgIluSale(props) {
|
|
|
23514
23514
|
style: {
|
|
23515
23515
|
fill: "#e0e0e0"
|
|
23516
23516
|
}
|
|
23517
|
-
}), _path2$
|
|
23517
|
+
}), _path2$e || (_path2$e = /*#__PURE__*/React.createElement("path", {
|
|
23518
23518
|
className: "ilu_sale_svg__cls-2",
|
|
23519
23519
|
d: "M164.02 89.8h177.23c.89 0 1.62.72 1.62 1.62v126.63c0 .89-.72 1.62-1.62 1.62H165.64c-.89 0-1.62-.72-1.62-1.62V89.8Z"
|
|
23520
23520
|
})), /*#__PURE__*/React.createElement("path", {
|
|
@@ -23522,13 +23522,13 @@ var SvgIluSale = function SvgIluSale(props) {
|
|
|
23522
23522
|
style: {
|
|
23523
23523
|
fill: "#cbcbcb"
|
|
23524
23524
|
}
|
|
23525
|
-
}), _path3$
|
|
23525
|
+
}), _path3$6 || (_path3$6 = /*#__PURE__*/React.createElement("path", {
|
|
23526
23526
|
className: "ilu_sale_svg__cls-1",
|
|
23527
23527
|
d: "M349.03 212.01H173.54c-1.17 0-2.12-.95-2.12-2.12V79.82h177.61c1.17 0 2.12.95 2.12 2.12v127.94c0 1.17-.95 2.12-2.12 2.12ZM172.42 80.82v129.06c0 .62.5 1.12 1.12 1.12h175.48c.62 0 1.12-.5 1.12-1.12V81.95c0-.62-.5-1.12-1.12-1.12h-176.6Z"
|
|
23528
|
-
})), _path4$
|
|
23528
|
+
})), _path4$2 || (_path4$2 = /*#__PURE__*/React.createElement("path", {
|
|
23529
23529
|
className: "ilu_sale_svg__cls-2",
|
|
23530
23530
|
d: "M172.93 73.47h160.75c.55 0 1 .45 1 1v6.16c0 .55-.45 1-1 1H171.43v-6.66c0-.83.67-1.5 1.5-1.5Z"
|
|
23531
|
-
})), _path5$
|
|
23531
|
+
})), _path5$2 || (_path5$2 = /*#__PURE__*/React.createElement("path", {
|
|
23532
23532
|
className: "ilu_sale_svg__cls-10",
|
|
23533
23533
|
d: "M302.04 123.79h16.36v65.31h-16.36zM277.55 147.95h16.36v41.15h-16.36zM204.06 147.95h16.36v41.15h-16.36zM228.56 107.52h16.36v81.58h-16.36zM253.05 131.91h16.36v57.19h-16.36z"
|
|
23534
23534
|
})), _path6$1 || (_path6$1 = /*#__PURE__*/React.createElement("path", {
|
|
@@ -23639,21 +23639,21 @@ var SvgIluSale = function SvgIluSale(props) {
|
|
|
23639
23639
|
}))));
|
|
23640
23640
|
};
|
|
23641
23641
|
|
|
23642
|
-
var _defs$
|
|
23643
|
-
function _extends$
|
|
23642
|
+
var _defs$6, _g$B, _path$m;
|
|
23643
|
+
function _extends$N() { _extends$N = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$N.apply(this, arguments); }
|
|
23644
23644
|
var SvgIluShiftPallet = function SvgIluShiftPallet(props) {
|
|
23645
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
23645
|
+
return /*#__PURE__*/React.createElement("svg", _extends$N({
|
|
23646
23646
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23647
23647
|
width: 170,
|
|
23648
23648
|
height: 170
|
|
23649
|
-
}, props), _defs$
|
|
23649
|
+
}, props), _defs$6 || (_defs$6 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
23650
23650
|
id: "ilu_shift_pallet_svg__a"
|
|
23651
23651
|
}, /*#__PURE__*/React.createElement("path", {
|
|
23652
23652
|
"data-name": "Path 85052",
|
|
23653
23653
|
d: "M175.839 101.008c0 .674-.008 1.344-.03 2.014a64.79 64.79 0 0 1-1.281 11.063 59.435 59.435 0 0 1-.615 2.755 56.44 56.44 0 0 1-.817 3.012q-.632 2.155-1.416 4.242l-.076.211a64.834 64.834 0 0 1-1.348 3.307s0 .013-.008.025c-.093.206-.181.409-.274.611a68.314 68.314 0 0 1-4.057 7.667 69.489 69.489 0 0 1-5.039 7.158l-.051.063c-.215.261-.43.527-.645.788-.034.042-.067.08-.1.122-.16.194-.324.388-.489.581l-.286.337c-.19.223-.383.451-.581.674q-.853.973-1.744 1.908c-.666.708-1.352 1.4-2.047 2.081q-1.662 1.63-3.425 3.143a75.818 75.818 0 0 1-12.613 8.78 78.214 78.214 0 0 1-14.433 6.193 79.972 79.972 0 0 1-16.472 3.328q-3.817.367-7.739.367a78.1 78.1 0 0 1-54.691-21.8v-.008q-1.049-1.017-2.047-2.081a69.875 69.875 0 0 1-3.1-3.5c-.025-.034-.055-.063-.08-.1l-.021-.025a70.674 70.674 0 0 1-5.729-8.009 66.49 66.49 0 0 1-9.892-32.894c-.025-.67-.034-1.34-.034-2.014 0-.56.008-1.116.021-1.673a65.357 65.357 0 0 1 1.045-10.174A68.1 68.1 0 0 1 42.2 55.88q1.706-1.9 3.547-3.682a78.127 78.127 0 0 1 54.5-21.62 78.119 78.119 0 0 1 54.5 21.625q1.839 1.782 3.547 3.682a69.9 69.9 0 0 1 10.991 16.4 66.7 66.7 0 0 1 2.633 6.277c.08.223.16.447.236.67.194.543.375 1.1.552 1.643a66.041 66.041 0 0 1 3.1 18.044c0 .139.008.278.013.421v.249c.016.467.02.943.02 1.419Z",
|
|
23654
23654
|
transform: "translate(-24.652 -30.573)",
|
|
23655
23655
|
fill: "none"
|
|
23656
|
-
})))), _g$
|
|
23656
|
+
})))), _g$B || (_g$B = /*#__PURE__*/React.createElement("g", {
|
|
23657
23657
|
"data-name": "Group 45386"
|
|
23658
23658
|
}, /*#__PURE__*/React.createElement("g", {
|
|
23659
23659
|
"data-name": "Group 45385",
|
|
@@ -23929,17 +23929,17 @@ var SvgIluShiftPallet = function SvgIluShiftPallet(props) {
|
|
|
23929
23929
|
"data-name": "Path 85051",
|
|
23930
23930
|
d: "M96.774 97.239h-.843V40.347l-3.243-2.252.481-.692 3.605 2.5Z",
|
|
23931
23931
|
fill: "#fff"
|
|
23932
|
-
})))))), _path$
|
|
23932
|
+
})))))), _path$m || (_path$m = /*#__PURE__*/React.createElement("path", {
|
|
23933
23933
|
"data-name": "Rectangle 21628",
|
|
23934
23934
|
fill: "none",
|
|
23935
23935
|
d: "M0 0h170v170H0z"
|
|
23936
23936
|
})));
|
|
23937
23937
|
};
|
|
23938
23938
|
|
|
23939
|
-
var _style, _path$
|
|
23940
|
-
function _extends$
|
|
23939
|
+
var _style, _path$l, _path2$d, _path3$5, _path4$1, _path5$1, _path6, _path7, _path8, _path9, _path10, _circle, _path11, _circle2, _circle3, _circle4, _path12, _circle5, _circle6, _circle7, _path13, _ellipse, _ellipse2, _ellipse3, _ellipse4, _ellipse5, _ellipse6, _path14;
|
|
23940
|
+
function _extends$M() { _extends$M = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$M.apply(this, arguments); }
|
|
23941
23941
|
var SvgIluShopping = function SvgIluShopping(props) {
|
|
23942
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
23942
|
+
return /*#__PURE__*/React.createElement("svg", _extends$M({
|
|
23943
23943
|
xmlns: "http://www.w3.org/2000/svg",
|
|
23944
23944
|
viewBox: "0 0 400 400",
|
|
23945
23945
|
style: {
|
|
@@ -23958,19 +23958,19 @@ var SvgIluShopping = function SvgIluShopping(props) {
|
|
|
23958
23958
|
style: {
|
|
23959
23959
|
fill: "#cbcbcb"
|
|
23960
23960
|
}
|
|
23961
|
-
}), _path$
|
|
23961
|
+
}), _path$l || (_path$l = /*#__PURE__*/React.createElement("path", {
|
|
23962
23962
|
className: "ilu_shopping_svg__st2",
|
|
23963
23963
|
d: "M155.1 253h40.6v-65.2h-39.1c-.8 0-1.5.7-1.5 1.5V253z"
|
|
23964
|
-
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
|
23964
|
+
})), _path2$d || (_path2$d = /*#__PURE__*/React.createElement("path", {
|
|
23965
23965
|
className: "ilu_shopping_svg__st6",
|
|
23966
23966
|
d: "M195.7 253h65.5v-63.7c0-.8-.7-1.5-1.5-1.5h-64V253z"
|
|
23967
|
-
})), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
|
23967
|
+
})), _path3$5 || (_path3$5 = /*#__PURE__*/React.createElement("path", {
|
|
23968
23968
|
className: "ilu_shopping_svg__st10",
|
|
23969
23969
|
d: "M163.3 196h8.2v8.2h-8.2z"
|
|
23970
|
-
})), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
|
23970
|
+
})), _path4$1 || (_path4$1 = /*#__PURE__*/React.createElement("path", {
|
|
23971
23971
|
className: "ilu_shopping_svg__st2",
|
|
23972
23972
|
d: "M155.1 187.7h40.6v-65.2h-39.1c-.8 0-1.5.7-1.5 1.5v63.7z"
|
|
23973
|
-
})), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
|
|
23973
|
+
})), _path5$1 || (_path5$1 = /*#__PURE__*/React.createElement("path", {
|
|
23974
23974
|
className: "ilu_shopping_svg__st6",
|
|
23975
23975
|
d: "M195.7 187.7h65.5V124c0-.8-.7-1.5-1.5-1.5h-64v65.2z"
|
|
23976
23976
|
})), _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
|
|
@@ -24086,21 +24086,21 @@ var SvgIluShopping = function SvgIluShopping(props) {
|
|
|
24086
24086
|
})));
|
|
24087
24087
|
};
|
|
24088
24088
|
|
|
24089
|
-
var _defs$
|
|
24090
|
-
function _extends$
|
|
24089
|
+
var _defs$5, _g$A, _path$k;
|
|
24090
|
+
function _extends$L() { _extends$L = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$L.apply(this, arguments); }
|
|
24091
24091
|
var SvgIluStatusChange = function SvgIluStatusChange(props) {
|
|
24092
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
24092
|
+
return /*#__PURE__*/React.createElement("svg", _extends$L({
|
|
24093
24093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24094
24094
|
width: 170,
|
|
24095
24095
|
height: 170
|
|
24096
|
-
}, props), _defs$
|
|
24096
|
+
}, props), _defs$5 || (_defs$5 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
24097
24097
|
id: "ilu_status-change_svg__a"
|
|
24098
24098
|
}, /*#__PURE__*/React.createElement("path", {
|
|
24099
24099
|
"data-name": "Path 85276",
|
|
24100
24100
|
d: "M169.7 101.363c0 .679-.008 1.354-.03 2.028a65.216 65.216 0 0 1-1.289 11.142 60.6 60.6 0 0 1-.62 2.775 57.53 57.53 0 0 1-.823 3.034q-.636 2.17-1.426 4.273l-.076.212a64.865 64.865 0 0 1-1.358 3.331s0 .013-.009.025c-.093.208-.182.412-.276.615a68.813 68.813 0 0 1-4.086 7.722 69.994 69.994 0 0 1-5.075 7.209l-.051.064-.649.793c-.034.042-.068.081-.1.123-.161.2-.327.39-.492.586l-.289.339c-.191.225-.386.454-.586.679q-.859.98-1.757 1.922a72.878 72.878 0 0 1-2.062 2.1q-1.674 1.642-3.45 3.165a76.365 76.365 0 0 1-12.7 8.843 78.778 78.778 0 0 1-14.537 6.237 80.546 80.546 0 0 1-16.59 3.352q-3.844.369-7.795.369a78.665 78.665 0 0 1-55.084-21.958v-.008q-1.057-1.025-2.062-2.1a71.77 71.77 0 0 1-3.123-3.526c-.025-.034-.055-.064-.081-.1l-.021-.025a71.18 71.18 0 0 1-5.771-8.066 66.967 66.967 0 0 1-9.963-33.13 54.718 54.718 0 0 1-.034-2.028c0-.564.008-1.124.021-1.685a65.774 65.774 0 0 1 1.053-10.247 68.584 68.584 0 0 1 16.6-33.52Q36.824 54 38.678 52.2a78.687 78.687 0 0 1 54.893-21.777A78.679 78.679 0 0 1 148.46 52.2q1.852 1.795 3.573 3.708A70.4 70.4 0 0 1 163.1 72.43a67.178 67.178 0 0 1 2.652 6.322c.081.225.161.45.238.675.2.547.378 1.1.556 1.655a66.513 66.513 0 0 1 3.123 18.173c0 .14.009.28.013.424v.25c.018.471.018.955.018 1.434Z",
|
|
24101
24101
|
transform: "translate(-17.433 -30.423)",
|
|
24102
24102
|
fill: "none"
|
|
24103
|
-
})))), _g$
|
|
24103
|
+
})))), _g$A || (_g$A = /*#__PURE__*/React.createElement("g", {
|
|
24104
24104
|
"data-name": "Group 46665",
|
|
24105
24105
|
transform: "translate(7.533 13.045)",
|
|
24106
24106
|
clipPath: "url(#ilu_status-change_svg__a)"
|
|
@@ -24232,28 +24232,28 @@ var SvgIluStatusChange = function SvgIluStatusChange(props) {
|
|
|
24232
24232
|
"data-name": "Rectangle 21938",
|
|
24233
24233
|
fill: "#fff",
|
|
24234
24234
|
d: "M78.354 64.569h-3.06v-3.06h3.06z"
|
|
24235
|
-
})))))))), _path$
|
|
24235
|
+
})))))))), _path$k || (_path$k = /*#__PURE__*/React.createElement("path", {
|
|
24236
24236
|
"data-name": "Rectangle 21939",
|
|
24237
24237
|
fill: "none",
|
|
24238
24238
|
d: "M0 0h170v170H0z"
|
|
24239
24239
|
})));
|
|
24240
24240
|
};
|
|
24241
24241
|
|
|
24242
|
-
var _defs$
|
|
24243
|
-
function _extends$
|
|
24242
|
+
var _defs$4, _g$z, _path$j;
|
|
24243
|
+
function _extends$K() { _extends$K = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$K.apply(this, arguments); }
|
|
24244
24244
|
var SvgIluStorageField = function SvgIluStorageField(props) {
|
|
24245
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
24245
|
+
return /*#__PURE__*/React.createElement("svg", _extends$K({
|
|
24246
24246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24247
24247
|
width: 170,
|
|
24248
24248
|
height: 170
|
|
24249
|
-
}, props), _defs$
|
|
24249
|
+
}, props), _defs$4 || (_defs$4 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
24250
24250
|
id: "ilu_storage-field_svg__a"
|
|
24251
24251
|
}, /*#__PURE__*/React.createElement("path", {
|
|
24252
24252
|
"data-name": "Path 85353",
|
|
24253
24253
|
d: "M176.995 101.546c0 .679-.008 1.354-.03 2.029a65.286 65.286 0 0 1-1.291 11.148 60.346 60.346 0 0 1-.62 2.776 56.367 56.367 0 0 1-.824 3.035q-.637 2.171-1.426 4.275l-.076.212a65.439 65.439 0 0 1-1.358 3.332s0 .013-.008.025c-.093.208-.183.412-.276.616a68.838 68.838 0 0 1-4.086 7.727 70.026 70.026 0 0 1-5.077 7.212l-.051.064c-.217.263-.433.531-.65.794-.034.042-.068.081-.1.123-.161.2-.327.391-.492.586l-.289.34c-.191.225-.386.454-.586.679q-.86.981-1.757 1.923a72.937 72.937 0 0 1-2.063 2.1q-1.675 1.643-3.451 3.167a76.4 76.4 0 0 1-12.71 8.847 78.811 78.811 0 0 1-14.544 6.24 80.583 80.583 0 0 1-16.6 3.354q-3.846.369-7.8.369a78.7 78.7 0 0 1-55.109-21.968v-.008q-1.057-1.025-2.063-2.1a71.835 71.835 0 0 1-3.124-3.528c-.025-.034-.055-.064-.081-.1l-.021-.025a71.216 71.216 0 0 1-5.773-8.07 67 67 0 0 1-9.967-33.146 54.772 54.772 0 0 1-.034-2.029c0-.565.008-1.125.021-1.685a65.857 65.857 0 0 1 1.053-10.252 68.617 68.617 0 0 1 16.601-33.535q1.719-1.91 3.574-3.71a78.724 78.724 0 0 1 54.914-21.786 78.716 78.716 0 0 1 54.914 21.79q1.853 1.8 3.574 3.71a70.432 70.432 0 0 1 11.08 16.523 67.206 67.206 0 0 1 2.653 6.325c.081.225.161.45.238.675.2.548.378 1.1.556 1.656a66.546 66.546 0 0 1 3.124 18.182c0 .14.008.28.013.424v.25c.017.475.022.955.022 1.434Z",
|
|
24254
24254
|
transform: "translate(-24.652 -30.573)",
|
|
24255
24255
|
fill: "none"
|
|
24256
|
-
})))), _g$
|
|
24256
|
+
})))), _g$z || (_g$z = /*#__PURE__*/React.createElement("g", {
|
|
24257
24257
|
transform: "translate(10.561 13.073)",
|
|
24258
24258
|
clipPath: "url(#ilu_storage-field_svg__a)"
|
|
24259
24259
|
}, /*#__PURE__*/React.createElement("g", {
|
|
@@ -24638,28 +24638,28 @@ var SvgIluStorageField = function SvgIluStorageField(props) {
|
|
|
24638
24638
|
"data-name": "Path 85352",
|
|
24639
24639
|
d: "M152.343 70.973c0 .679-.008 1.354-.03 2.029a65.286 65.286 0 0 1-1.291 11.148 60.346 60.346 0 0 1-.62 2.776 56.367 56.367 0 0 1-.824 3.035q-.637 2.171-1.426 4.275l-.076.212a65.439 65.439 0 0 1-1.358 3.332s0 .013-.008.025c-.093.208-.183.412-.276.616a68.838 68.838 0 0 1-4.086 7.727 70.026 70.026 0 0 1-5.077 7.212l-.051.064c-.217.263-.433.531-.65.794-.034.042-.068.081-.1.123-.161.2-.327.391-.492.586l-.289.34c-.191.225-.386.454-.586.679q-.86.981-1.757 1.923a72.937 72.937 0 0 1-2.063 2.1q-1.675 1.643-3.451 3.167a76.4 76.4 0 0 1-12.71 8.847 78.811 78.811 0 0 1-14.544 6.24 80.583 80.583 0 0 1-16.6 3.354q-3.846.369-7.8.369a78.7 78.7 0 0 1-55.109-21.968v-.008q-1.057-1.025-2.063-2.1a71.835 71.835 0 0 1-3.124-3.528c-.025-.034-.055-.064-.081-.1l-.021-.025a71.216 71.216 0 0 1-5.773-8.07A67 67 0 0 1 .04 73.001a54.772 54.772 0 0 1-.034-2.029c0-.565.008-1.125.021-1.685A65.857 65.857 0 0 1 1.08 59.035 68.617 68.617 0 0 1 17.681 25.5q1.719-1.91 3.574-3.71A78.724 78.724 0 0 1 76.169.004a78.716 78.716 0 0 1 54.914 21.79q1.853 1.8 3.574 3.71a70.432 70.432 0 0 1 11.08 16.523 67.206 67.206 0 0 1 2.653 6.325c.081.225.161.45.238.675.2.548.378 1.1.556 1.656a66.546 66.546 0 0 1 3.124 18.182c0 .14.008.28.013.424v.25c.017.475.022.955.022 1.434Z",
|
|
24640
24640
|
fill: "none"
|
|
24641
|
-
})))), _path$
|
|
24641
|
+
})))), _path$j || (_path$j = /*#__PURE__*/React.createElement("path", {
|
|
24642
24642
|
"data-name": "Rectangle 22128",
|
|
24643
24643
|
fill: "none",
|
|
24644
24644
|
d: "M0 0h170v170H0z"
|
|
24645
24645
|
})));
|
|
24646
24646
|
};
|
|
24647
24647
|
|
|
24648
|
-
var _defs, _g$
|
|
24649
|
-
function _extends$
|
|
24648
|
+
var _defs$3, _g$y, _g2$1, _g3, _g4, _g5, _g6, _g7, _g8, _path$i;
|
|
24649
|
+
function _extends$J() { _extends$J = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$J.apply(this, arguments); }
|
|
24650
24650
|
var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
|
|
24651
|
-
return /*#__PURE__*/React.createElement("svg", _extends$
|
|
24651
|
+
return /*#__PURE__*/React.createElement("svg", _extends$J({
|
|
24652
24652
|
xmlns: "http://www.w3.org/2000/svg",
|
|
24653
24653
|
width: 170,
|
|
24654
24654
|
height: 170
|
|
24655
|
-
}, props), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
24655
|
+
}, props), _defs$3 || (_defs$3 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
24656
24656
|
id: "ilu_warehouse-loading_svg__a"
|
|
24657
24657
|
}, /*#__PURE__*/React.createElement("path", {
|
|
24658
24658
|
"data-name": "Path 84835",
|
|
24659
24659
|
d: "M171.124 101.582c0 .681-.009 1.358-.03 2.034a65.461 65.461 0 0 1-1.294 11.177 60.987 60.987 0 0 1-.621 2.784 56.663 56.663 0 0 1-.826 3.043q-.638 2.177-1.43 4.286l-.077.213a65.797 65.797 0 0 1-1.362 3.341s0 .013-.008.026c-.094.209-.183.413-.277.617a69.026 69.026 0 0 1-4.1 7.746 70.214 70.214 0 0 1-5.09 7.231l-.051.064c-.217.264-.434.532-.651.8-.034.043-.068.081-.1.123-.162.2-.328.392-.494.587l-.289.34c-.192.226-.387.455-.587.681q-.862.983-1.762 1.928a66.074 66.074 0 0 1-2.068 2.1q-1.679 1.647-3.46 3.175a76.6 76.6 0 0 1-12.743 8.87A79.022 79.022 0 0 1 119.216 169a80.8 80.8 0 0 1-16.642 3.362q-3.856.37-7.819.37A78.907 78.907 0 0 1 39.5 150.711v-.011q-1.06-1.028-2.068-2.1a72.751 72.751 0 0 1-3.133-3.537c-.026-.034-.055-.064-.081-.1l-.021-.026a71.4 71.4 0 0 1-5.788-8.091 67.174 67.174 0 0 1-9.993-33.232 52.931 52.931 0 0 1-.034-2.034c0-.566.009-1.128.021-1.69a66.029 66.029 0 0 1 1.057-10.277A68.8 68.8 0 0 1 36.11 55.99q1.724-1.915 3.584-3.72a78.93 78.93 0 0 1 55.062-21.847 78.922 78.922 0 0 1 55.057 21.847q1.858 1.8 3.584 3.72a70.615 70.615 0 0 1 11.1 16.569 67.376 67.376 0 0 1 2.66 6.342c.081.226.162.451.238.677.2.549.379 1.107.558 1.66a66.72 66.72 0 0 1 3.133 18.229c0 .14.009.281.013.426v.251c.021.476.025.956.025 1.438Z",
|
|
24660
24660
|
transform: "translate(-18.383 -30.423)",
|
|
24661
24661
|
fill: "none"
|
|
24662
|
-
})))), _g$
|
|
24662
|
+
})))), _g$y || (_g$y = /*#__PURE__*/React.createElement("g", {
|
|
24663
24663
|
"data-name": "Group 44638"
|
|
24664
24664
|
}, /*#__PURE__*/React.createElement("g", {
|
|
24665
24665
|
"data-name": "Group 44637",
|
|
@@ -24954,7 +24954,7 @@ var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
|
|
|
24954
24954
|
"data-name": "Path 85555",
|
|
24955
24955
|
d: "M95.657 73.891h5.5v17.191h-7V75.391a1.5 1.5 0 0 1 1.5-1.5Z",
|
|
24956
24956
|
fill: "#cbcbcb"
|
|
24957
|
-
}))))), _g2 || (_g2 = /*#__PURE__*/React.createElement("g", {
|
|
24957
|
+
}))))), _g2$1 || (_g2$1 = /*#__PURE__*/React.createElement("g", {
|
|
24958
24958
|
"data-name": "Group 47287"
|
|
24959
24959
|
}, /*#__PURE__*/React.createElement("path", {
|
|
24960
24960
|
"data-name": "Rectangle 21145",
|
|
@@ -25011,21 +25011,21 @@ var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
|
|
|
25011
25011
|
"data-name": "Rectangle 21150",
|
|
25012
25012
|
fill: "#e42127",
|
|
25013
25013
|
d: "M78.691 63.048h3.423v2.761h-3.423z"
|
|
25014
|
-
})))), _path$
|
|
25014
|
+
})))), _path$i || (_path$i = /*#__PURE__*/React.createElement("path", {
|
|
25015
25015
|
"data-name": "Rectangle 21188",
|
|
25016
25016
|
fill: "none",
|
|
25017
25017
|
d: "M0 0h170v170H0z"
|
|
25018
25018
|
})));
|
|
25019
25019
|
};
|
|
25020
25020
|
|
|
25021
|
-
var _g, _path;
|
|
25022
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
25021
|
+
var _g$x, _path$h;
|
|
25022
|
+
function _extends$I() { _extends$I = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$I.apply(this, arguments); }
|
|
25023
25023
|
var SvgMovingBoxToAnotherShelf = function SvgMovingBoxToAnotherShelf(props) {
|
|
25024
|
-
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
25024
|
+
return /*#__PURE__*/React.createElement("svg", _extends$I({
|
|
25025
25025
|
xmlns: "http://www.w3.org/2000/svg",
|
|
25026
25026
|
width: 170,
|
|
25027
25027
|
height: 170
|
|
25028
|
-
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
25028
|
+
}, props), _g$x || (_g$x = /*#__PURE__*/React.createElement("g", {
|
|
25029
25029
|
"data-name": "Group 46074"
|
|
25030
25030
|
}, /*#__PURE__*/React.createElement("g", {
|
|
25031
25031
|
"data-name": "Group 45940"
|
|
@@ -25871,57 +25871,2154 @@ var SvgMovingBoxToAnotherShelf = function SvgMovingBoxToAnotherShelf(props) {
|
|
|
25871
25871
|
}), /*#__PURE__*/React.createElement("path", {
|
|
25872
25872
|
"data-name": "Rectangle 21771",
|
|
25873
25873
|
d: "M75.408 66.235h5.1v2.763h-5.1z"
|
|
25874
|
-
})))), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
25874
|
+
})))), _path$h || (_path$h = /*#__PURE__*/React.createElement("path", {
|
|
25875
25875
|
"data-name": "Rectangle 21744",
|
|
25876
25876
|
fill: "none",
|
|
25877
25877
|
d: "M0 0h170v170H0z"
|
|
25878
25878
|
})));
|
|
25879
25879
|
};
|
|
25880
25880
|
|
|
25881
|
-
var
|
|
25882
|
-
|
|
25883
|
-
|
|
25884
|
-
|
|
25885
|
-
|
|
25886
|
-
|
|
25887
|
-
|
|
25888
|
-
|
|
25889
|
-
|
|
25890
|
-
|
|
25891
|
-
|
|
25892
|
-
|
|
25893
|
-
|
|
25894
|
-
|
|
25895
|
-
|
|
25896
|
-
|
|
25897
|
-
|
|
25898
|
-
|
|
25899
|
-
|
|
25900
|
-
|
|
25901
|
-
|
|
25902
|
-
|
|
25903
|
-
|
|
25904
|
-
|
|
25905
|
-
|
|
25906
|
-
|
|
25907
|
-
|
|
25908
|
-
|
|
25909
|
-
|
|
25910
|
-
|
|
25911
|
-
|
|
25912
|
-
|
|
25913
|
-
|
|
25914
|
-
|
|
25915
|
-
|
|
25916
|
-
|
|
25917
|
-
|
|
25918
|
-
}
|
|
25919
|
-
|
|
25920
|
-
|
|
25921
|
-
|
|
25922
|
-
|
|
25923
|
-
|
|
25881
|
+
var _defs$2, _g$w;
|
|
25882
|
+
function _extends$H() { _extends$H = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
|
|
25883
|
+
var SvgIluSearch = function SvgIluSearch(props) {
|
|
25884
|
+
return /*#__PURE__*/React.createElement("svg", _extends$H({
|
|
25885
|
+
"data-name": "Component 35 \\u2013 1",
|
|
25886
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
25887
|
+
width: 184.006,
|
|
25888
|
+
height: 184.006
|
|
25889
|
+
}, props), _defs$2 || (_defs$2 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
25890
|
+
id: "ilu_search_svg__a"
|
|
25891
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25892
|
+
"data-name": "Rectangle 14804",
|
|
25893
|
+
fill: "none",
|
|
25894
|
+
d: "M0 0h184.006v184.006H0z"
|
|
25895
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25896
|
+
id: "ilu_search_svg__b"
|
|
25897
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25898
|
+
"data-name": "Rectangle 14803",
|
|
25899
|
+
transform: "translate(0 -.001)",
|
|
25900
|
+
fill: "none",
|
|
25901
|
+
d: "M0 0h184.007v184.007H0z"
|
|
25902
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25903
|
+
id: "ilu_search_svg__c"
|
|
25904
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25905
|
+
"data-name": "Rectangle 14796",
|
|
25906
|
+
transform: "translate(70.249 78.779)",
|
|
25907
|
+
fill: "none",
|
|
25908
|
+
d: "M0 0h96.936v84.229H0z"
|
|
25909
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25910
|
+
id: "ilu_search_svg__d"
|
|
25911
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25912
|
+
"data-name": "Rectangle 14798",
|
|
25913
|
+
transform: "translate(62.56 59.673)",
|
|
25914
|
+
fill: "none",
|
|
25915
|
+
d: "M0 0h69.482v67.129H0z"
|
|
25916
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25917
|
+
id: "ilu_search_svg__e"
|
|
25918
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25919
|
+
"data-name": "Rectangle 14797",
|
|
25920
|
+
transform: "translate(62.56 59.673)",
|
|
25921
|
+
fill: "none",
|
|
25922
|
+
d: "M0 0h69.481v67.129H0z"
|
|
25923
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25924
|
+
id: "ilu_search_svg__f"
|
|
25925
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25926
|
+
"data-name": "Rectangle 14800",
|
|
25927
|
+
transform: "translate(114.909 72.076)",
|
|
25928
|
+
fill: "none",
|
|
25929
|
+
d: "M0 0h.429v40.322H0z"
|
|
25930
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
25931
|
+
id: "ilu_search_svg__g"
|
|
25932
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25933
|
+
"data-name": "Rectangle 14799",
|
|
25934
|
+
transform: "translate(114.909 72.075)",
|
|
25935
|
+
fill: "none",
|
|
25936
|
+
d: "M0 0h.429v40.322H0z"
|
|
25937
|
+
})))), _g$w || (_g$w = /*#__PURE__*/React.createElement("g", {
|
|
25938
|
+
"data-name": "Group 8098",
|
|
25939
|
+
clipPath: "url(#ilu_search_svg__a)"
|
|
25940
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25941
|
+
"data-name": "Group 8097"
|
|
25942
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25943
|
+
"data-name": "Group 8096",
|
|
25944
|
+
clipPath: "url(#ilu_search_svg__b)"
|
|
25945
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25946
|
+
"data-name": "Path 524",
|
|
25947
|
+
d: "M171.714 91.674a70.545 70.545 0 0 1-4.528 24.9 73.933 73.933 0 0 1-13.76 22.8A77.869 77.869 0 0 1 145.7 147a82.16 82.16 0 0 1-28.9 16 86.041 86.041 0 0 1-25.882 3.947c-44.622 0-80.8-33.706-80.8-75.282s36.175-75.282 80.8-75.282 80.8 33.7 80.8 75.282",
|
|
25948
|
+
fill: "#e0e0e0"
|
|
25949
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25950
|
+
"data-name": "Rectangle 14792",
|
|
25951
|
+
fill: "#fff",
|
|
25952
|
+
d: "M65.261 63.225h49.862v77.307H65.261z"
|
|
25953
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25954
|
+
"data-name": "Rectangle 14793",
|
|
25955
|
+
fill: "#fff",
|
|
25956
|
+
d: "m24.361 78.124 52.755-34.143 27.075 41.835-52.754 34.143z"
|
|
25957
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25958
|
+
"data-name": "Rectangle 14794",
|
|
25959
|
+
fill: "#fff",
|
|
25960
|
+
d: "M90.193 45.538h49.862v77.307H90.193z"
|
|
25961
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
25962
|
+
"data-name": "Group 8085",
|
|
25963
|
+
opacity: 0.79
|
|
25964
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25965
|
+
"data-name": "Group 8084"
|
|
25966
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25967
|
+
"data-name": "Group 8083",
|
|
25968
|
+
clipPath: "url(#ilu_search_svg__c)"
|
|
25969
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25970
|
+
"data-name": "Group 8082"
|
|
25971
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25972
|
+
"data-name": "Group 8081",
|
|
25973
|
+
clipPath: "url(#ilu_search_svg__c)"
|
|
25974
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25975
|
+
"data-name": "Path 525",
|
|
25976
|
+
d: "M167.185 116.577a73.927 73.927 0 0 1-13.759 22.8A77.869 77.869 0 0 1 145.7 147v.005a82.155 82.155 0 0 1-28.9 16l-46.55-49.2 48.72-2.226 8.35-32.799Z",
|
|
25977
|
+
fill: "#bcbcbc"
|
|
25978
|
+
})))))), /*#__PURE__*/React.createElement("g", {
|
|
25979
|
+
"data-name": "Group 8090",
|
|
25980
|
+
opacity: 0.87
|
|
25981
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25982
|
+
"data-name": "Group 8089"
|
|
25983
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25984
|
+
"data-name": "Group 8088",
|
|
25985
|
+
clipPath: "url(#ilu_search_svg__d)"
|
|
25986
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25987
|
+
"data-name": "Group 8087"
|
|
25988
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
25989
|
+
"data-name": "Group 8086",
|
|
25990
|
+
clipPath: "url(#ilu_search_svg__e)"
|
|
25991
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
25992
|
+
"data-name": "Path 526",
|
|
25993
|
+
d: "M128.314 99.073c3.094-16.443-8.282-32.385-25.41-35.608S69.382 70.958 66.288 87.4s8.282 32.385 25.41 35.608 33.522-7.493 36.616-23.936",
|
|
25994
|
+
fill: "#fff"
|
|
25995
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25996
|
+
"data-name": "Path 527",
|
|
25997
|
+
d: "M128.314 99.073c3.094-16.443-8.282-32.385-25.41-35.608S69.382 70.958 66.288 87.4s8.282 32.385 25.41 35.608 33.522-7.492 36.616-23.935Z",
|
|
25998
|
+
fill: "none",
|
|
25999
|
+
stroke: "#b7b7b7",
|
|
26000
|
+
strokeMiterlimit: 10,
|
|
26001
|
+
strokeWidth: 6.44
|
|
26002
|
+
})))))), /*#__PURE__*/React.createElement("g", {
|
|
26003
|
+
"data-name": "Group 8095",
|
|
26004
|
+
opacity: 0.17
|
|
26005
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26006
|
+
"data-name": "Group 8094"
|
|
26007
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26008
|
+
"data-name": "Group 8093",
|
|
26009
|
+
clipPath: "url(#ilu_search_svg__f)"
|
|
26010
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26011
|
+
"data-name": "Group 8092"
|
|
26012
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26013
|
+
"data-name": "Group 8091",
|
|
26014
|
+
clipPath: "url(#ilu_search_svg__g)"
|
|
26015
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26016
|
+
"data-name": "Line 68",
|
|
26017
|
+
fill: "none",
|
|
26018
|
+
stroke: "#ccc",
|
|
26019
|
+
strokeMiterlimit: 10,
|
|
26020
|
+
strokeWidth: 0.429,
|
|
26021
|
+
d: "M115.124 112.397V72.076"
|
|
26022
|
+
})))))), /*#__PURE__*/React.createElement("path", {
|
|
26023
|
+
"data-name": "Line 69",
|
|
26024
|
+
fill: "none",
|
|
26025
|
+
stroke: "#5d5d5c",
|
|
26026
|
+
strokeMiterlimit: 10,
|
|
26027
|
+
strokeWidth: 1.84,
|
|
26028
|
+
d: "M83.767 83.136h24.906"
|
|
26029
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26030
|
+
"data-name": "Line 70",
|
|
26031
|
+
fill: "none",
|
|
26032
|
+
stroke: "#5d5d5c",
|
|
26033
|
+
strokeMiterlimit: 10,
|
|
26034
|
+
strokeWidth: 1.84,
|
|
26035
|
+
d: "M83.767 99.652h24.906"
|
|
26036
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26037
|
+
"data-name": "Line 71",
|
|
26038
|
+
fill: "none",
|
|
26039
|
+
stroke: "#5d5d5c",
|
|
26040
|
+
strokeMiterlimit: 10,
|
|
26041
|
+
strokeWidth: 1.84,
|
|
26042
|
+
d: "M83.767 91.394h15.262"
|
|
26043
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26044
|
+
"data-name": "Path 528",
|
|
26045
|
+
d: "m130.684 117.713-6.6 6.6a.767.767 0 0 1-1.084 0l-5.227-5.227a.767.767 0 0 1 0-1.084l6.6-6.6a.767.767 0 0 1 1.084 0l5.227 5.227a.767.767 0 0 1 0 1.084",
|
|
26046
|
+
fill: "#5d5d5c"
|
|
26047
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26048
|
+
"data-name": "Path 529",
|
|
26049
|
+
d: "M128.12 96.792c3.094-16.443-8.795-32.481-26.555-35.824S66.9 68.246 63.805 84.689s8.795 32.482 26.555 35.823 34.666-7.277 37.76-23.72Z",
|
|
26050
|
+
fill: "none",
|
|
26051
|
+
stroke: "#5d5d5c",
|
|
26052
|
+
strokeMiterlimit: 10,
|
|
26053
|
+
strokeWidth: 6.44
|
|
26054
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26055
|
+
"data-name": "Rectangle 14801",
|
|
26056
|
+
fill: "#e42127",
|
|
26057
|
+
d: "M117.622 56.679h26.573v26.573h-26.573z"
|
|
26058
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26059
|
+
"data-name": "Line 72",
|
|
26060
|
+
fill: "none",
|
|
26061
|
+
stroke: "#fff",
|
|
26062
|
+
strokeLinejoin: "round",
|
|
26063
|
+
strokeWidth: 1.84,
|
|
26064
|
+
d: "m124.715 63.946 12.564 12.564"
|
|
26065
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26066
|
+
"data-name": "Line 73",
|
|
26067
|
+
fill: "none",
|
|
26068
|
+
stroke: "#fff",
|
|
26069
|
+
strokeLinejoin: "round",
|
|
26070
|
+
strokeWidth: 1.84,
|
|
26071
|
+
d: "m137.102 63.769-12.564 12.564"
|
|
26072
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26073
|
+
"data-name": "Path 530",
|
|
26074
|
+
d: "M153.423 139.377A77.881 77.881 0 0 1 145.7 147l-13.394-13.4a.767.767 0 0 1 0-1.084l6.592-6.592a.767.767 0 0 1 1.084 0Z",
|
|
26075
|
+
fill: "#5d5d5c"
|
|
26076
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26077
|
+
"data-name": "Line 74",
|
|
26078
|
+
fill: "none",
|
|
26079
|
+
stroke: "#bcbcbc",
|
|
26080
|
+
strokeMiterlimit: 10,
|
|
26081
|
+
strokeWidth: 8.894,
|
|
26082
|
+
d: "m127.193 120.823 8.696 8.696"
|
|
26083
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26084
|
+
"data-name": "Rectangle 14802",
|
|
26085
|
+
fill: "gray",
|
|
26086
|
+
d: "m123.883 124.132 3.085-3.085 8.696 8.696-3.085 3.085z"
|
|
26087
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26088
|
+
"data-name": "Path 531",
|
|
26089
|
+
d: "m166.6 153.631-6.6 6.6a.767.767 0 0 1-1.084 0l-26.186-26.185a.768.768 0 0 1 0-1.085l6.6-6.6a.768.768 0 0 1 1.085 0l26.185 26.186a.767.767 0 0 1 0 1.084",
|
|
26090
|
+
fill: "#5d5d5c"
|
|
26091
|
+
}))))));
|
|
26092
|
+
};
|
|
26093
|
+
|
|
26094
|
+
var _defs$1, _g$v;
|
|
26095
|
+
function _extends$G() { _extends$G = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
|
|
26096
|
+
var SvgIlu404 = function SvgIlu404(props) {
|
|
26097
|
+
return /*#__PURE__*/React.createElement("svg", _extends$G({
|
|
26098
|
+
"data-name": "Component 34 \\u2013 1",
|
|
26099
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26100
|
+
width: 184.006,
|
|
26101
|
+
height: 184.006
|
|
26102
|
+
}, props), _defs$1 || (_defs$1 = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
26103
|
+
id: "ilu_404_svg__a"
|
|
26104
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26105
|
+
"data-name": "Rectangle 14791",
|
|
26106
|
+
fill: "none",
|
|
26107
|
+
d: "M0 0h184.006v184.006H0z"
|
|
26108
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26109
|
+
id: "ilu_404_svg__b"
|
|
26110
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26111
|
+
"data-name": "Rectangle 14783",
|
|
26112
|
+
transform: "translate(0 -.001)",
|
|
26113
|
+
fill: "none",
|
|
26114
|
+
d: "M0 0h184.007v184.007H0z"
|
|
26115
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26116
|
+
id: "ilu_404_svg__c"
|
|
26117
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26118
|
+
"data-name": "Rectangle 14782",
|
|
26119
|
+
transform: "translate(24.662 63.236)",
|
|
26120
|
+
fill: "none",
|
|
26121
|
+
d: "M0 0h143.664v104.376H0z"
|
|
26122
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26123
|
+
id: "ilu_404_svg__d"
|
|
26124
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26125
|
+
"data-name": "Path 469",
|
|
26126
|
+
d: "M97.305 113.2q-1.539 4.583-4.786 5.658a6.382 6.382 0 0 1-1.271.28 5.589 5.589 0 0 1-2.424-.2l6.011 1.977a5.594 5.594 0 0 0 2.425.2 6.372 6.372 0 0 0 1.27-.28q3.25-1.077 4.787-5.659 1.827-5.43 1.707-17.183l-6.012-1.973q.122 11.751-1.707 17.184",
|
|
26127
|
+
fill: "none"
|
|
26128
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26129
|
+
id: "ilu_404_svg__e"
|
|
26130
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26131
|
+
"data-name": "Path 472",
|
|
26132
|
+
d: "M96.94 79.171q1.95 4.965 2.072 16.849l6.012 1.98q-.119-11.883-2.072-16.848-1.364-3.465-3.814-4.27L93.126 74.9q2.451.806 3.814 4.269",
|
|
26133
|
+
fill: "none"
|
|
26134
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26135
|
+
id: "ilu_404_svg__f"
|
|
26136
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26137
|
+
"data-name": "Path 487",
|
|
26138
|
+
d: "M90.686 63.659a22.775 22.775 0 0 0-4.474.975 18.343 18.343 0 0 0-10.521 8.919q-4.812 8.687-4.638 25.78.168 16.391 5.284 24.185a14.267 14.267 0 0 0 7.543 6.025l6.011 1.977a14.273 14.273 0 0 1-7.542-6.025q-5.12-7.792-5.284-24.185-.176-17.092 4.635-25.781a18.343 18.343 0 0 1 10.521-8.917 22.531 22.531 0 0 1 4.474-.976 17.161 17.161 0 0 1 7.443.6l-6.008-1.979a15.784 15.784 0 0 0-4.956-.75 21.034 21.034 0 0 0-2.488.152",
|
|
26139
|
+
fill: "none"
|
|
26140
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26141
|
+
id: "ilu_404_svg__g"
|
|
26142
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26143
|
+
"data-name": "Path 494",
|
|
26144
|
+
d: "m52.515 89.729 5.613 2.923q.414-2.706 1.4-7.851l-5.613-2.924q-.99 5.145-1.4 7.852",
|
|
26145
|
+
fill: "none"
|
|
26146
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26147
|
+
id: "ilu_404_svg__h"
|
|
26148
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26149
|
+
"data-name": "Path 498",
|
|
26150
|
+
d: "m53.918 81.877 5.613 2.923q.986-5.141 1.233-5.967l-5.612-2.923q-.248.823-1.234 5.966",
|
|
26151
|
+
fill: "none"
|
|
26152
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26153
|
+
id: "ilu_404_svg__i"
|
|
26154
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26155
|
+
"data-name": "Path 509",
|
|
26156
|
+
d: "M126.377 87.149q1.557 5 2.47 7.584l6.328-.072q-.915-2.582-2.47-7.583Z",
|
|
26157
|
+
fill: "none"
|
|
26158
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
26159
|
+
id: "ilu_404_svg__j"
|
|
26160
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26161
|
+
"data-name": "Path 513",
|
|
26162
|
+
d: "M124.648 81.307q.171.843 1.729 5.842l6.328-.071q-1.559-5-1.729-5.843Z",
|
|
26163
|
+
fill: "none"
|
|
26164
|
+
})))), _g$v || (_g$v = /*#__PURE__*/React.createElement("g", {
|
|
26165
|
+
"data-name": "Group 8079",
|
|
26166
|
+
clipPath: "url(#ilu_404_svg__a)"
|
|
26167
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26168
|
+
"data-name": "Group 8050"
|
|
26169
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26170
|
+
"data-name": "Group 8049",
|
|
26171
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26172
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26173
|
+
"data-name": "Path 453",
|
|
26174
|
+
d: "M172.8 92.331a70.492 70.492 0 0 1-4.4 24.56c-.041.115-.084.23-.127.344a73.911 73.911 0 0 1-13.759 22.8 77.869 77.869 0 0 1-7.721 7.625 81.566 81.566 0 0 1-21.919 13.459l-.726.3q-3.063 1.24-6.255 2.247a86.961 86.961 0 0 1-46.191 1.547 84.089 84.089 0 0 1-11.921-3.829c-.224-.09-.447-.182-.669-.274-28.224-11.739-47.9-38.119-47.9-68.779 0-41.578 36.175-75.282 80.8-75.282s80.8 33.7 80.8 75.282",
|
|
26175
|
+
fill: "#e0e0e0"
|
|
26176
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26177
|
+
"data-name": "Group 8048",
|
|
26178
|
+
opacity: 0.79
|
|
26179
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26180
|
+
"data-name": "Group 8047"
|
|
26181
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26182
|
+
"data-name": "Group 8046",
|
|
26183
|
+
clipPath: "url(#ilu_404_svg__c)"
|
|
26184
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26185
|
+
"data-name": "Group 8045"
|
|
26186
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26187
|
+
"data-name": "Group 8044",
|
|
26188
|
+
clipPath: "url(#ilu_404_svg__c)"
|
|
26189
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26190
|
+
"data-name": "Path 454",
|
|
26191
|
+
d: "M168.327 117.085c-.041.116-.153.406-.2.519a71.783 71.783 0 0 1-13.618 22.427 77.986 77.986 0 0 1-7.721 7.626 81.594 81.594 0 0 1-21.92 13.458l-.725.3q-3.064 1.239-6.255 2.246a86.965 86.965 0 0 1-46.192 1.547L24.662 110 74.5 64.026l13.094 14.792 22.412-8.664 9.03 8.664 7.341-15.582Z",
|
|
26192
|
+
fill: "#bcbcbc"
|
|
26193
|
+
})))))), /*#__PURE__*/React.createElement("path", {
|
|
26194
|
+
"data-name": "Path 455",
|
|
26195
|
+
d: "m94.835 120.916-6.012-1.977a5.6 5.6 0 0 0 2.426.2 6.387 6.387 0 0 0 1.27-.279q3.249-1.077 4.787-5.659 1.826-5.432 1.706-17.184L105.024 98q.12 11.751-1.707 17.184-1.539 4.581-4.787 5.659a6.371 6.371 0 0 1-1.27.279 5.594 5.594 0 0 1-2.425-.2",
|
|
26196
|
+
fill: "#323232"
|
|
26197
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26198
|
+
"data-name": "Group 8052"
|
|
26199
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26200
|
+
"data-name": "Group 8051",
|
|
26201
|
+
clipPath: "url(#ilu_404_svg__d)",
|
|
26202
|
+
fill: "#323232"
|
|
26203
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26204
|
+
"data-name": "Path 456",
|
|
26205
|
+
d: "m94.835 120.916-6.012-1.977a4.835 4.835 0 0 0 .469.128l6.012 1.977a4.83 4.83 0 0 1-.469-.128"
|
|
26206
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26207
|
+
"data-name": "Path 457",
|
|
26208
|
+
d: "m95.3 121.044-6.012-1.977a5.322 5.322 0 0 0 .85.114l6.012 1.977a5.307 5.307 0 0 1-.85-.114"
|
|
26209
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26210
|
+
"data-name": "Path 458",
|
|
26211
|
+
d: "m96.153 121.158-6.012-1.977a6.5 6.5 0 0 0 1.107-.039c.146-.017.29-.039.431-.065l6.012 1.977a6.67 6.67 0 0 1-.431.065 6.507 6.507 0 0 1-1.107.039"
|
|
26212
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26213
|
+
"data-name": "Path 459",
|
|
26214
|
+
d: "m97.691 121.054-6.012-1.977a6.172 6.172 0 0 0 .839-.215 5.87 5.87 0 0 0 1.1-.494l6.011 1.977a5.833 5.833 0 0 1-1.1.494 6.21 6.21 0 0 1-.839.215"
|
|
26215
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26216
|
+
"data-name": "Path 460",
|
|
26217
|
+
d: "m99.633 120.345-6.012-1.977a6.2 6.2 0 0 0 1.031-.75l6.012 1.977a6.2 6.2 0 0 1-1.031.75"
|
|
26218
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26219
|
+
"data-name": "Path 461",
|
|
26220
|
+
d: "m100.664 119.6-6.012-1.977a6.915 6.915 0 0 0 .633-.646l6.012 1.977a7.042 7.042 0 0 1-.633.646"
|
|
26221
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26222
|
+
"data-name": "Path 462",
|
|
26223
|
+
d: "m101.3 118.95-6.012-1.977a8.286 8.286 0 0 0 .531-.685l6.012 1.977a8.507 8.507 0 0 1-.531.685"
|
|
26224
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26225
|
+
"data-name": "Path 463",
|
|
26226
|
+
d: "m101.827 118.264-6.012-1.977q.259-.374.495-.794l6.012 1.977q-.235.42-.495.794"
|
|
26227
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26228
|
+
"data-name": "Path 464",
|
|
26229
|
+
d: "m102.323 117.47-6.012-1.977q.26-.463.491-.986l6.011 1.977a11.76 11.76 0 0 1-.49.986"
|
|
26230
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26231
|
+
"data-name": "Path 465",
|
|
26232
|
+
d: "m102.814 116.483-6.014-1.976q.271-.612.5-1.3c0-.014.009-.028.014-.042l6.012 1.978-.015.042q-.231.691-.5 1.3"
|
|
26233
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26234
|
+
"data-name": "Path 466",
|
|
26235
|
+
d: "m103.331 115.138-6.012-1.977a22.006 22.006 0 0 0 .607-2.235l6.011 1.977a22.277 22.277 0 0 1-.606 2.235"
|
|
26236
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26237
|
+
"data-name": "Path 467",
|
|
26238
|
+
d: "m103.938 112.9-6.012-1.977a42.789 42.789 0 0 0 .779-5.367l6.012 1.977a42.789 42.789 0 0 1-.779 5.367"
|
|
26239
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26240
|
+
"data-name": "Path 468",
|
|
26241
|
+
d: "m104.717 107.536-6.012-1.977q.363-4.09.307-9.539l6.012 1.98q.055 5.448-.307 9.539"
|
|
26242
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26243
|
+
"data-name": "Group 8054"
|
|
26244
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26245
|
+
"data-name": "Group 8053",
|
|
26246
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26247
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26248
|
+
"data-name": "Path 470",
|
|
26249
|
+
d: "m93.126 74.9 6.012 1.977q2.451.806 3.814 4.27Q104.9 86.114 105.024 98l-6.012-1.98q-.119-11.883-2.072-16.848-1.364-3.463-3.814-4.27",
|
|
26250
|
+
fill: "#323232"
|
|
26251
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26252
|
+
"data-name": "Group 8056"
|
|
26253
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26254
|
+
"data-name": "Group 8055",
|
|
26255
|
+
clipPath: "url(#ilu_404_svg__e)"
|
|
26256
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26257
|
+
"data-name": "Path 471",
|
|
26258
|
+
d: "m105.024 98-6.012-1.98q-.119-11.883-2.071-16.849-1.364-3.463-3.815-4.269l6.012 1.977q2.451.806 3.814 4.269Q104.9 86.113 105.024 98",
|
|
26259
|
+
fill: "#323232"
|
|
26260
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26261
|
+
"data-name": "Group 8058"
|
|
26262
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26263
|
+
"data-name": "Group 8057",
|
|
26264
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26265
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26266
|
+
"data-name": "Path 473",
|
|
26267
|
+
d: "m89.891 131.52-6.012-1.977a14.268 14.268 0 0 1-7.542-6.025q-5.119-7.794-5.284-24.185-.174-17.094 4.637-25.781a18.354 18.354 0 0 1 10.522-8.918 22.622 22.622 0 0 1 4.473-.975 17.178 17.178 0 0 1 7.444.6l6.012 1.977a17.181 17.181 0 0 0-7.444-.6 22.607 22.607 0 0 0-4.473.975A18.351 18.351 0 0 0 81.7 75.529q-4.811 8.688-4.637 25.781.167 16.391 5.284 24.185a14.265 14.265 0 0 0 7.542 6.025",
|
|
26268
|
+
fill: "#7c7c7c"
|
|
26269
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26270
|
+
"data-name": "Group 8060"
|
|
26271
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26272
|
+
"data-name": "Group 8059",
|
|
26273
|
+
clipPath: "url(#ilu_404_svg__f)",
|
|
26274
|
+
fill: "#7c7c7c"
|
|
26275
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26276
|
+
"data-name": "Path 474",
|
|
26277
|
+
d: "m89.891 131.52-6.012-1.977a14.268 14.268 0 0 1-7.542-6.025q-5.119-7.794-5.284-24.185-.051-5.044.331-9.357l6.016 1.977q-.383 4.313-.331 9.357.167 16.391 5.284 24.185a14.265 14.265 0 0 0 7.542 6.025"
|
|
26278
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26279
|
+
"data-name": "Path 475",
|
|
26280
|
+
d: "m77.4 91.953-6.012-1.977a59.733 59.733 0 0 1 1.122-7.541l6.011 1.977a59.922 59.922 0 0 0-1.121 7.541"
|
|
26281
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26282
|
+
"data-name": "Path 476",
|
|
26283
|
+
d: "m78.518 84.412-6.012-1.977a40.836 40.836 0 0 1 1.117-4.093l6.012 1.977a40.571 40.571 0 0 0-1.117 4.093"
|
|
26284
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26285
|
+
"data-name": "Path 477",
|
|
26286
|
+
d: "m79.635 80.319-6.012-1.977q.487-1.461 1.066-2.768l6.011 1.977q-.579 1.306-1.066 2.768"
|
|
26287
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26288
|
+
"data-name": "Path 478",
|
|
26289
|
+
d: "m80.7 77.551-6.012-1.977q.471-1.062 1-2.021l.056-.1 6.012 1.977-.056.1q-.531.958-1 2.021"
|
|
26290
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26291
|
+
"data-name": "Path 479",
|
|
26292
|
+
d: "m81.758 75.429-6.012-1.977q.531-.947 1.126-1.8l6.012 1.977q-.6.858-1.126 1.8"
|
|
26293
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26294
|
+
"data-name": "Path 480",
|
|
26295
|
+
d: "m82.884 73.625-6.012-1.977a19.926 19.926 0 0 1 1.289-1.664l6.012 1.977a19.929 19.929 0 0 0-1.289 1.664"
|
|
26296
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26297
|
+
"data-name": "Path 481",
|
|
26298
|
+
d: "m84.173 71.962-6.012-1.977a18.366 18.366 0 0 1 1.646-1.676l6.012 1.977a18.367 18.367 0 0 0-1.646 1.676"
|
|
26299
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26300
|
+
"data-name": "Path 482",
|
|
26301
|
+
d: "m85.819 70.285-6.012-1.977a17.627 17.627 0 0 1 2.91-2.111l6.012 1.977a17.585 17.585 0 0 0-2.91 2.111"
|
|
26302
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26303
|
+
"data-name": "Path 483",
|
|
26304
|
+
d: "M88.729 68.174 82.717 66.2a18.647 18.647 0 0 1 3.495-1.563 21.71 21.71 0 0 1 2.9-.738l6.012 1.977a21.67 21.67 0 0 0-2.9.738 18.647 18.647 0 0 0-3.5 1.563"
|
|
26305
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26306
|
+
"data-name": "Path 484",
|
|
26307
|
+
d: "M95.12 65.874 89.108 63.9q.772-.143 1.578-.238a20.315 20.315 0 0 1 3.5-.125l6.012 1.977a20.329 20.329 0 0 0-3.5.125q-.805.1-1.577.238"
|
|
26308
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26309
|
+
"data-name": "Path 485",
|
|
26310
|
+
d: "m100.194 65.511-6.012-1.977a16.043 16.043 0 0 1 2.563.344l6.012 1.977a16.057 16.057 0 0 0-2.563-.344"
|
|
26311
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26312
|
+
"data-name": "Path 486",
|
|
26313
|
+
d: "m102.757 65.856-6.012-1.977a14.172 14.172 0 0 1 1.385.378l6.011 1.977a14.152 14.152 0 0 0-1.384-.378"
|
|
26314
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26315
|
+
"data-name": "Group 8062"
|
|
26316
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26317
|
+
"data-name": "Group 8061",
|
|
26318
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26319
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26320
|
+
"data-name": "Path 488",
|
|
26321
|
+
d: "M111.762 72.342q5.157 7.881 5.323 24.225.174 16.92-4.659 25.628a18.41 18.41 0 0 1-10.557 8.943 22.752 22.752 0 0 1-4.5.98q-9.908 1.173-15.024-6.623t-5.28-24.185q-.174-17.094 4.635-25.781a18.351 18.351 0 0 1 10.522-8.918 22.75 22.75 0 0 1 4.473-.975q9.908-1.173 15.064 6.706M105.024 98q-.119-11.883-2.072-16.849t-6.142-4.472a6.625 6.625 0 0 0-1.291.284q-3.262 1.082-4.766 5.632-1.787 5.405-1.667 17.29t2 16.812q1.872 4.932 6.179 4.422a6.458 6.458 0 0 0 1.27-.279q3.249-1.077 4.787-5.659 1.826-5.432 1.706-17.184",
|
|
26322
|
+
fill: "#4f4f4e"
|
|
26323
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26324
|
+
"data-name": "Path 489",
|
|
26325
|
+
d: "m68.362 104.011-5.613-2.924 6.934.308 5.613 2.924Z",
|
|
26326
|
+
fill: "#323232"
|
|
26327
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26328
|
+
"data-name": "Path 490",
|
|
26329
|
+
d: "m52.825 127.189-5.613-2.924 2.031-13.229 5.613 2.923Z",
|
|
26330
|
+
fill: "#323232"
|
|
26331
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26332
|
+
"data-name": "Path 491",
|
|
26333
|
+
d: "m56.465 103.482-5.613-2.924 1.664-10.829 5.612 2.924Z",
|
|
26334
|
+
fill: "#323232"
|
|
26335
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26336
|
+
"data-name": "Path 492",
|
|
26337
|
+
d: "m58.128 92.652-5.613-2.923q.414-2.707 1.4-7.851l5.616 2.922q-.99 5.145-1.4 7.852",
|
|
26338
|
+
fill: "#323232"
|
|
26339
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26340
|
+
"data-name": "Group 8064"
|
|
26341
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26342
|
+
"data-name": "Group 8063",
|
|
26343
|
+
clipPath: "url(#ilu_404_svg__g)"
|
|
26344
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26345
|
+
"data-name": "Path 493",
|
|
26346
|
+
d: "m58.128 92.652-5.613-2.923q.414-2.707 1.4-7.851l5.616 2.922q-.99 5.145-1.4 7.852",
|
|
26347
|
+
fill: "#323232"
|
|
26348
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26349
|
+
"data-name": "Group 8066"
|
|
26350
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26351
|
+
"data-name": "Group 8065",
|
|
26352
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26353
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26354
|
+
"data-name": "Path 495",
|
|
26355
|
+
d: "m59.531 84.8-5.613-2.924q.987-5.141 1.234-5.966l5.613 2.923q-.248.827-1.234 5.967",
|
|
26356
|
+
fill: "#323232"
|
|
26357
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26358
|
+
"data-name": "Group 8068"
|
|
26359
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26360
|
+
"data-name": "Group 8067",
|
|
26361
|
+
clipPath: "url(#ilu_404_svg__h)",
|
|
26362
|
+
fill: "#323232"
|
|
26363
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26364
|
+
"data-name": "Path 496",
|
|
26365
|
+
d: "m59.531 84.8-5.613-2.924q.891-4.64 1.179-5.764l5.613 2.923q-.29 1.125-1.179 5.765"
|
|
26366
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26367
|
+
"data-name": "Path 497",
|
|
26368
|
+
d: "M60.709 79.036 55.1 76.112c.021-.081.04-.148.056-.2l5.612 2.924a7.866 7.866 0 0 0-.055.2"
|
|
26369
|
+
}))), /*#__PURE__*/React.createElement("path", {
|
|
26370
|
+
"data-name": "Path 499",
|
|
26371
|
+
d: "m63.3 63.383-5.618-2.923 11.227.5 5.613 2.924Z",
|
|
26372
|
+
fill: "#7c7c7c"
|
|
26373
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26374
|
+
"data-name": "Path 500",
|
|
26375
|
+
d: "m42.6 102.864-5.616-2.924 13.868.618 5.613 2.924Z",
|
|
26376
|
+
fill: "#323232"
|
|
26377
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26378
|
+
"data-name": "Path 501",
|
|
26379
|
+
d: "m30.274 112.865-5.613-2.924 1.441-9.388 5.612 2.924Z",
|
|
26380
|
+
fill: "#7c7c7c"
|
|
26381
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26382
|
+
"data-name": "Group 8070"
|
|
26383
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26384
|
+
"data-name": "Group 8069",
|
|
26385
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26386
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26387
|
+
"data-name": "Path 502",
|
|
26388
|
+
d: "m68.362 104.011 6.934.308-1.609 10.481-6.934-.307-2.03 13.229-11.9-.531 2.031-13.23-24.582-1.094 1.441-9.388 31.58-40.094 11.227.5ZM59.531 84.8q.987-5.141 1.234-5.967l-.315-.015a58.161 58.161 0 0 1-4.58 6.83L42.6 102.864l13.868.618 1.663-10.829q.414-2.708 1.4-7.852",
|
|
26389
|
+
fill: "#4f4f4e"
|
|
26390
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26391
|
+
"data-name": "Path 503",
|
|
26392
|
+
d: "m31.714 103.477-5.614-2.924 31.582-40.094 5.618 2.924Z",
|
|
26393
|
+
fill: "#7c7c7c"
|
|
26394
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26395
|
+
"data-name": "Path 504",
|
|
26396
|
+
d: "m149.558 99.844-6.328.072 6.258-3 6.328-.072Z",
|
|
26397
|
+
fill: "#323232"
|
|
26398
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26399
|
+
"data-name": "Path 505",
|
|
26400
|
+
d: "m146.8 127.612-6.328.072-4.454-12.622 6.328-.072Z",
|
|
26401
|
+
fill: "#323232"
|
|
26402
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26403
|
+
"data-name": "Path 506",
|
|
26404
|
+
d: "m138.82 104.993-6.328.072-3.645-10.332 6.328-.072Z",
|
|
26405
|
+
fill: "#323232"
|
|
26406
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26407
|
+
"data-name": "Path 507",
|
|
26408
|
+
d: "m135.174 94.661-6.328.073q-.913-2.582-2.47-7.584l6.328-.073q1.557 5 2.47 7.584",
|
|
26409
|
+
fill: "#323232"
|
|
26410
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26411
|
+
"data-name": "Group 8072"
|
|
26412
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26413
|
+
"data-name": "Group 8071",
|
|
26414
|
+
clipPath: "url(#ilu_404_svg__i)"
|
|
26415
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26416
|
+
"data-name": "Path 508",
|
|
26417
|
+
d: "m135.174 94.661-6.328.073q-.913-2.582-2.47-7.584l6.328-.073q1.557 5 2.47 7.584",
|
|
26418
|
+
fill: "#323232"
|
|
26419
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26420
|
+
"data-name": "Group 8074"
|
|
26421
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26422
|
+
"data-name": "Group 8073",
|
|
26423
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26424
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26425
|
+
"data-name": "Path 510",
|
|
26426
|
+
d: "m132.705 87.077-6.328.072q-1.557-5-1.729-5.843l6.328-.072q.173.844 1.729 5.843",
|
|
26427
|
+
fill: "#323232"
|
|
26428
|
+
}))), /*#__PURE__*/React.createElement("g", {
|
|
26429
|
+
"data-name": "Group 8076"
|
|
26430
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26431
|
+
"data-name": "Group 8075",
|
|
26432
|
+
clipPath: "url(#ilu_404_svg__j)",
|
|
26433
|
+
fill: "#323232"
|
|
26434
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26435
|
+
"data-name": "Path 511",
|
|
26436
|
+
d: "m132.705 87.077-6.328.072q-1.405-4.511-1.682-5.639l6.328-.072q.276 1.128 1.682 5.639"
|
|
26437
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26438
|
+
"data-name": "Path 512",
|
|
26439
|
+
d: "m131.023 81.439-6.328.072a7.316 7.316 0 0 1-.047-.2l6.328-.072c.012.055.027.123.047.2"
|
|
26440
|
+
}))), /*#__PURE__*/React.createElement("path", {
|
|
26441
|
+
"data-name": "Path 514",
|
|
26442
|
+
d: "m125.914 66.42-6.328.072 10.133-4.858 6.329-.072Z",
|
|
26443
|
+
fill: "#7c7c7c"
|
|
26444
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26445
|
+
"data-name": "Path 515",
|
|
26446
|
+
d: "m126.3 110.995-6.328.072 12.517-6 6.328-.072Z",
|
|
26447
|
+
fill: "#323232"
|
|
26448
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26449
|
+
"data-name": "Path 516",
|
|
26450
|
+
d: "m120.16 125.629-6.328.072-3.162-8.956 6.328-.072Z",
|
|
26451
|
+
fill: "#323232"
|
|
26452
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26453
|
+
"data-name": "Group 8078"
|
|
26454
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26455
|
+
"data-name": "Group 8077",
|
|
26456
|
+
clipPath: "url(#ilu_404_svg__b)"
|
|
26457
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26458
|
+
"data-name": "Path 517",
|
|
26459
|
+
d: "m149.558 99.844 6.258-3 3.529 10-6.258 3 4.455 12.622-10.742 5.145-4.455-12.621-22.187 10.639-3.158-8.957 8.915-50.253 10.133-4.858Zm-16.853-12.767q-1.557-5-1.729-5.843l-.285.135a58.114 58.114 0 0 1-.813 8.184l-3.578 21.441 12.517-6-3.645-10.332q-.914-2.582-2.47-7.584",
|
|
26460
|
+
fill: "#4f4f4e"
|
|
26461
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26462
|
+
"data-name": "Path 518",
|
|
26463
|
+
d: "m117 116.673-6.328.072 8.915-50.253 6.328-.072Z",
|
|
26464
|
+
fill: "#323232"
|
|
26465
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26466
|
+
"data-name": "Path 519",
|
|
26467
|
+
d: "M146.43 106.681a1.374 1.374 0 1 0-.727 1.8 1.373 1.373 0 0 0 .727-1.8",
|
|
26468
|
+
fill: "#fff"
|
|
26469
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26470
|
+
"data-name": "Path 520",
|
|
26471
|
+
d: "M152.1 104.245a1.375 1.375 0 1 0-.727 1.8 1.374 1.374 0 0 0 .727-1.8",
|
|
26472
|
+
fill: "#e42127"
|
|
26473
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26474
|
+
"data-name": "Path 521",
|
|
26475
|
+
d: "M105.265 152.871a33.731 33.731 0 0 0 7.432-5.691 7.511 7.511 0 0 0 1.964-5.4 6.925 6.925 0 0 0-3.84-5.9 11.461 11.461 0 0 0-4.249-1.493C96.3 132.432 87.665 137.1 75.3 132.979c-3.121-1.04-5.647-3.749-4.927-7.278.343-1.682 2.021-3.157 3.741-4l3.84-1.921",
|
|
26476
|
+
fill: "none",
|
|
26477
|
+
stroke: "#e42127",
|
|
26478
|
+
strokeMiterlimit: 10,
|
|
26479
|
+
strokeWidth: 1.84
|
|
26480
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26481
|
+
"data-name": "Path 522",
|
|
26482
|
+
d: "M78.475 119.356c.557 1.825.382 3.5-.392 3.732s-1.852-1.052-2.409-2.877-.382-3.5.392-3.732 1.852 1.052 2.409 2.877",
|
|
26483
|
+
fill: "#e42127"
|
|
26484
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26485
|
+
"data-name": "Path 523",
|
|
26486
|
+
d: "m104.472 157.2-2.846 1.787-3.573-5.687 2.846-1.786a3.36 3.36 0 0 1 3.573 5.691",
|
|
26487
|
+
fill: "#e42127"
|
|
26488
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26489
|
+
"data-name": "Line 66",
|
|
26490
|
+
fill: "none",
|
|
26491
|
+
stroke: "#e42127",
|
|
26492
|
+
strokeMiterlimit: 10,
|
|
26493
|
+
strokeWidth: 1.533,
|
|
26494
|
+
d: "m99.21 155.139-1.975 1.24"
|
|
26495
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26496
|
+
"data-name": "Line 67",
|
|
26497
|
+
fill: "none",
|
|
26498
|
+
stroke: "#e42127",
|
|
26499
|
+
strokeMiterlimit: 10,
|
|
26500
|
+
strokeWidth: 1.533,
|
|
26501
|
+
d: "m100.631 157.403-1.975 1.24"
|
|
26502
|
+
}))))));
|
|
26503
|
+
};
|
|
26504
|
+
|
|
26505
|
+
var StyledIllustrationWrapper = styled(Box)(function (_a) {
|
|
26506
|
+
return ({
|
|
26507
|
+
'svg': {
|
|
26508
|
+
width: "115px",
|
|
26509
|
+
height: "115px",
|
|
26510
|
+
},
|
|
26511
|
+
'&.small': {
|
|
26512
|
+
'svg': {
|
|
26513
|
+
width: "115px",
|
|
26514
|
+
height: "115px",
|
|
26515
|
+
},
|
|
26516
|
+
},
|
|
26517
|
+
'&.medium': {
|
|
26518
|
+
'svg': {
|
|
26519
|
+
width: "170px",
|
|
26520
|
+
height: "170px",
|
|
26521
|
+
},
|
|
26522
|
+
},
|
|
26523
|
+
'&.big': {
|
|
26524
|
+
'svg': {
|
|
26525
|
+
width: "222px",
|
|
26526
|
+
height: "222px",
|
|
26527
|
+
},
|
|
26528
|
+
},
|
|
26529
|
+
'&.large': {
|
|
26530
|
+
'svg': {
|
|
26531
|
+
width: "350px",
|
|
26532
|
+
height: "350px",
|
|
26533
|
+
},
|
|
26534
|
+
},
|
|
26535
|
+
'&.big-type': {
|
|
26536
|
+
'svg': {
|
|
26537
|
+
width: "184px",
|
|
26538
|
+
height: "184px",
|
|
26539
|
+
}
|
|
26540
|
+
}
|
|
26541
|
+
});
|
|
26542
|
+
});
|
|
26543
|
+
// @ts-ignore
|
|
26544
|
+
var Illustration = function (_a) {
|
|
26545
|
+
var illustrationName = _a.illustrationName, color = _a.color, size = _a.size, isBigType = _a.isBigType;
|
|
26546
|
+
var bigTypeClassName = isBigType ? 'big-type' : '';
|
|
26547
|
+
return (jsxRuntime.exports.jsxs(StyledIllustrationWrapper, __assign({ className: "".concat(color, " ").concat(size, " ").concat(bigTypeClassName), color: color }, { children: [illustrationName === 'ilu_availability_by_item' && jsxRuntime.exports.jsx(SvgIluAvailabilityByItem, {}), illustrationName === 'ilu_add_goods_to_pallet' && jsxRuntime.exports.jsx(SvgIluAddGoodsToPallet, {}), illustrationName === 'ilu_availability_by_index' && jsxRuntime.exports.jsx(SvgIluAvailabilityByIndex, {}), illustrationName === 'ilu_availability_by_location' && jsxRuntime.exports.jsx(SvgIluAvailabilityByLocation, {}), illustrationName === 'ilu_blocked_pallet' && jsxRuntime.exports.jsx(SvgIluBlockedPallet, {}), illustrationName === 'ilu_finished_product' && jsxRuntime.exports.jsx(SvgIluFinishedProduct, {}), illustrationName === 'ilu_from_pallet_to_rack' && jsxRuntime.exports.jsx(SvgIluFromPalletToRack, {}), illustrationName === 'ilu_internal_logistic' && jsxRuntime.exports.jsx(SvgIluInternalLogistic, {}), illustrationName === 'ilu_inventory' && jsxRuntime.exports.jsx(SvgIluInventory, {}), illustrationName === 'ilu_inventory_transfer' && jsxRuntime.exports.jsx(SvgIluInventoryTransfer, {}), illustrationName === 'ilu_labeling_of_pallets' && jsxRuntime.exports.jsx(SvgIluLabelingOfPallets, {}), illustrationName === 'ilu_loading_car' && jsxRuntime.exports.jsx(SvgIluLoadingCar, {}), illustrationName === 'ilu_manual_transfer' && jsxRuntime.exports.jsx(SvgIluManualTransfer, {}), illustrationName === 'ilu_move_goods_from_pallet_to_another' && jsxRuntime.exports.jsx(SvgIluMoveGoodsFromPalletToAnother, {}), illustrationName === 'ilu_printing_label' && jsxRuntime.exports.jsx(SvgIluPrintingLabel, {}), illustrationName === 'ilu_production' && jsxRuntime.exports.jsx(SvgIluProduction, {}), illustrationName === 'ilu_quality_control' && jsxRuntime.exports.jsx(SvgIluQualityControl, {}), illustrationName === 'ilu_release_of_goods_from_warehouse' && jsxRuntime.exports.jsx(SvgIluReleaseOfGoodsFromWarehouse, {}), illustrationName === 'ilu_remove_goods_from_pallet' && jsxRuntime.exports.jsx(SvgIluRemoveGoodsFromPallet, {}), illustrationName === 'ilu_reprinting_label' && jsxRuntime.exports.jsx(SvgIluReprintingLabel, {}), illustrationName === 'ilu_return_from_customers' && jsxRuntime.exports.jsx(SvgIluReturnFromCustomers, {}), illustrationName === 'ilu_sale' && jsxRuntime.exports.jsx(SvgIluSale, {}), illustrationName === 'ilu_shift_pallet' && jsxRuntime.exports.jsx(SvgIluShiftPallet, {}), illustrationName === 'ilu_shopping' && jsxRuntime.exports.jsx(SvgIluShopping, {}), illustrationName === 'ilu_status_change' && jsxRuntime.exports.jsx(SvgIluStatusChange, {}), illustrationName === 'ilu_storage_field' && jsxRuntime.exports.jsx(SvgIluStorageField, {}), illustrationName === 'ilu_warehouse_loading' && jsxRuntime.exports.jsx(SvgIluWarehouseLoading, {}), illustrationName === 'ilu_moving_box_to_another_shelf' && jsxRuntime.exports.jsx(SvgMovingBoxToAnotherShelf, {}), illustrationName === 'ilu_search' && jsxRuntime.exports.jsx(SvgIluSearch, {}), illustrationName === 'ilu_404' && jsxRuntime.exports.jsx(SvgIlu404, {})] })));
|
|
26548
|
+
};
|
|
26549
|
+
|
|
26550
|
+
var _path$g, _path2$c, _path3$4;
|
|
26551
|
+
function _extends$F() { _extends$F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
|
|
26552
|
+
var SvgIconWfSearch = function SvgIconWfSearch(props) {
|
|
26553
|
+
return /*#__PURE__*/React.createElement("svg", _extends$F({
|
|
26554
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26555
|
+
width: 26,
|
|
26556
|
+
height: 26
|
|
26557
|
+
}, props), _path$g || (_path$g = /*#__PURE__*/React.createElement("path", {
|
|
26558
|
+
"data-name": "Rectangle 20574",
|
|
26559
|
+
fill: "#e42127",
|
|
26560
|
+
d: "m16.788 18.066 1.274-1.274 6.724 6.724-1.274 1.274z"
|
|
26561
|
+
})), _path2$c || (_path2$c = /*#__PURE__*/React.createElement("path", {
|
|
26562
|
+
"data-name": "Path 84637",
|
|
26563
|
+
d: "M10.742 20.266a9.529 9.529 0 1 1 9.529-9.529 9.529 9.529 0 0 1-9.529 9.529Zm0-17.255a7.727 7.727 0 1 0 7.727 7.727 7.727 7.727 0 0 0-7.727-7.727Z",
|
|
26564
|
+
fill: "#293072"
|
|
26565
|
+
})), _path3$4 || (_path3$4 = /*#__PURE__*/React.createElement("path", {
|
|
26566
|
+
"data-name": "Rectangle 20575",
|
|
26567
|
+
fill: "none",
|
|
26568
|
+
d: "M0 0h26v26H0z"
|
|
26569
|
+
})));
|
|
26570
|
+
};
|
|
26571
|
+
|
|
26572
|
+
var _path$f, _path2$b, _path3$3;
|
|
26573
|
+
function _extends$E() { _extends$E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
|
|
26574
|
+
var SvgIconWfLocked = function SvgIconWfLocked(props) {
|
|
26575
|
+
return /*#__PURE__*/React.createElement("svg", _extends$E({
|
|
26576
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26577
|
+
width: 26,
|
|
26578
|
+
height: 26
|
|
26579
|
+
}, props), _path$f || (_path$f = /*#__PURE__*/React.createElement("path", {
|
|
26580
|
+
"data-name": "Rectangle 20466",
|
|
26581
|
+
fill: "#e42127",
|
|
26582
|
+
d: "M12.123 13.888h1.754v5.236h-1.754z"
|
|
26583
|
+
})), _path2$b || (_path2$b = /*#__PURE__*/React.createElement("path", {
|
|
26584
|
+
"data-name": "Path 84584",
|
|
26585
|
+
d: "M22.652 8.632h-3.3v-5.28a1.744 1.744 0 0 0-1.743-1.742H8.39a1.744 1.744 0 0 0-1.742 1.742v5.28h-3.3a1.744 1.744 0 0 0-1.739 1.742v12.272a1.744 1.744 0 0 0 1.742 1.742h19.3a1.744 1.744 0 0 0 1.743-1.742V10.374a1.744 1.744 0 0 0-1.742-1.742ZM8.39 3.346h9.219v5.28H8.388Zm14.263 19.3H3.344V10.369h19.308Z",
|
|
26586
|
+
fill: "#293072"
|
|
26587
|
+
})), _path3$3 || (_path3$3 = /*#__PURE__*/React.createElement("path", {
|
|
26588
|
+
"data-name": "Rectangle 20467",
|
|
26589
|
+
fill: "none",
|
|
26590
|
+
d: "M0 0h26v26H0z"
|
|
26591
|
+
})));
|
|
26592
|
+
};
|
|
26593
|
+
|
|
26594
|
+
var _path$e, _path2$a, _path3$2;
|
|
26595
|
+
function _extends$D() { _extends$D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
|
|
26596
|
+
var SvgIconWfDownload = function SvgIconWfDownload(props) {
|
|
26597
|
+
return /*#__PURE__*/React.createElement("svg", _extends$D({
|
|
26598
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26599
|
+
width: 46,
|
|
26600
|
+
height: 46
|
|
26601
|
+
}, props), _path$e || (_path$e = /*#__PURE__*/React.createElement("path", {
|
|
26602
|
+
"data-name": "color-2",
|
|
26603
|
+
fill: "#e42127",
|
|
26604
|
+
d: "M3.121 39.74h39.758v3.058H3.121z"
|
|
26605
|
+
})), _path2$a || (_path2$a = /*#__PURE__*/React.createElement("path", {
|
|
26606
|
+
"data-name": "color-1",
|
|
26607
|
+
d: "m35.285 20.636-9.991 9.988V3.122h-3.06v27.614l-9.949-10.09-2.177 2.148 11.413 11.572a3.038 3.038 0 0 0 2.167.91h.011a3.036 3.036 0 0 0 2.162-.9l11.586-11.582Z",
|
|
26608
|
+
fill: "#293072"
|
|
26609
|
+
})), _path3$2 || (_path3$2 = /*#__PURE__*/React.createElement("path", {
|
|
26610
|
+
fill: "none",
|
|
26611
|
+
d: "M0 0h46v46H0z"
|
|
26612
|
+
})));
|
|
26613
|
+
};
|
|
26614
|
+
|
|
26615
|
+
var _path$d, _g$u, _path2$9;
|
|
26616
|
+
function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
|
|
26617
|
+
var SvgIconWfRemove = function SvgIconWfRemove(props) {
|
|
26618
|
+
return /*#__PURE__*/React.createElement("svg", _extends$C({
|
|
26619
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26620
|
+
width: 46,
|
|
26621
|
+
height: 46
|
|
26622
|
+
}, props), _path$d || (_path$d = /*#__PURE__*/React.createElement("path", {
|
|
26623
|
+
"data-name": "Rectangle 19790",
|
|
26624
|
+
fill: "#e42127",
|
|
26625
|
+
d: "M14.583 3.107h16.833v3.061H14.583z"
|
|
26626
|
+
})), _g$u || (_g$u = /*#__PURE__*/React.createElement("g", {
|
|
26627
|
+
fill: "#293072"
|
|
26628
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26629
|
+
"data-name": "Rectangle 19787",
|
|
26630
|
+
d: "M16.878 18.41h3.061v16.833h-3.061z"
|
|
26631
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26632
|
+
"data-name": "Rectangle 19788",
|
|
26633
|
+
d: "M26.06 18.41h3.061v16.833H26.06z"
|
|
26634
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26635
|
+
"data-name": "Path 84280",
|
|
26636
|
+
d: "M33.673 13.819a.073.073 0 0 1 .073.073v24.411a1.53 1.53 0 0 1-1.53 1.53h-18.4a1.53 1.53 0 0 1-1.53-1.53V13.892a.073.073 0 0 1 .073-.073h21.314m0-3.061H12.361a3.137 3.137 0 0 0-3.134 3.134v24.411a4.6 4.6 0 0 0 4.591 4.591h18.4a4.6 4.6 0 0 0 4.591-4.591V13.892a3.137 3.137 0 0 0-3.134-3.134Z"
|
|
26637
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26638
|
+
"data-name": "Rectangle 19789",
|
|
26639
|
+
d: "M3.106 10.758h39.788v3.061H3.106z"
|
|
26640
|
+
}))), _path2$9 || (_path2$9 = /*#__PURE__*/React.createElement("path", {
|
|
26641
|
+
"data-name": "Rectangle 19791",
|
|
26642
|
+
fill: "none",
|
|
26643
|
+
d: "M0 0h46v46H0z"
|
|
26644
|
+
})));
|
|
26645
|
+
};
|
|
26646
|
+
|
|
26647
|
+
var _g$t;
|
|
26648
|
+
function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
|
|
26649
|
+
var SvgIconWfLogout = function SvgIconWfLogout(props) {
|
|
26650
|
+
return /*#__PURE__*/React.createElement("svg", _extends$B({
|
|
26651
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26652
|
+
width: 46,
|
|
26653
|
+
height: 46
|
|
26654
|
+
}, props), _g$t || (_g$t = /*#__PURE__*/React.createElement("g", {
|
|
26655
|
+
"data-name": "icon_wf_logout"
|
|
26656
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26657
|
+
"data-name": "color-2",
|
|
26658
|
+
d: "M41.885 20.944 30.77 9.829l-2.146 2.147 9.53 9.536H13.089v3.036h25.177l-9.632 9.496 2.132 2.162L41.87 25.262a3.041 3.041 0 0 0 .015-4.314Z",
|
|
26659
|
+
fill: "#e42127"
|
|
26660
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26661
|
+
"data-name": "Path 84271",
|
|
26662
|
+
d: "M23.705 42.73H6.081a3.044 3.044 0 0 1-3.041-3.041V6.31a3.044 3.044 0 0 1 3.041-3.04h17.624v3.036H6.081v33.383l17.629.005Z",
|
|
26663
|
+
fill: "#293072"
|
|
26664
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26665
|
+
"data-name": "Rectangle 19773",
|
|
26666
|
+
fill: "none",
|
|
26667
|
+
d: "M0 0h46v46H0z"
|
|
26668
|
+
}))));
|
|
26669
|
+
};
|
|
26670
|
+
|
|
26671
|
+
var _path$c, _path2$8, _path3$1;
|
|
26672
|
+
function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
|
|
26673
|
+
var SvgIconWfEdit = function SvgIconWfEdit(props) {
|
|
26674
|
+
return /*#__PURE__*/React.createElement("svg", _extends$A({
|
|
26675
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26676
|
+
width: 46,
|
|
26677
|
+
height: 46
|
|
26678
|
+
}, props), _path$c || (_path$c = /*#__PURE__*/React.createElement("path", {
|
|
26679
|
+
"data-name": "color-2",
|
|
26680
|
+
fill: "#e42127",
|
|
26681
|
+
d: "M26.049 39.853H42.89v3.036H26.049z"
|
|
26682
|
+
})), _path2$8 || (_path2$8 = /*#__PURE__*/React.createElement("path", {
|
|
26683
|
+
"data-name": "color-1",
|
|
26684
|
+
d: "m42.029 12.306-8.39-8.365a2.706 2.706 0 0 0-1.885-.819 1.941 1.941 0 0 0-1.4.554L3.282 30.836a.46.46 0 0 0-.134.327l.039 10.184a1.523 1.523 0 0 0 1.518 1.514l10.194.017a.461.461 0 0 0 .326-.135l27.08-27.158a2.343 2.343 0 0 0-.276-3.279ZM13.758 39.657l-7.353-.012-.028-7.349 19.36-19.419 7.368 7.374ZM35.379 17.97l-7.374-7.373 3.862-3.874 7.385 7.362Z",
|
|
26685
|
+
fill: "#293072"
|
|
26686
|
+
})), _path3$1 || (_path3$1 = /*#__PURE__*/React.createElement("path", {
|
|
26687
|
+
"data-name": "Rectangle 19786",
|
|
26688
|
+
fill: "none",
|
|
26689
|
+
d: "M0 0h46v46H0z"
|
|
26690
|
+
})));
|
|
26691
|
+
};
|
|
26692
|
+
|
|
26693
|
+
var _g$s;
|
|
26694
|
+
function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
|
|
26695
|
+
var SvgIconWfSettingsOrFilter = function SvgIconWfSettingsOrFilter(props) {
|
|
26696
|
+
return /*#__PURE__*/React.createElement("svg", _extends$z({
|
|
26697
|
+
"data-name": "icon_wf_settings or filter",
|
|
26698
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26699
|
+
width: 46,
|
|
26700
|
+
height: 46
|
|
26701
|
+
}, props), _g$s || (_g$s = /*#__PURE__*/React.createElement("g", {
|
|
26702
|
+
"data-name": "Group 42290"
|
|
26703
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26704
|
+
"data-name": "Path 84278",
|
|
26705
|
+
d: "M42.909 21.54H21.064v-2.089a1.806 1.806 0 0 0-1.8-1.8H12.17a1.806 1.806 0 0 0-1.8 1.8v2.089H3.093v3.036h7.271v2.088a1.805 1.805 0 0 0 1.8 1.8h7.093a1.805 1.805 0 0 0 1.8-1.8v-2.089h21.852Zm-24.992 3.781h-4.406v-4.527h4.406Z",
|
|
26706
|
+
fill: "#e42127"
|
|
26707
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26708
|
+
fill: "#293072"
|
|
26709
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26710
|
+
"data-name": "Path 84276",
|
|
26711
|
+
d: "M42.909 36.028h-7.461v-1.954a1.75 1.75 0 0 0-1.748-1.748h-6.83a1.75 1.75 0 0 0-1.748 1.748v1.954H3.093v3.036h22.033v1.953a1.749 1.749 0 0 0 1.744 1.747h6.83a1.749 1.749 0 0 0 1.748-1.748v-1.952h7.461Zm-10.5 3.7h-4.247v-4.366h4.251Z"
|
|
26712
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26713
|
+
"data-name": "Path 84277",
|
|
26714
|
+
d: "M42.909 6.871h-7.461V4.918A1.75 1.75 0 0 0 33.7 3.17h-6.83a1.75 1.75 0 0 0-1.748 1.748v1.953H3.093v3.036h22.033v1.954a1.75 1.75 0 0 0 1.744 1.748h6.83a1.75 1.75 0 0 0 1.748-1.748V9.907h7.461Zm-10.5 3.7h-4.247V6.206h4.251Z"
|
|
26715
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
26716
|
+
"data-name": "Rectangle 19784",
|
|
26717
|
+
fill: "none",
|
|
26718
|
+
d: "M0 0h46v46H0z"
|
|
26719
|
+
}))));
|
|
26720
|
+
};
|
|
26721
|
+
|
|
26722
|
+
var _g$r, _path$b;
|
|
26723
|
+
function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
|
|
26724
|
+
var SvgIconWfBarcode1D = function SvgIconWfBarcode1D(props) {
|
|
26725
|
+
return /*#__PURE__*/React.createElement("svg", _extends$y({
|
|
26726
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26727
|
+
width: 46,
|
|
26728
|
+
height: 46
|
|
26729
|
+
}, props), _g$r || (_g$r = /*#__PURE__*/React.createElement("g", {
|
|
26730
|
+
fill: "#293072"
|
|
26731
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26732
|
+
"data-name": "Path 85537",
|
|
26733
|
+
d: "m4.581 12.288-3.036-.01.02-6.122a3.049 3.049 0 0 1 3.044-3.025h6.1v3.036h-6.1Z"
|
|
26734
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26735
|
+
"data-name": "Path 85538",
|
|
26736
|
+
d: "M10.711 42.887h-6.1a3.048 3.048 0 0 1-3.04-3.021l-.02-6.127 3.036-.01.02 6.121h6.104Z"
|
|
26737
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26738
|
+
"data-name": "Path 85539",
|
|
26739
|
+
d: "m41.398 12.271-.023-6.126h-6.107V3.114h6.1a3.048 3.048 0 0 1 3.043 3.021l.02 6.127Z"
|
|
26740
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26741
|
+
"data-name": "Path 85540",
|
|
26742
|
+
d: "M41.37 42.872h-6.1v-3.036h6.1l.024-6.121 3.036.01-.02 6.122a3.049 3.049 0 0 1-3.04 3.026"
|
|
26743
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26744
|
+
"data-name": "Rectangle 22306",
|
|
26745
|
+
d: "M6.164 12.284H9.2V33.72H6.164z"
|
|
26746
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26747
|
+
"data-name": "Rectangle 22307",
|
|
26748
|
+
d: "M13.264 12.284h1.38V33.72h-1.38z"
|
|
26749
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26750
|
+
"data-name": "Rectangle 22308",
|
|
26751
|
+
d: "M17.926 12.285h4.6v21.42h-4.6z"
|
|
26752
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26753
|
+
"data-name": "Rectangle 22309",
|
|
26754
|
+
d: "M25.808 12.284h1.38V33.72h-1.38z"
|
|
26755
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26756
|
+
"data-name": "Rectangle 22310",
|
|
26757
|
+
d: "M31.251 12.284h3.036V33.72h-3.036z"
|
|
26758
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26759
|
+
"data-name": "Rectangle 22311",
|
|
26760
|
+
d: "M38.352 12.284h1.38V33.72h-1.38z"
|
|
26761
|
+
}))), _path$b || (_path$b = /*#__PURE__*/React.createElement("path", {
|
|
26762
|
+
"data-name": "Rectangle 22312",
|
|
26763
|
+
fill: "none",
|
|
26764
|
+
d: "M0 0h46v46H0z"
|
|
26765
|
+
})));
|
|
26766
|
+
};
|
|
26767
|
+
|
|
26768
|
+
var _g$q;
|
|
26769
|
+
function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
|
|
26770
|
+
var SvgIconWfBarcode2D = function SvgIconWfBarcode2D(props) {
|
|
26771
|
+
return /*#__PURE__*/React.createElement("svg", _extends$x({
|
|
26772
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26773
|
+
width: 46,
|
|
26774
|
+
height: 46
|
|
26775
|
+
}, props), _g$q || (_g$q = /*#__PURE__*/React.createElement("g", {
|
|
26776
|
+
"data-name": "Group 43962"
|
|
26777
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26778
|
+
fill: "#293072"
|
|
26779
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26780
|
+
"data-name": "Path 84676",
|
|
26781
|
+
d: "M39.785 42.871h-6.1v-3.036h6.1l.024-6.121 3.036.009-.019 6.122a3.049 3.049 0 0 1-3.041 3.026Z"
|
|
26782
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26783
|
+
"data-name": "Path 84677",
|
|
26784
|
+
d: "m28.312 34.458-3.036-.01.02-6.121a3.047 3.047 0 0 1 3.04-3.028h6.1v3.036h-6.1Z"
|
|
26785
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26786
|
+
"data-name": "Path 84678",
|
|
26787
|
+
d: "M20.681 42.889H6.154a3.066 3.066 0 0 1-3.062-3.062V25.299h17.589ZM6.128 28.337v11.49l11.517.023V28.337Z"
|
|
26788
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26789
|
+
"data-name": "Path 84679",
|
|
26790
|
+
d: "M20.681 20.715H3.092V6.188A3.066 3.066 0 0 1 6.154 3.13h14.527Zm-14.55-3.036h11.514V6.162H6.154Z"
|
|
26791
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26792
|
+
"data-name": "Path 84680",
|
|
26793
|
+
d: "M42.87 20.715H25.281V3.13h14.527a3.065 3.065 0 0 1 3.062 3.062Zm-14.549-3.036h11.513V6.188l-11.513-.023Z"
|
|
26794
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
26795
|
+
fill: "#e42127"
|
|
26796
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26797
|
+
"data-name": "Rectangle 20923",
|
|
26798
|
+
d: "M10.355 10.389h3.062v3.062h-3.062z"
|
|
26799
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26800
|
+
"data-name": "Rectangle 20924",
|
|
26801
|
+
d: "M10.34 32.564h3.062v3.062H10.34z"
|
|
26802
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26803
|
+
"data-name": "Rectangle 20925",
|
|
26804
|
+
d: "M32.545 10.389h3.062v3.062h-3.062z"
|
|
26805
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26806
|
+
"data-name": "Rectangle 20926",
|
|
26807
|
+
d: "M32.545 32.578h3.062v3.062h-3.062z"
|
|
26808
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26809
|
+
"data-name": "Rectangle 20927",
|
|
26810
|
+
d: "M39.791 25.302h3.062v3.062h-3.062z"
|
|
26811
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26812
|
+
"data-name": "Rectangle 20928",
|
|
26813
|
+
d: "M25.268 39.823h3.062v3.062h-3.062z"
|
|
26814
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
26815
|
+
"data-name": "Rectangle 20929",
|
|
26816
|
+
fill: "none",
|
|
26817
|
+
d: "M0 0h46v46H0z"
|
|
26818
|
+
}))));
|
|
26819
|
+
};
|
|
26820
|
+
|
|
26821
|
+
var _g$p;
|
|
26822
|
+
function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
|
|
26823
|
+
var SvgIconWfBarcodePrinter = function SvgIconWfBarcodePrinter(props) {
|
|
26824
|
+
return /*#__PURE__*/React.createElement("svg", _extends$w({
|
|
26825
|
+
"data-name": "Component 292 \\u2013 5",
|
|
26826
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26827
|
+
width: 46,
|
|
26828
|
+
height: 46
|
|
26829
|
+
}, props), _g$p || (_g$p = /*#__PURE__*/React.createElement("g", {
|
|
26830
|
+
"data-name": "Group 43974"
|
|
26831
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26832
|
+
"data-name": "Rectangle 20938",
|
|
26833
|
+
fill: "#e42127",
|
|
26834
|
+
d: "M32.141 34.47h-3.062v-3.062h3.062z"
|
|
26835
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26836
|
+
fill: "#293072"
|
|
26837
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26838
|
+
"data-name": "Rectangle 20931",
|
|
26839
|
+
d: "M11.508 8.455h3.036v14.552h-3.036z"
|
|
26840
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26841
|
+
"data-name": "Rectangle 20932",
|
|
26842
|
+
d: "M18.14 8.455h3.036v9.182H18.14z"
|
|
26843
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26844
|
+
"data-name": "Rectangle 20933",
|
|
26845
|
+
d: "M24.771 8.455h3.036v9.182h-3.036z"
|
|
26846
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26847
|
+
"data-name": "Rectangle 20934",
|
|
26848
|
+
d: "M31.402 8.455h3.036v14.552h-3.036z"
|
|
26849
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26850
|
+
"data-name": "Rectangle 20935",
|
|
26851
|
+
d: "M27.82 22.993h-3.062v-3.062h3.062z"
|
|
26852
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26853
|
+
"data-name": "Rectangle 20936",
|
|
26854
|
+
d: "M21.188 22.993h-3.062v-3.062h3.062z"
|
|
26855
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26856
|
+
"data-name": "Rectangle 20937",
|
|
26857
|
+
d: "M36.731 34.47h-3.062v-3.062h3.062z"
|
|
26858
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26859
|
+
"data-name": "Path 84682",
|
|
26860
|
+
d: "M40.192 25.315H39.07V5.916a2.812 2.812 0 0 0-2.809-2.809H9.726a2.813 2.813 0 0 0-2.809 2.809v19.4H5.796a2.694 2.694 0 0 0-2.691 2.691v12.176a2.694 2.694 0 0 0 2.691 2.691h34.4a2.694 2.694 0 0 0 2.691-2.691V28.006a2.694 2.694 0 0 0-2.695-2.691ZM9.954 6.143h26.08V25.3H9.954Zm29.893 33.695H6.141V28.352h33.706Z"
|
|
26861
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
26862
|
+
"data-name": "Rectangle 20939",
|
|
26863
|
+
fill: "none",
|
|
26864
|
+
d: "M0 0h46v46H0z"
|
|
26865
|
+
}))));
|
|
26866
|
+
};
|
|
26867
|
+
|
|
26868
|
+
var _g$o;
|
|
26869
|
+
function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
|
|
26870
|
+
var SvgIconWfBox = function SvgIconWfBox(props) {
|
|
26871
|
+
return /*#__PURE__*/React.createElement("svg", _extends$v({
|
|
26872
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26873
|
+
width: 46,
|
|
26874
|
+
height: 46
|
|
26875
|
+
}, props), _g$o || (_g$o = /*#__PURE__*/React.createElement("g", {
|
|
26876
|
+
"data-name": "icon_wf_box v1"
|
|
26877
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26878
|
+
"data-name": "Rectangle 20916",
|
|
26879
|
+
fill: "#e42127",
|
|
26880
|
+
d: "M33.671 36.766h-3.062v-3.062h3.062z"
|
|
26881
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26882
|
+
fill: "#293072"
|
|
26883
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26884
|
+
"data-name": "Path 84669",
|
|
26885
|
+
d: "M30.597 19.993H15.316v-7.72h3.04v4.683h9.2v-4.683h3.036Z"
|
|
26886
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26887
|
+
"data-name": "Path 84670",
|
|
26888
|
+
d: "M36.889 42.848H9.116a2.909 2.909 0 0 1-2.906-2.905V12.165a2.909 2.909 0 0 1 2.906-2.906h27.773a2.909 2.909 0 0 1 2.905 2.906v27.777a2.908 2.908 0 0 1-2.905 2.906ZM9.242 39.812h27.517V12.295H9.242Z"
|
|
26889
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26890
|
+
"data-name": "Path 84671",
|
|
26891
|
+
d: "M39.807 12.295H6.118a3.044 3.044 0 0 1-3.04-3.04V6.167a3.043 3.043 0 0 1 3.04-3.037h33.689a3.043 3.043 0 0 1 3.041 3.04v3.087a3.044 3.044 0 0 1-3.041 3.038ZM6.118 6.163v3.092h33.693V6.163Z"
|
|
26892
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
26893
|
+
"data-name": "Rectangle 20917",
|
|
26894
|
+
fill: "none",
|
|
26895
|
+
d: "M0 0h46v46H0z"
|
|
26896
|
+
}))));
|
|
26897
|
+
};
|
|
26898
|
+
|
|
26899
|
+
var _g$n;
|
|
26900
|
+
function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
|
|
26901
|
+
var SvgIconWfCalculator = function SvgIconWfCalculator(props) {
|
|
26902
|
+
return /*#__PURE__*/React.createElement("svg", _extends$u({
|
|
26903
|
+
"data-name": "Component 286 \\u2013 2",
|
|
26904
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26905
|
+
width: 46,
|
|
26906
|
+
height: 46
|
|
26907
|
+
}, props), _g$n || (_g$n = /*#__PURE__*/React.createElement("g", {
|
|
26908
|
+
"data-name": "Group 43933"
|
|
26909
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26910
|
+
"data-name": "Rectangle 20906",
|
|
26911
|
+
fill: "#e42127",
|
|
26912
|
+
d: "M13.027 10.023h19.379v3.036H13.027z"
|
|
26913
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
26914
|
+
fill: "#293072"
|
|
26915
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26916
|
+
"data-name": "Path 84668",
|
|
26917
|
+
d: "M36.773 42.88H9.227a3.043 3.043 0 0 1-3.04-3.04V6.161a3.044 3.044 0 0 1 3.04-3.041h27.546a3.044 3.044 0 0 1 3.04 3.041v33.677a3.043 3.043 0 0 1-3.04 3.042ZM9.227 6.156V39.84h27.55V6.157Z"
|
|
26918
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26919
|
+
"data-name": "Rectangle 20907",
|
|
26920
|
+
d: "M24.241 28.382h-3.062V25.32h3.062z"
|
|
26921
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26922
|
+
"data-name": "Rectangle 20908",
|
|
26923
|
+
d: "M16.076 28.382h-3.062V25.32h3.062z"
|
|
26924
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26925
|
+
"data-name": "Rectangle 20909",
|
|
26926
|
+
d: "M32.406 20.774h-3.062v-3.062h3.062z"
|
|
26927
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26928
|
+
"data-name": "Rectangle 20910",
|
|
26929
|
+
d: "M24.241 20.774h-3.062v-3.062h3.062z"
|
|
26930
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26931
|
+
"data-name": "Rectangle 20911",
|
|
26932
|
+
d: "M16.076 20.774h-3.062v-3.062h3.062z"
|
|
26933
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26934
|
+
"data-name": "Rectangle 20912",
|
|
26935
|
+
d: "M32.406 36.005h-3.062V25.32h3.062z"
|
|
26936
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26937
|
+
"data-name": "Rectangle 20913",
|
|
26938
|
+
d: "M24.241 36.005h-3.062v-3.062h3.062z"
|
|
26939
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26940
|
+
"data-name": "Rectangle 20914",
|
|
26941
|
+
d: "M16.076 36.005h-3.062v-3.062h3.062z"
|
|
26942
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
26943
|
+
"data-name": "Rectangle 20915",
|
|
26944
|
+
fill: "none",
|
|
26945
|
+
d: "M0 0h46v46H0z"
|
|
26946
|
+
}))));
|
|
26947
|
+
};
|
|
26948
|
+
|
|
26949
|
+
var _g$m;
|
|
26950
|
+
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
26951
|
+
var SvgIconWfCalendar = function SvgIconWfCalendar(props) {
|
|
26952
|
+
return /*#__PURE__*/React.createElement("svg", _extends$t({
|
|
26953
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26954
|
+
width: 46,
|
|
26955
|
+
height: 46
|
|
26956
|
+
}, props), _g$m || (_g$m = /*#__PURE__*/React.createElement("g", {
|
|
26957
|
+
"data-name": "Group 43270"
|
|
26958
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
26959
|
+
fill: "#e42127"
|
|
26960
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26961
|
+
"data-name": "Rectangle 20468",
|
|
26962
|
+
d: "M9.474 9.472h27.05v2.983H9.474z"
|
|
26963
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26964
|
+
"data-name": "Rectangle 20470",
|
|
26965
|
+
d: "M28.516 27.512h-3.009v-3.009h3.009z"
|
|
26966
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
26967
|
+
fill: "#293072"
|
|
26968
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
26969
|
+
"data-name": "Path 84585",
|
|
26970
|
+
d: "M39.042 6.467a.452.452 0 0 1 .452.452v32.192a.452.452 0 0 1-.452.452H6.852a.452.452 0 0 1-.452-.452V6.919a.452.452 0 0 1 .452-.452h32.19m0-2.983H6.852a3.439 3.439 0 0 0-3.435 3.435v32.192a3.439 3.439 0 0 0 3.435 3.435h32.19a3.439 3.439 0 0 0 3.435-3.435V6.919a3.439 3.439 0 0 0-3.435-3.435Z"
|
|
26971
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26972
|
+
"data-name": "Rectangle 20469",
|
|
26973
|
+
d: "M36.539 27.512H33.53v-3.009h3.009z"
|
|
26974
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26975
|
+
"data-name": "Rectangle 20471",
|
|
26976
|
+
d: "M20.493 27.512h-3.009v-3.009h3.009z"
|
|
26977
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26978
|
+
"data-name": "Rectangle 20472",
|
|
26979
|
+
d: "M12.47 27.512H9.461v-3.009h3.009z"
|
|
26980
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26981
|
+
"data-name": "Rectangle 20473",
|
|
26982
|
+
d: "M36.539 20.036H33.53v-3.009h3.009z"
|
|
26983
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26984
|
+
"data-name": "Rectangle 20474",
|
|
26985
|
+
d: "M28.516 20.036h-3.009v-3.009h3.009z"
|
|
26986
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26987
|
+
"data-name": "Rectangle 20475",
|
|
26988
|
+
d: "M20.493 20.036h-3.009v-3.009h3.009z"
|
|
26989
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26990
|
+
"data-name": "Rectangle 20476",
|
|
26991
|
+
d: "M12.47 20.036H9.461v-3.009h3.009z"
|
|
26992
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26993
|
+
"data-name": "Rectangle 20477",
|
|
26994
|
+
d: "M28.516 35.003h-3.009v-3.009h3.009z"
|
|
26995
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26996
|
+
"data-name": "Rectangle 20478",
|
|
26997
|
+
d: "M20.493 35.003h-3.009v-3.009h3.009z"
|
|
26998
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26999
|
+
"data-name": "Rectangle 20479",
|
|
27000
|
+
d: "M12.47 35.003H9.461v-3.009h3.009z"
|
|
27001
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27002
|
+
"data-name": "Rectangle 20480",
|
|
27003
|
+
fill: "none",
|
|
27004
|
+
d: "M0 0h46v46H0z"
|
|
27005
|
+
}))));
|
|
27006
|
+
};
|
|
27007
|
+
|
|
27008
|
+
var _g$l, _g2, _path$a;
|
|
27009
|
+
function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$s.apply(this, arguments); }
|
|
27010
|
+
var SvgIconWfCar = function SvgIconWfCar(props) {
|
|
27011
|
+
return /*#__PURE__*/React.createElement("svg", _extends$s({
|
|
27012
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27013
|
+
width: 46,
|
|
27014
|
+
height: 46
|
|
27015
|
+
}, props), _g$l || (_g$l = /*#__PURE__*/React.createElement("g", {
|
|
27016
|
+
fill: "#e42127"
|
|
27017
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27018
|
+
"data-name": "Rectangle 20900",
|
|
27019
|
+
d: "M16.949 27.53h-3.016v-3.016h3.016z"
|
|
27020
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27021
|
+
"data-name": "Rectangle 20901",
|
|
27022
|
+
d: "M3.381 16.976h5.258v2.99H3.381z"
|
|
27023
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27024
|
+
"data-name": "Rectangle 20902",
|
|
27025
|
+
d: "M37.309 16.99h5.258v2.99h-5.258z"
|
|
27026
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27027
|
+
"data-name": "Rectangle 20903",
|
|
27028
|
+
d: "M32.007 27.53h-3.016v-3.016h3.016z"
|
|
27029
|
+
}))), _g2 || (_g2 = /*#__PURE__*/React.createElement("g", {
|
|
27030
|
+
fill: "#293072"
|
|
27031
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27032
|
+
"data-name": "Rectangle 20904",
|
|
27033
|
+
d: "M9.394 16.99h27.145v2.99H9.394z"
|
|
27034
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27035
|
+
"data-name": "Path 84667",
|
|
27036
|
+
d: "M39.528 30.96V16.992h-.031L33.729 5.347a2.99 2.99 0 0 0-2.8-1.934H15.005a2.991 2.991 0 0 0-2.8 1.931l-5.79 11.603.092.046h-.115v22.6a3 3 0 0 0 2.994 2.994h4.336a3 3 0 0 0 2.995-2.994V36.56h12.5v3.035a3 3 0 0 0 2.995 2.994h4.336a3 3 0 0 0 2.995-2.994V30.96ZM14.921 6.598l.085-.2h15.927l5.229 10.588H9.734ZM9.382 19.981h27.155v13.59H9.382v-13.59Zm4.341 19.618H9.382V36.56h4.344Zm18.484 0V36.56h4.341v3.039Z"
|
|
27037
|
+
}))), _path$a || (_path$a = /*#__PURE__*/React.createElement("path", {
|
|
27038
|
+
"data-name": "Rectangle 20905",
|
|
27039
|
+
fill: "none",
|
|
27040
|
+
d: "M0 0h46v46H0z"
|
|
27041
|
+
})));
|
|
27042
|
+
};
|
|
27043
|
+
|
|
27044
|
+
var _g$k;
|
|
27045
|
+
function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
|
|
27046
|
+
var SvgIconWfForklift = function SvgIconWfForklift(props) {
|
|
27047
|
+
return /*#__PURE__*/React.createElement("svg", _extends$r({
|
|
27048
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27049
|
+
width: 46,
|
|
27050
|
+
height: 46
|
|
27051
|
+
}, props), _g$k || (_g$k = /*#__PURE__*/React.createElement("g", {
|
|
27052
|
+
"data-name": "icon_wf_forklift"
|
|
27053
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
27054
|
+
fill: "#e42127"
|
|
27055
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27056
|
+
"data-name": "Rectangle 20941",
|
|
27057
|
+
d: "M29.695 20.697h5.339v3.036h-5.339z"
|
|
27058
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27059
|
+
"data-name": "Path 84690",
|
|
27060
|
+
d: "M43.829 36.74h-6.131a3.044 3.044 0 0 1-3.04-3.04V3.097h3.036v30.6h6.136Z"
|
|
27061
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
27062
|
+
fill: "#293072"
|
|
27063
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27064
|
+
"data-name": "Path 84688",
|
|
27065
|
+
d: "M26.782 42.961a6.872 6.872 0 0 1-6.81-6l-.189-1.507 3.013-.378.189 1.506a3.83 3.83 0 1 0 5.586-3.874l-1.342-.709 1.419-2.684 1.342.709a6.866 6.866 0 0 1-3.207 12.938Z"
|
|
27066
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27067
|
+
"data-name": "Path 84689",
|
|
27068
|
+
d: "M5.532 42.855H4.014v-3.04h1.518a3.832 3.832 0 0 0 .018-7.663H4.031V29.12h1.518a6.868 6.868 0 0 1-.018 13.735Z"
|
|
27069
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27070
|
+
"data-name": "Path 84691",
|
|
27071
|
+
d: "M23.193 38.287H9.307v-3.04h10.672a6.923 6.923 0 0 1 1.691-3.7 6.85 6.85 0 0 1 5.066-2.325 8.392 8.392 0 0 1 1.027.069v-9.165a14 14 0 0 0-13.98-13.979H7.094v26.008h-3.04V6.147a3.043 3.043 0 0 1 3.04-3.04h6.688a17.034 17.034 0 0 1 17.016 17.019V33.89l-2.23-1.185a3.822 3.822 0 0 0-1.788-.439h-.025a3.885 3.885 0 0 0-3.776 4.276Z"
|
|
27072
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27073
|
+
"data-name": "Path 84692",
|
|
27074
|
+
d: "M17.039 23.754a3.041 3.041 0 0 1-3.04-3.041V3.64h3.036v17.073l13.264-.01v3.036l-13.259.016Z"
|
|
27075
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27076
|
+
"data-name": "Rectangle 20942",
|
|
27077
|
+
d: "M19.33 13.025h3.062V22.2H19.33z"
|
|
27078
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27079
|
+
"data-name": "Rectangle 20943",
|
|
27080
|
+
fill: "none",
|
|
27081
|
+
d: "M0 0h46v46H0z"
|
|
27082
|
+
}))));
|
|
27083
|
+
};
|
|
27084
|
+
|
|
27085
|
+
var _g$j;
|
|
27086
|
+
function _extends$q() { _extends$q = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$q.apply(this, arguments); }
|
|
27087
|
+
var SvgIconWfInvoice = function SvgIconWfInvoice(props) {
|
|
27088
|
+
return /*#__PURE__*/React.createElement("svg", _extends$q({
|
|
27089
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27090
|
+
width: 46,
|
|
27091
|
+
height: 46
|
|
27092
|
+
}, props), _g$j || (_g$j = /*#__PURE__*/React.createElement("g", {
|
|
27093
|
+
"data-name": "Group 42733"
|
|
27094
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
27095
|
+
fill: "#e42127"
|
|
27096
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27097
|
+
"data-name": "Rectangle 19846",
|
|
27098
|
+
d: "M14.677 21.489h16.596v2.992H14.677z"
|
|
27099
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27100
|
+
"data-name": "Rectangle 19847",
|
|
27101
|
+
d: "M14.677 30.552h16.596v2.992H14.677z"
|
|
27102
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27103
|
+
"data-name": "Rectangle 19848",
|
|
27104
|
+
d: "M14.677 12.438h5.268v3.016h-5.268z"
|
|
27105
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27106
|
+
"data-name": "Path 84307",
|
|
27107
|
+
d: "M28.033 3.393H9.426a3 3 0 0 0-3 3v33.188a3 3 0 0 0 3 3h27.146a3 3 0 0 0 3-3V14.928Zm.863 5.094 5.535 5.535h-5.537Zm7.677 31.1H9.422l.005-33.2h16.516v10.589h10.635v22.609Z",
|
|
27108
|
+
fill: "#293072"
|
|
27109
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27110
|
+
"data-name": "Rectangle 19849",
|
|
27111
|
+
fill: "none",
|
|
27112
|
+
d: "M0 0h46v46H0z"
|
|
27113
|
+
}))));
|
|
27114
|
+
};
|
|
27115
|
+
|
|
27116
|
+
var _g$i;
|
|
27117
|
+
function _extends$p() { _extends$p = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$p.apply(this, arguments); }
|
|
27118
|
+
var SvgIconWfKeyboard = function SvgIconWfKeyboard(props) {
|
|
27119
|
+
return /*#__PURE__*/React.createElement("svg", _extends$p({
|
|
27120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27121
|
+
width: 45,
|
|
27122
|
+
height: 45
|
|
27123
|
+
}, props), _g$i || (_g$i = /*#__PURE__*/React.createElement("g", {
|
|
27124
|
+
"data-name": "icon_wf_keyboard_1"
|
|
27125
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27126
|
+
"data-name": "Rectangle 20200",
|
|
27127
|
+
fill: "#e42127",
|
|
27128
|
+
d: "M14.427 28.372h16.148v2.936H14.427z"
|
|
27129
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
27130
|
+
fill: "#293072"
|
|
27131
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27132
|
+
"data-name": "Rectangle 20201",
|
|
27133
|
+
d: "M9.288 13.692h2.936v2.936H9.288z"
|
|
27134
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27135
|
+
"data-name": "Rectangle 20202",
|
|
27136
|
+
d: "M17.118 13.692h2.936v2.936h-2.936z"
|
|
27137
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27138
|
+
"data-name": "Rectangle 20203",
|
|
27139
|
+
d: "M24.947 13.692h2.936v2.936h-2.936z"
|
|
27140
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27141
|
+
"data-name": "Rectangle 20204",
|
|
27142
|
+
d: "M32.776 13.692h2.936v2.936h-2.936z"
|
|
27143
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27144
|
+
"data-name": "Rectangle 20205",
|
|
27145
|
+
d: "M9.288 20.988h2.936v2.936H9.288z"
|
|
27146
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27147
|
+
"data-name": "Rectangle 20206",
|
|
27148
|
+
d: "M17.118 20.988h2.936v2.936h-2.936z"
|
|
27149
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27150
|
+
"data-name": "Rectangle 20207",
|
|
27151
|
+
d: "M24.947 20.988h2.936v2.936h-2.936z"
|
|
27152
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27153
|
+
"data-name": "Rectangle 20208",
|
|
27154
|
+
d: "M32.776 20.988h2.936v2.936h-2.936z"
|
|
27155
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27156
|
+
"data-name": "Path 84443",
|
|
27157
|
+
d: "M38.296 8.081a.443.443 0 0 1 .444.444v25.683a.443.443 0 0 1-.444.444H6.704a.444.444 0 0 1-.444-.444V8.525a.444.444 0 0 1 .444-.444h31.592m0-2.952H6.704a3.4 3.4 0 0 0-3.4 3.4v25.679a3.4 3.4 0 0 0 3.4 3.4h31.592a3.4 3.4 0 0 0 3.4-3.4V8.525a3.4 3.4 0 0 0-3.4-3.4Z"
|
|
27158
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27159
|
+
"data-name": "Rectangle 20209",
|
|
27160
|
+
fill: "none",
|
|
27161
|
+
d: "M0 0h45v45H0z"
|
|
27162
|
+
}))));
|
|
27163
|
+
};
|
|
27164
|
+
|
|
27165
|
+
var _g$h;
|
|
27166
|
+
function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$o.apply(this, arguments); }
|
|
27167
|
+
var SvgIconWfLogs = function SvgIconWfLogs(props) {
|
|
27168
|
+
return /*#__PURE__*/React.createElement("svg", _extends$o({
|
|
27169
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27170
|
+
width: 46,
|
|
27171
|
+
height: 46
|
|
27172
|
+
}, props), _g$h || (_g$h = /*#__PURE__*/React.createElement("g", {
|
|
27173
|
+
"data-name": "icon_wf_logs"
|
|
27174
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27175
|
+
"data-name": "Path 84292",
|
|
27176
|
+
d: "M42.899 31.454h-35l6.262-6.262-2.149-2.149-8.143 8.142a2.59 2.59 0 0 0 .012 3.678l8.135 8.024 2.134-2.164-6.316-6.229h35.065Z",
|
|
27177
|
+
fill: "#e42127"
|
|
27178
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27179
|
+
"data-name": "Path 84293",
|
|
27180
|
+
d: "m42.178 11.257-8.143-8.143-2.149 2.149 6.263 6.262H3.072v3.039h35.139l-6.316 6.23 2.134 2.164 8.135-8.023a2.592 2.592 0 0 0 .013-3.677Z",
|
|
27181
|
+
fill: "#293072"
|
|
27182
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27183
|
+
"data-name": "Rectangle 19825",
|
|
27184
|
+
fill: "none",
|
|
27185
|
+
d: "M0 0h46v46H0z"
|
|
27186
|
+
}))));
|
|
27187
|
+
};
|
|
27188
|
+
|
|
27189
|
+
var _g$g;
|
|
27190
|
+
function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$n.apply(this, arguments); }
|
|
27191
|
+
var SvgIconWfNoBarcodePrinter = function SvgIconWfNoBarcodePrinter(props) {
|
|
27192
|
+
return /*#__PURE__*/React.createElement("svg", _extends$n({
|
|
27193
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27194
|
+
width: 18,
|
|
27195
|
+
height: 18
|
|
27196
|
+
}, props), _g$g || (_g$g = /*#__PURE__*/React.createElement("g", {
|
|
27197
|
+
"data-name": "icon_wf_no-barcode-printer v1"
|
|
27198
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
27199
|
+
fill: "#293072"
|
|
27200
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27201
|
+
"data-name": "Path 85785",
|
|
27202
|
+
d: "M1.728 4.77h-1.2l.009-2.423a1.2 1.2 0 0 1 1.2-1.195h2.41v1.2H1.738Z"
|
|
27203
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27204
|
+
"data-name": "Path 85786",
|
|
27205
|
+
d: "M4.147 16.854h-2.41a1.2 1.2 0 0 1-1.2-1.193l-.008-2.42h1.2l.008 2.417h2.41Z"
|
|
27206
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27207
|
+
"data-name": "Path 85787",
|
|
27208
|
+
d: "m16.264 4.763-.008-2.418h-2.411v-1.2h2.41a1.2 1.2 0 0 1 1.2 1.193l.008 2.42Z"
|
|
27209
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27210
|
+
"data-name": "Path 85788",
|
|
27211
|
+
d: "M16.255 16.848h-2.41v-1.2h2.41l.01-2.417h1.2l-.008 2.418a1.2 1.2 0 0 1-1.2 1.195"
|
|
27212
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27213
|
+
"data-name": "Rectangle 22708",
|
|
27214
|
+
d: "M2.351 4.768H3.55v8.466H2.351z"
|
|
27215
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27216
|
+
"data-name": "Rectangle 22709",
|
|
27217
|
+
d: "M5.155 4.768H5.7v8.466h-.545z"
|
|
27218
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27219
|
+
"data-name": "Rectangle 22710",
|
|
27220
|
+
d: "M6.996 4.769h1.817v8.459H6.996z"
|
|
27221
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27222
|
+
"data-name": "Rectangle 22711",
|
|
27223
|
+
d: "M10.109 4.768h.545v8.466h-.545z"
|
|
27224
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27225
|
+
"data-name": "Rectangle 22712",
|
|
27226
|
+
d: "M12.259 4.768h1.199v8.466h-1.199z"
|
|
27227
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27228
|
+
"data-name": "Rectangle 22713",
|
|
27229
|
+
d: "M15.063 4.768h.545v8.466h-.545z"
|
|
27230
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27231
|
+
"data-name": "Rectangle 22714",
|
|
27232
|
+
d: "m.833 1.993.848-.848 14.859 14.86-.848.847z"
|
|
27233
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27234
|
+
"data-name": "Rectangle 22715",
|
|
27235
|
+
fill: "none",
|
|
27236
|
+
d: "M0 0h18v18H0z"
|
|
27237
|
+
}))));
|
|
27238
|
+
};
|
|
27239
|
+
|
|
27240
|
+
var _path$9, _g$f, _path2$7;
|
|
27241
|
+
function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$m.apply(this, arguments); }
|
|
27242
|
+
var SvgIconWfNoScan = function SvgIconWfNoScan(props) {
|
|
27243
|
+
return /*#__PURE__*/React.createElement("svg", _extends$m({
|
|
27244
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27245
|
+
width: 46,
|
|
27246
|
+
height: 46
|
|
27247
|
+
}, props), _path$9 || (_path$9 = /*#__PURE__*/React.createElement("path", {
|
|
27248
|
+
"data-name": "Rectangle 20557",
|
|
27249
|
+
fill: "#e42127",
|
|
27250
|
+
d: "m3.119 5.257 2.146-2.146L42.89 40.737l-2.146 2.146z"
|
|
27251
|
+
})), _g$f || (_g$f = /*#__PURE__*/React.createElement("g", {
|
|
27252
|
+
fill: "#293072"
|
|
27253
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27254
|
+
"data-name": "Path 84628",
|
|
27255
|
+
d: "m6.158 12.289-3.036-.01.015-6.122a3.049 3.049 0 0 1 3.04-3.026h6.1v3.036h-6.1Z"
|
|
27256
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27257
|
+
"data-name": "Path 84629",
|
|
27258
|
+
d: "M12.284 42.886h-6.1a3.048 3.048 0 0 1-3.047-3.021l-.02-6.127 3.036-.01.02 6.121h6.107Z"
|
|
27259
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27260
|
+
"data-name": "Path 84630",
|
|
27261
|
+
d: "m39.859 12.271-.02-6.121h-6.106V3.114h6.1a3.048 3.048 0 0 1 3.042 3.021l.019 6.126Z"
|
|
27262
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27263
|
+
"data-name": "Path 84631",
|
|
27264
|
+
d: "M39.834 42.872h-6.1v-3.036h6.1l.024-6.121 3.036.01-.019 6.122a3.049 3.049 0 0 1-3.041 3.025Z"
|
|
27265
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27266
|
+
"data-name": "Rectangle 20549",
|
|
27267
|
+
d: "M10.778 12.284h3.036v14.534h-3.036z"
|
|
27268
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27269
|
+
"data-name": "Rectangle 20550",
|
|
27270
|
+
d: "M17.919 12.284h3.036v14.534h-3.036z"
|
|
27271
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27272
|
+
"data-name": "Rectangle 20551",
|
|
27273
|
+
d: "M25.061 12.284h3.036v14.534h-3.036z"
|
|
27274
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27275
|
+
"data-name": "Rectangle 20552",
|
|
27276
|
+
d: "M32.202 12.284h3.036v14.534h-3.036z"
|
|
27277
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27278
|
+
"data-name": "Rectangle 20553",
|
|
27279
|
+
d: "M10.752 30.658h3.062v3.062h-3.062z"
|
|
27280
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27281
|
+
"data-name": "Rectangle 20554",
|
|
27282
|
+
d: "M17.906 30.658h3.062v3.062h-3.062z"
|
|
27283
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27284
|
+
"data-name": "Rectangle 20555",
|
|
27285
|
+
d: "M25.047 30.658h3.062v3.062h-3.062z"
|
|
27286
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27287
|
+
"data-name": "Rectangle 20556",
|
|
27288
|
+
d: "M32.174 30.658h3.062v3.062h-3.062z"
|
|
27289
|
+
}))), _path2$7 || (_path2$7 = /*#__PURE__*/React.createElement("path", {
|
|
27290
|
+
"data-name": "Rectangle 20558",
|
|
27291
|
+
fill: "none",
|
|
27292
|
+
d: "M0 0h46v46H0z"
|
|
27293
|
+
})));
|
|
27294
|
+
};
|
|
27295
|
+
|
|
27296
|
+
var _g$e;
|
|
27297
|
+
function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$l.apply(this, arguments); }
|
|
27298
|
+
var SvgIconWfPallet = function SvgIconWfPallet(props) {
|
|
27299
|
+
return /*#__PURE__*/React.createElement("svg", _extends$l({
|
|
27300
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27301
|
+
width: 46,
|
|
27302
|
+
height: 46
|
|
27303
|
+
}, props), _g$e || (_g$e = /*#__PURE__*/React.createElement("g", {
|
|
27304
|
+
"data-name": "icon_wf_pallet_v1"
|
|
27305
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27306
|
+
"data-name": "Path 84681",
|
|
27307
|
+
d: "M42.568 28.88a3.019 3.019 0 0 0 .254-1.213v-9.754a2.282 2.282 0 0 0-2.279-2.279H5.324a2.282 2.282 0 0 0-2.28 2.279v.986h-.041v8.767a3.018 3.018 0 0 0 .336 1.381 2.253 2.253 0 0 0-.228.976v.987h-.037v8.767a3.043 3.043 0 0 0 3.04 3.04h4.4a3.044 3.044 0 0 0 3.041-3.04v-2.874h18.85v2.876a3.044 3.044 0 0 0 3.041 3.04h4.4a3.043 3.043 0 0 0 3.04-3.04v-9.753a2.256 2.256 0 0 0-.318-1.146ZM6.039 27.666v-2.875h4.41v2.881Zm7.447 0v-2.875h18.853v2.955H13.483c0-.026.003-.053.003-.08Zm26.295.005-4.407-.005v-2.875h4.409Zm-33.7-9h33.705v3.085H6.08Zm4.432 21.114H6.106v-2.882h4.41Zm24.929 0v-2.882h4.408v2.881Zm4.41-5.911H6.147v-3.092h33.706v3.085Z",
|
|
27308
|
+
fill: "#293072"
|
|
27309
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27310
|
+
"data-name": "Rectangle 20930",
|
|
27311
|
+
fill: "none",
|
|
27312
|
+
d: "M0 0h46v46H0z"
|
|
27313
|
+
}))));
|
|
27314
|
+
};
|
|
27315
|
+
|
|
27316
|
+
var _g$d;
|
|
27317
|
+
function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
27318
|
+
var SvgIconWfPin = function SvgIconWfPin(props) {
|
|
27319
|
+
return /*#__PURE__*/React.createElement("svg", _extends$k({
|
|
27320
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27321
|
+
width: 46,
|
|
27322
|
+
height: 46
|
|
27323
|
+
}, props), _g$d || (_g$d = /*#__PURE__*/React.createElement("g", {
|
|
27324
|
+
"data-name": "Group 42962"
|
|
27325
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27326
|
+
"data-name": "Rectangle 20318",
|
|
27327
|
+
fill: "#e42127",
|
|
27328
|
+
d: "M14.114 21.46h17.57v3.079h-17.57z"
|
|
27329
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27330
|
+
"data-name": "Path 84520",
|
|
27331
|
+
d: "M43.063 30.997v-16a3.169 3.169 0 0 0-3.173-3.173H28.606v3.17h11.291l-.007 16H28.606v3.179H39.89A3.169 3.169 0 0 0 43.063 31Zm-36.956 0v-16h11.569v-3.17H6.107a3.181 3.181 0 0 0-3.172 3.172v16a3.18 3.18 0 0 0 3.175 3.174h11.569v-3.176Z",
|
|
27332
|
+
fill: "#293072"
|
|
27333
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27334
|
+
"data-name": "Rectangle 20319",
|
|
27335
|
+
fill: "none",
|
|
27336
|
+
d: "M0 0h46v46H0z"
|
|
27337
|
+
}))));
|
|
27338
|
+
};
|
|
27339
|
+
|
|
27340
|
+
var _path$8, _g$c, _path2$6;
|
|
27341
|
+
function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
27342
|
+
var SvgIconWfScan = function SvgIconWfScan(props) {
|
|
27343
|
+
return /*#__PURE__*/React.createElement("svg", _extends$j({
|
|
27344
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27345
|
+
width: 46,
|
|
27346
|
+
height: 46
|
|
27347
|
+
}, props), _path$8 || (_path$8 = /*#__PURE__*/React.createElement("path", {
|
|
27348
|
+
"data-name": "Rectangle 19774",
|
|
27349
|
+
fill: "#e42127",
|
|
27350
|
+
d: "M14.587 23.77h16.84v3.036h-16.84z"
|
|
27351
|
+
})), _g$c || (_g$c = /*#__PURE__*/React.createElement("g", {
|
|
27352
|
+
fill: "#293072"
|
|
27353
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27354
|
+
"data-name": "Path 84272",
|
|
27355
|
+
d: "m6.157 12.289-3.036-.01.015-6.122a3.049 3.049 0 0 1 3.04-3.026h6.1v3.036h-6.1Z"
|
|
27356
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27357
|
+
"data-name": "Path 84273",
|
|
27358
|
+
d: "M12.283 42.887h-6.1a3.048 3.048 0 0 1-3.047-3.021l-.02-6.127 3.036-.01.02 6.121h6.107Z"
|
|
27359
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27360
|
+
"data-name": "Path 84274",
|
|
27361
|
+
d: "m39.858 12.271-.02-6.121h-6.106V3.114h6.1a3.048 3.048 0 0 1 3.042 3.021l.019 6.126Z"
|
|
27362
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27363
|
+
"data-name": "Path 84275",
|
|
27364
|
+
d: "M39.833 42.872h-6.1v-3.036h6.1l.024-6.121 3.036.01-.019 6.122a3.049 3.049 0 0 1-3.041 3.025Z"
|
|
27365
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27366
|
+
"data-name": "Rectangle 19775",
|
|
27367
|
+
d: "M10.777 12.285h3.036v7.644h-3.036z"
|
|
27368
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27369
|
+
"data-name": "Rectangle 19776",
|
|
27370
|
+
d: "M17.919 12.285h3.036v7.644h-3.036z"
|
|
27371
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27372
|
+
"data-name": "Rectangle 19777",
|
|
27373
|
+
d: "M25.06 12.285h3.036v7.644H25.06z"
|
|
27374
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27375
|
+
"data-name": "Rectangle 19778",
|
|
27376
|
+
d: "M32.202 12.285h3.036v7.644h-3.036z"
|
|
27377
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27378
|
+
"data-name": "Rectangle 19779",
|
|
27379
|
+
d: "M10.751 30.658h3.062v3.062h-3.062z"
|
|
27380
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27381
|
+
"data-name": "Rectangle 19780",
|
|
27382
|
+
d: "M17.906 30.658h3.062v3.062h-3.062z"
|
|
27383
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27384
|
+
"data-name": "Rectangle 19781",
|
|
27385
|
+
d: "M25.047 30.658h3.062v3.062h-3.062z"
|
|
27386
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27387
|
+
"data-name": "Rectangle 19782",
|
|
27388
|
+
d: "M32.174 30.658h3.062v3.062h-3.062z"
|
|
27389
|
+
}))), _path2$6 || (_path2$6 = /*#__PURE__*/React.createElement("path", {
|
|
27390
|
+
"data-name": "Rectangle 19783",
|
|
27391
|
+
fill: "none",
|
|
27392
|
+
d: "M0 0h46v46H0z"
|
|
27393
|
+
})));
|
|
27394
|
+
};
|
|
27395
|
+
|
|
27396
|
+
var _g$b;
|
|
27397
|
+
function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
27398
|
+
var SvgIconWfSend = function SvgIconWfSend(props) {
|
|
27399
|
+
return /*#__PURE__*/React.createElement("svg", _extends$i({
|
|
27400
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27401
|
+
width: 46,
|
|
27402
|
+
height: 46
|
|
27403
|
+
}, props), _g$b || (_g$b = /*#__PURE__*/React.createElement("g", {
|
|
27404
|
+
"data-name": "icon_wf_send"
|
|
27405
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
27406
|
+
fill: "#e42127"
|
|
27407
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27408
|
+
"data-name": "Rectangle 19792",
|
|
27409
|
+
d: "m6.452 32.207 6.461-6.461 2.147 2.146-6.462 6.461z"
|
|
27410
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27411
|
+
"data-name": "Rectangle 19793",
|
|
27412
|
+
d: "m11.502 37.258 6.462-6.462 2.146 2.146-6.462 6.462z"
|
|
27413
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27414
|
+
"data-name": "Path 84281",
|
|
27415
|
+
d: "m32.261 42.825-8.89-20.2-20.198-8.886 35.9-10.593a3.041 3.041 0 0 1 3.777 3.777ZM11.992 14.303l13.681 6.022 6.022 13.682 8.246-27.943v-.01Z",
|
|
27416
|
+
fill: "#293072"
|
|
27417
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27418
|
+
"data-name": "Rectangle 19794",
|
|
27419
|
+
fill: "none",
|
|
27420
|
+
d: "M0 0h46v46H0z"
|
|
27421
|
+
}))));
|
|
27422
|
+
};
|
|
27423
|
+
|
|
27424
|
+
var _g$a;
|
|
27425
|
+
function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
27426
|
+
var SvgIconWfStatusKsef = function SvgIconWfStatusKsef(props) {
|
|
27427
|
+
return /*#__PURE__*/React.createElement("svg", _extends$h({
|
|
27428
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27429
|
+
width: 46,
|
|
27430
|
+
height: 46
|
|
27431
|
+
}, props), _g$a || (_g$a = /*#__PURE__*/React.createElement("g", {
|
|
27432
|
+
"data-name": "Group 42620"
|
|
27433
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27434
|
+
"data-name": "Path 84287",
|
|
27435
|
+
d: "M21.483 31.835a3.476 3.476 0 0 1-2.448-1l-5.062-5.028 2.14-2.154 5.058 5.024a.449.449 0 0 0 .629-.005l10.941-10.941 2.147 2.147-10.941 10.94a3.477 3.477 0 0 1-2.464 1.017Z",
|
|
27436
|
+
fill: "#e42127"
|
|
27437
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27438
|
+
"data-name": "Path 84288",
|
|
27439
|
+
d: "M37.629 3.28h-18.88L7.043 14.986V40a3.044 3.044 0 0 0 3.041 3.04H37.63A3.044 3.044 0 0 0 40.671 40V6.321a3.044 3.044 0 0 0-3.042-3.041ZM17.873 8.449v5.616h-5.615Zm19.756 31.555H10.084V17.062h10.792V6.317H37.64Z",
|
|
27440
|
+
fill: "#293072"
|
|
27441
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27442
|
+
"data-name": "Rectangle 19778",
|
|
27443
|
+
fill: "none",
|
|
27444
|
+
d: "M0 0h46v46H0z"
|
|
27445
|
+
}))));
|
|
27446
|
+
};
|
|
27447
|
+
|
|
27448
|
+
var _path$7, _g$9, _path2$5;
|
|
27449
|
+
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
27450
|
+
var SvgIconWfStop = function SvgIconWfStop(props) {
|
|
27451
|
+
return /*#__PURE__*/React.createElement("svg", _extends$g({
|
|
27452
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27453
|
+
width: 46,
|
|
27454
|
+
height: 46
|
|
27455
|
+
}, props), _path$7 || (_path$7 = /*#__PURE__*/React.createElement("path", {
|
|
27456
|
+
"data-name": "Path 84683",
|
|
27457
|
+
d: "M31.203 42.874H14.745L3.108 31.237V14.779L14.745 3.142h16.458L42.84 14.779v16.458Zm-15.2-3.036h13.942l9.859-9.859V16.037l-9.859-9.859H16.003l-9.859 9.859v13.942Z",
|
|
27458
|
+
fill: "#e42127"
|
|
27459
|
+
})), _g$9 || (_g$9 = /*#__PURE__*/React.createElement("g", {
|
|
27460
|
+
fill: "#293072"
|
|
27461
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27462
|
+
"data-name": "Path 84684",
|
|
27463
|
+
d: "M9.302 27.485a2.882 2.882 0 0 1-1.256-1.072 2.929 2.929 0 0 1-.444-1.611v-.191a.213.213 0 0 1 .051-.15.189.189 0 0 1 .142-.054h2a.185.185 0 0 1 .141.054.209.209 0 0 1 .052.15v.082a.845.845 0 0 0 .38.676 1.612 1.612 0 0 0 1.011.293.924.924 0 0 0 .682-.212.662.662 0 0 0 .207-.472.49.49 0 0 0-.258-.45 5.376 5.376 0 0 0-.94-.368l-.374-.109a6.724 6.724 0 0 1-2.138-1.092 2.374 2.374 0 0 1-.863-1.98 2.7 2.7 0 0 1 .437-1.522 2.843 2.843 0 0 1 1.2-1.018 4.051 4.051 0 0 1 1.719-.355 4.128 4.128 0 0 1 1.823.4 3.128 3.128 0 0 1 1.288 1.12 2.966 2.966 0 0 1 .47 1.652v.123a.21.21 0 0 1-.052.15.185.185 0 0 1-.142.055h-2a.183.183 0 0 1-.141-.055.209.209 0 0 1-.052-.15v-.014a1.015 1.015 0 0 0-.347-.744 1.3 1.3 0 0 0-.94-.335 1.063 1.063 0 0 0-.65.178.577.577 0 0 0-.238.491.563.563 0 0 0 .174.417 1.792 1.792 0 0 0 .535.328q.36.157 1.108.4.1.04.908.293a2.785 2.785 0 0 1 1.346.915 2.453 2.453 0 0 1 .54 1.6 2.7 2.7 0 0 1-1.661 2.594 4.4 4.4 0 0 1-1.829.355 4.469 4.469 0 0 1-1.889-.372Z"
|
|
27464
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27465
|
+
"data-name": "Path 84685",
|
|
27466
|
+
d: "M22.542 18.249a.211.211 0 0 1 .052.15v1.8a.209.209 0 0 1-.052.15.184.184 0 0 1-.141.055h-2.164c-.043 0-.065.023-.065.068v7.07a.209.209 0 0 1-.051.15.184.184 0 0 1-.142.055h-2.035a.182.182 0 0 1-.141-.055.208.208 0 0 1-.052-.15v-7.068c0-.045-.021-.068-.064-.068h-2.1a.183.183 0 0 1-.141-.055.209.209 0 0 1-.052-.15v-1.8a.211.211 0 0 1 .052-.15.185.185 0 0 1 .141-.055h6.814a.185.185 0 0 1 .141.053Z"
|
|
27467
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27468
|
+
"data-name": "Path 84686",
|
|
27469
|
+
d: "M24.881 27.458a3.193 3.193 0 0 1-1.269-1.288 3.933 3.933 0 0 1-.451-1.918V21.69a3.835 3.835 0 0 1 .451-1.884 3.163 3.163 0 0 1 1.269-1.27 4.2 4.2 0 0 1 3.786 0 3.17 3.17 0 0 1 1.269 1.27 3.849 3.849 0 0 1 .45 1.884v2.567a3.948 3.948 0 0 1-.45 1.918 3.2 3.2 0 0 1-1.269 1.283 4.148 4.148 0 0 1-3.786 0Zm2.756-2.116a1.472 1.472 0 0 0 .328-1v-2.68a1.472 1.472 0 0 0-.328-1 1.1 1.1 0 0 0-.87-.376 1.082 1.082 0 0 0-.856.376 1.468 1.468 0 0 0-.329 1v2.676a1.467 1.467 0 0 0 .329 1 1.082 1.082 0 0 0 .856.376 1.1 1.1 0 0 0 .87-.373Z"
|
|
27470
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27471
|
+
"data-name": "Path 84687",
|
|
27472
|
+
d: "M36.942 18.584a2.673 2.673 0 0 1 1.075 1.105 3.46 3.46 0 0 1 .38 1.645 3.177 3.177 0 0 1-.4 1.611 2.748 2.748 0 0 1-1.12 1.079 3.5 3.5 0 0 1-1.662.382h-1.364c-.043 0-.064.023-.064.069v3.067a.21.21 0 0 1-.052.15.184.184 0 0 1-.142.055h-2.035a.183.183 0 0 1-.142-.055.208.208 0 0 1-.052-.15v-9.143a.211.211 0 0 1 .052-.15.186.186 0 0 1 .142-.055h3.774a3.238 3.238 0 0 1 1.61.39Zm-1.243 3.508a.909.909 0 0 0 .29-.7.949.949 0 0 0-.29-.724 1.073 1.073 0 0 0-.766-.272h-1.082c-.043 0-.064.022-.064.068v1.829c0 .046.021.068.064.068h1.082a1.089 1.089 0 0 0 .766-.269Z"
|
|
27473
|
+
}))), _path2$5 || (_path2$5 = /*#__PURE__*/React.createElement("path", {
|
|
27474
|
+
"data-name": "Rectangle 20940",
|
|
27475
|
+
fill: "none",
|
|
27476
|
+
d: "M0 0h46v46H0z"
|
|
27477
|
+
})));
|
|
27478
|
+
};
|
|
27479
|
+
|
|
27480
|
+
var _g$8;
|
|
27481
|
+
function _extends$f() { _extends$f = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$f.apply(this, arguments); }
|
|
27482
|
+
var SvgIconWfUnpin = function SvgIconWfUnpin(props) {
|
|
27483
|
+
return /*#__PURE__*/React.createElement("svg", _extends$f({
|
|
27484
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27485
|
+
width: 46,
|
|
27486
|
+
height: 46
|
|
27487
|
+
}, props), _g$8 || (_g$8 = /*#__PURE__*/React.createElement("g", {
|
|
27488
|
+
"data-name": "Group 42617"
|
|
27489
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
27490
|
+
fill: "#293072"
|
|
27491
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27492
|
+
"data-name": "Rectangle 19775",
|
|
27493
|
+
d: "M14.133 21.485h17.281v3.029H14.133z"
|
|
27494
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27495
|
+
"data-name": "Path 84286",
|
|
27496
|
+
d: "M42.606 30.866V15.131a3.117 3.117 0 0 0-3.121-3.121h-11.1v3.118H39.49l-.007 15.742h-11.1v3.124h11.1a3.117 3.117 0 0 0 3.121-3.121Zm-36.349 0V15.128h11.379v-3.114H6.257a3.128 3.128 0 0 0-3.121 3.121v15.731a3.128 3.128 0 0 0 3.121 3.121h11.379v-3.121Z"
|
|
27497
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
27498
|
+
"data-name": "Rectangle 19776",
|
|
27499
|
+
fill: "#e42127",
|
|
27500
|
+
d: "M2.86 5.298 5 3.158l37.54 37.538-2.141 2.14z"
|
|
27501
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27502
|
+
"data-name": "Rectangle 19777",
|
|
27503
|
+
fill: "none",
|
|
27504
|
+
d: "M0 0h46v46H0z"
|
|
27505
|
+
}))));
|
|
27506
|
+
};
|
|
27507
|
+
|
|
27508
|
+
var _path$6, _path2$4, _path3, _path4, _path5;
|
|
27509
|
+
function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
|
|
27510
|
+
var SvgIconWfRefresh = function SvgIconWfRefresh(props) {
|
|
27511
|
+
return /*#__PURE__*/React.createElement("svg", _extends$e({
|
|
27512
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27513
|
+
width: 26,
|
|
27514
|
+
height: 26
|
|
27515
|
+
}, props), _path$6 || (_path$6 = /*#__PURE__*/React.createElement("path", {
|
|
27516
|
+
"data-name": "Path 84133",
|
|
27517
|
+
d: "M22.77 9.935h-4.386v-1.76h4.382l.032-4.442 1.76.011-.028 4.437a1.769 1.769 0 0 1-1.76 1.754Z",
|
|
27518
|
+
fill: "#293072"
|
|
27519
|
+
})), _path2$4 || (_path2$4 = /*#__PURE__*/React.createElement("path", {
|
|
27520
|
+
"data-name": "Path 84134",
|
|
27521
|
+
d: "m3.333 22.314-1.76-.011.028-4.423a1.769 1.769 0 0 1 1.764-1.753H7.76v1.76H3.365Z",
|
|
27522
|
+
fill: "#e42127"
|
|
27523
|
+
})), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
|
27524
|
+
"data-name": "Path 84135",
|
|
27525
|
+
d: "M13.066 3.246a9.761 9.761 0 0 1 8.988 5.967c.112.266 1.582-.814 1.385-1.222a11.517 11.517 0 0 0-21.817 3.71H3.4a9.769 9.769 0 0 1 9.666-8.455Z",
|
|
27526
|
+
fill: "#293072"
|
|
27527
|
+
})), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
|
|
27528
|
+
"data-name": "Path 84136",
|
|
27529
|
+
d: "M13.067 22.755a9.758 9.758 0 0 1-8.986-5.969c-.11-.262-1.754.412-1.623.719a11.53 11.53 0 0 0 21.921-2.268h-1.823a9.751 9.751 0 0 1-9.489 7.518Z",
|
|
27530
|
+
fill: "#e42127"
|
|
27531
|
+
})), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
|
|
27532
|
+
"data-name": "Rectangle 19550",
|
|
27533
|
+
fill: "none",
|
|
27534
|
+
d: "M0 0h26v26H0z"
|
|
27535
|
+
})));
|
|
27536
|
+
};
|
|
27537
|
+
|
|
27538
|
+
var _path$5, _path2$3;
|
|
27539
|
+
function _extends$d() { _extends$d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
|
|
27540
|
+
var SvgIconUiClose = function SvgIconUiClose(props) {
|
|
27541
|
+
return /*#__PURE__*/React.createElement("svg", _extends$d({
|
|
27542
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27543
|
+
width: 46,
|
|
27544
|
+
height: 46
|
|
27545
|
+
}, props), _path$5 || (_path$5 = /*#__PURE__*/React.createElement("path", {
|
|
27546
|
+
"data-name": "Path 84635",
|
|
27547
|
+
d: "M42.737 5.409 40.59 3.262 23 20.853 5.409 3.262 3.262 5.409 20.853 23 3.262 40.591l2.147 2.147L23 25.147l17.59 17.591 2.147-2.147L25.146 23Z",
|
|
27548
|
+
fill: "#2a3270"
|
|
27549
|
+
})), _path2$3 || (_path2$3 = /*#__PURE__*/React.createElement("path", {
|
|
27550
|
+
fill: "none",
|
|
27551
|
+
d: "M0 0h46v46H0z"
|
|
27552
|
+
})));
|
|
27553
|
+
};
|
|
27554
|
+
|
|
27555
|
+
var _path$4, _path2$2;
|
|
27556
|
+
function _extends$c() { _extends$c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
|
|
27557
|
+
var SvgIconUiChevronUp = function SvgIconUiChevronUp(props) {
|
|
27558
|
+
return /*#__PURE__*/React.createElement("svg", _extends$c({
|
|
27559
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27560
|
+
width: 46,
|
|
27561
|
+
height: 46
|
|
27562
|
+
}, props), _path$4 || (_path$4 = /*#__PURE__*/React.createElement("path", {
|
|
27563
|
+
"data-name": "Path 84638",
|
|
27564
|
+
d: "m5.074 33.898-2.178-2.176 18.023-18.025a3.062 3.062 0 0 1 2.18-.9h.012a3.062 3.062 0 0 1 2.185.919l17.754 18-2.193 2.163-17.754-18Z",
|
|
27565
|
+
fill: "#293072"
|
|
27566
|
+
})), _path2$2 || (_path2$2 = /*#__PURE__*/React.createElement("path", {
|
|
27567
|
+
"data-name": "Rectangle 20576",
|
|
27568
|
+
fill: "none",
|
|
27569
|
+
d: "M0 0h46v46H0z"
|
|
27570
|
+
})));
|
|
27571
|
+
};
|
|
27572
|
+
|
|
27573
|
+
var _g$7;
|
|
27574
|
+
function _extends$b() { _extends$b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
|
|
27575
|
+
var SvgIconUiChevronDown = function SvgIconUiChevronDown(props) {
|
|
27576
|
+
return /*#__PURE__*/React.createElement("svg", _extends$b({
|
|
27577
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27578
|
+
width: 46,
|
|
27579
|
+
height: 46
|
|
27580
|
+
}, props), _g$7 || (_g$7 = /*#__PURE__*/React.createElement("g", {
|
|
27581
|
+
"data-name": "icon_wf_arrow_1"
|
|
27582
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27583
|
+
"data-name": "Path 84570",
|
|
27584
|
+
d: "M22.877 32.977h-.011a2.986 2.986 0 0 1-2.131-.9L3.425 14.531l2.138-2.108 17.31 17.551 17.574-17.578 2.123 2.123-17.568 17.577a2.985 2.985 0 0 1-2.125.881Z",
|
|
27585
|
+
fill: "#293072"
|
|
27586
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27587
|
+
"data-name": "Rectangle 20445",
|
|
27588
|
+
fill: "none",
|
|
27589
|
+
d: "M0 0h46v46H0z"
|
|
27590
|
+
}))));
|
|
27591
|
+
};
|
|
27592
|
+
|
|
27593
|
+
var _path$3, _path2$1;
|
|
27594
|
+
function _extends$a() { _extends$a = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$a.apply(this, arguments); }
|
|
27595
|
+
var SvgIconUiChevronRight = function SvgIconUiChevronRight(props) {
|
|
27596
|
+
return /*#__PURE__*/React.createElement("svg", _extends$a({
|
|
27597
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27598
|
+
width: 46,
|
|
27599
|
+
height: 46
|
|
27600
|
+
}, props), _path$3 || (_path$3 = /*#__PURE__*/React.createElement("path", {
|
|
27601
|
+
"data-name": "Path 84638",
|
|
27602
|
+
d: "m12.421 41.245 2.178 2.178L32.621 25.4a3.062 3.062 0 0 0 .9-2.18v-.012a3.062 3.062 0 0 0-.919-2.185l-18-17.754-2.159 2.193 18 17.754Z",
|
|
27603
|
+
fill: "#293072"
|
|
27604
|
+
})), _path2$1 || (_path2$1 = /*#__PURE__*/React.createElement("path", {
|
|
27605
|
+
"data-name": "Rectangle 20576",
|
|
27606
|
+
fill: "none",
|
|
27607
|
+
d: "M0 0h46v46H0z"
|
|
27608
|
+
})));
|
|
27609
|
+
};
|
|
27610
|
+
|
|
27611
|
+
var _path$2, _path2;
|
|
27612
|
+
function _extends$9() { _extends$9 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$9.apply(this, arguments); }
|
|
27613
|
+
var SvgIconUiChevronLeft = function SvgIconUiChevronLeft(props) {
|
|
27614
|
+
return /*#__PURE__*/React.createElement("svg", _extends$9({
|
|
27615
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27616
|
+
width: 46,
|
|
27617
|
+
height: 46
|
|
27618
|
+
}, props), _path$2 || (_path$2 = /*#__PURE__*/React.createElement("path", {
|
|
27619
|
+
"data-name": "Path 84638",
|
|
27620
|
+
d: "m33.525 41.245-2.176 2.178L13.324 25.4a3.062 3.062 0 0 1-.9-2.18v-.012a3.062 3.062 0 0 1 .919-2.185l18-17.754 2.163 2.193-18 17.754Z",
|
|
27621
|
+
fill: "#293072"
|
|
27622
|
+
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
|
27623
|
+
"data-name": "Rectangle 20576",
|
|
27624
|
+
fill: "none",
|
|
27625
|
+
d: "M0 0h46v46H0z"
|
|
27626
|
+
})));
|
|
27627
|
+
};
|
|
27628
|
+
|
|
27629
|
+
var _g$6;
|
|
27630
|
+
function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$8.apply(this, arguments); }
|
|
27631
|
+
var SvgIconSpCheckMark = function SvgIconSpCheckMark(props) {
|
|
27632
|
+
return /*#__PURE__*/React.createElement("svg", _extends$8({
|
|
27633
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27634
|
+
width: 42,
|
|
27635
|
+
height: 42
|
|
27636
|
+
}, props), _g$6 || (_g$6 = /*#__PURE__*/React.createElement("g", {
|
|
27637
|
+
"data-name": "Group 47571"
|
|
27638
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27639
|
+
"data-name": "Path 85747",
|
|
27640
|
+
d: "M3.051 21A17.935 17.935 0 1 0 20.986 3.065 17.935 17.935 0 0 0 3.051 21",
|
|
27641
|
+
fill: "#15b028"
|
|
27642
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27643
|
+
"data-name": "Path 85748",
|
|
27644
|
+
d: "M18.734 28.265a3.473 3.473 0 0 1-2.474-1.026l-5.8-5.8 3.54-3.53 4.729 4.728 9.807-9.937 3.558 3.513-10.868 11.01a3.472 3.472 0 0 1-2.478 1.042Zm-1.067-4.555Zm2.133-.01Z",
|
|
27645
|
+
fill: "#fff"
|
|
27646
|
+
}))));
|
|
27647
|
+
};
|
|
27648
|
+
|
|
27649
|
+
var _g$5;
|
|
27650
|
+
function _extends$7() { _extends$7 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$7.apply(this, arguments); }
|
|
27651
|
+
var SvgIconSpWarning = function SvgIconSpWarning(props) {
|
|
27652
|
+
return /*#__PURE__*/React.createElement("svg", _extends$7({
|
|
27653
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27654
|
+
width: 42,
|
|
27655
|
+
height: 42
|
|
27656
|
+
}, props), _g$5 || (_g$5 = /*#__PURE__*/React.createElement("g", {
|
|
27657
|
+
"data-name": "Group 47569"
|
|
27658
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27659
|
+
"data-name": "Path 85746",
|
|
27660
|
+
d: "M2.974 21A17.935 17.935 0 1 0 20.909 3.065 17.935 17.935 0 0 0 2.974 21",
|
|
27661
|
+
fill: "#e42127"
|
|
27662
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27663
|
+
"data-name": "Rectangle 22649",
|
|
27664
|
+
fill: "#fff",
|
|
27665
|
+
d: "M18.34 10.833h5v12.174h-5z"
|
|
27666
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27667
|
+
"data-name": "Rectangle 22650",
|
|
27668
|
+
fill: "#fff",
|
|
27669
|
+
d: "M18.326 25.98h5.028v5.028h-5.028z"
|
|
27670
|
+
}))));
|
|
27671
|
+
};
|
|
27672
|
+
|
|
27673
|
+
var _g$4;
|
|
27674
|
+
function _extends$6() { _extends$6 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
|
|
27675
|
+
var SvgIconSpInfo = function SvgIconSpInfo(props) {
|
|
27676
|
+
return /*#__PURE__*/React.createElement("svg", _extends$6({
|
|
27677
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27678
|
+
width: 45,
|
|
27679
|
+
height: 45
|
|
27680
|
+
}, props), _g$4 || (_g$4 = /*#__PURE__*/React.createElement("g", {
|
|
27681
|
+
"data-name": "Group 47565"
|
|
27682
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27683
|
+
"data-name": "Path 85744",
|
|
27684
|
+
d: "M41.658 22.507A19.165 19.165 0 1 0 22.492 41.67a19.166 19.166 0 0 0 19.166-19.163",
|
|
27685
|
+
fill: "#293072"
|
|
27686
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27687
|
+
"data-name": "Rectangle 22643",
|
|
27688
|
+
fill: "#fff",
|
|
27689
|
+
d: "M19.895 20.363h5.343v13.009h-5.343z"
|
|
27690
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27691
|
+
"data-name": "Rectangle 22644",
|
|
27692
|
+
fill: "#fff",
|
|
27693
|
+
d: "M19.88 11.813h5.373v5.373H19.88z"
|
|
27694
|
+
}))));
|
|
27695
|
+
};
|
|
27696
|
+
|
|
27697
|
+
var _g$3;
|
|
27698
|
+
function _extends$5() { _extends$5 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$5.apply(this, arguments); }
|
|
27699
|
+
var SvgIconSpInfo2 = function SvgIconSpInfo2(props) {
|
|
27700
|
+
return /*#__PURE__*/React.createElement("svg", _extends$5({
|
|
27701
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27702
|
+
width: 45,
|
|
27703
|
+
height: 45
|
|
27704
|
+
}, props), _g$3 || (_g$3 = /*#__PURE__*/React.createElement("g", {
|
|
27705
|
+
fill: "#293072"
|
|
27706
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27707
|
+
"data-name": "Path 85745",
|
|
27708
|
+
d: "M22.487 40.996a18.5 18.5 0 1 1 18.5-18.5 18.515 18.515 0 0 1-18.5 18.5m0-32.877A14.381 14.381 0 1 0 36.867 22.5a14.4 14.4 0 0 0-14.38-14.381"
|
|
27709
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27710
|
+
"data-name": "Rectangle 22646",
|
|
27711
|
+
d: "M19.985 20.436h5.142v12.521h-5.142z"
|
|
27712
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27713
|
+
"data-name": "Rectangle 22647",
|
|
27714
|
+
d: "M19.971 12.207h5.171v5.171h-5.171z"
|
|
27715
|
+
}))));
|
|
27716
|
+
};
|
|
27717
|
+
|
|
27718
|
+
var _rect$1, _rect2, _rect3;
|
|
27719
|
+
function _extends$4() { _extends$4 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); }
|
|
27720
|
+
var SvgMenuBurger = function SvgMenuBurger(props) {
|
|
27721
|
+
return /*#__PURE__*/React.createElement("svg", _extends$4({
|
|
27722
|
+
"data-name": "menu burger",
|
|
27723
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27724
|
+
width: 42,
|
|
27725
|
+
height: 36
|
|
27726
|
+
}, props), _rect$1 || (_rect$1 = /*#__PURE__*/React.createElement("rect", {
|
|
27727
|
+
"data-name": "Rectangle 17015",
|
|
27728
|
+
width: 42,
|
|
27729
|
+
height: 6,
|
|
27730
|
+
rx: 3,
|
|
27731
|
+
fill: "#fff"
|
|
27732
|
+
})), _rect2 || (_rect2 = /*#__PURE__*/React.createElement("rect", {
|
|
27733
|
+
"data-name": "Rectangle 17018",
|
|
27734
|
+
width: 42,
|
|
27735
|
+
height: 6,
|
|
27736
|
+
rx: 3,
|
|
27737
|
+
transform: "translate(0 30)",
|
|
27738
|
+
fill: "#fff"
|
|
27739
|
+
})), _rect3 || (_rect3 = /*#__PURE__*/React.createElement("rect", {
|
|
27740
|
+
"data-name": "Rectangle 17016",
|
|
27741
|
+
width: 33,
|
|
27742
|
+
height: 6,
|
|
27743
|
+
rx: 3,
|
|
27744
|
+
transform: "translate(9 15)",
|
|
27745
|
+
fill: "#fff"
|
|
27746
|
+
})));
|
|
27747
|
+
};
|
|
27748
|
+
|
|
27749
|
+
var _defs, _path$1, _g$2;
|
|
27750
|
+
function _extends$3() { _extends$3 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); }
|
|
27751
|
+
var SvgUpdateIcon = function SvgUpdateIcon(props) {
|
|
27752
|
+
return /*#__PURE__*/React.createElement("svg", _extends$3({
|
|
27753
|
+
"data-name": "Component 231 \\u2013 4",
|
|
27754
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27755
|
+
width: 25.813,
|
|
27756
|
+
height: 23.313
|
|
27757
|
+
}, props), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
27758
|
+
id: "update_icon_svg__a"
|
|
27759
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27760
|
+
"data-name": "Rectangle 22651",
|
|
27761
|
+
transform: "translate(.448 .448)",
|
|
27762
|
+
fill: "#61cc61",
|
|
27763
|
+
d: "M0 0h18v18H0z"
|
|
27764
|
+
})))), _path$1 || (_path$1 = /*#__PURE__*/React.createElement("path", {
|
|
27765
|
+
d: "M5.876 10.103H1.043l1.421-4.416L3.726 7.32a8.78 8.78 0 1 1-3.448 4.986h1.527a7.375 7.375 0 1 0 2.82-3.819l1.251 1.616Zm2.938 1.46A2.938 2.938 0 1 1 5.876 14.5a2.939 2.939 0 0 1 2.937-2.937Z",
|
|
27766
|
+
fill: "#e42127",
|
|
27767
|
+
fillRule: "evenodd"
|
|
27768
|
+
})), _g$2 || (_g$2 = /*#__PURE__*/React.createElement("g", {
|
|
27769
|
+
"data-name": "Group 47569",
|
|
27770
|
+
clipPath: "url(#update_icon_svg__a)",
|
|
27771
|
+
transform: "translate(7.365 -.448)"
|
|
27772
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
27773
|
+
"data-name": "Path 85746",
|
|
27774
|
+
d: "M1.338 9.448a8.069 8.069 0 1 0 8.069-8.069 8.069 8.069 0 0 0-8.069 8.069",
|
|
27775
|
+
fill: "#61cc61"
|
|
27776
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27777
|
+
"data-name": "Rectangle 22649",
|
|
27778
|
+
fill: "#fff",
|
|
27779
|
+
d: "M8.251 4.874H10.5v5.477H8.251z"
|
|
27780
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27781
|
+
"data-name": "Rectangle 22650",
|
|
27782
|
+
fill: "#fff",
|
|
27783
|
+
d: "M8.245 11.688h2.262v2.262H8.245z"
|
|
27784
|
+
}))));
|
|
27785
|
+
};
|
|
27786
|
+
|
|
27787
|
+
var _g$1;
|
|
27788
|
+
function _extends$2() { _extends$2 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); }
|
|
27789
|
+
var SvgCheckboxDefault = function SvgCheckboxDefault(props) {
|
|
27790
|
+
return /*#__PURE__*/React.createElement("svg", _extends$2({
|
|
27791
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27792
|
+
width: 27,
|
|
27793
|
+
height: 27
|
|
27794
|
+
}, props), _g$1 || (_g$1 = /*#__PURE__*/React.createElement("g", {
|
|
27795
|
+
"data-name": "Rectangle 18315",
|
|
27796
|
+
fill: "#fff",
|
|
27797
|
+
stroke: "#a7b1d3",
|
|
27798
|
+
strokeWidth: 1.5
|
|
27799
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
27800
|
+
width: 27,
|
|
27801
|
+
height: 27,
|
|
27802
|
+
rx: 3,
|
|
27803
|
+
stroke: "none"
|
|
27804
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
27805
|
+
x: 0.75,
|
|
27806
|
+
y: 0.75,
|
|
27807
|
+
width: 25.5,
|
|
27808
|
+
height: 25.5,
|
|
27809
|
+
rx: 2.25,
|
|
27810
|
+
fill: "none"
|
|
27811
|
+
}))));
|
|
27812
|
+
};
|
|
27813
|
+
|
|
27814
|
+
var _rect, _path;
|
|
27815
|
+
function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
27816
|
+
var SvgCheckboxChecked = function SvgCheckboxChecked(props) {
|
|
27817
|
+
return /*#__PURE__*/React.createElement("svg", _extends$1({
|
|
27818
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27819
|
+
width: 20,
|
|
27820
|
+
height: 20
|
|
27821
|
+
}, props), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
|
|
27822
|
+
"data-name": "Rectangle 18315",
|
|
27823
|
+
width: 20,
|
|
27824
|
+
height: 20,
|
|
27825
|
+
rx: 3,
|
|
27826
|
+
fill: "#293072"
|
|
27827
|
+
})), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
27828
|
+
"data-name": "Path 85764",
|
|
27829
|
+
d: "M9.337 13.723a1.589 1.589 0 0 1-1.132-.469l-2.651-2.652 1.617-1.617 2.163 2.163 4.487-4.546 1.628 1.607-4.971 5.036a1.588 1.588 0 0 1-1.134.477Zm-.488-2.084Zm.973 0Z",
|
|
27830
|
+
fill: "#fff"
|
|
27831
|
+
})));
|
|
27832
|
+
};
|
|
27833
|
+
|
|
27834
|
+
var _g;
|
|
27835
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
27836
|
+
var SvgChecbkoxIndeterminate = function SvgChecbkoxIndeterminate(props) {
|
|
27837
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
27838
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27839
|
+
width: 27,
|
|
27840
|
+
height: 27
|
|
27841
|
+
}, props), _g || (_g = /*#__PURE__*/React.createElement("g", {
|
|
27842
|
+
"data-name": "Group 47972",
|
|
27843
|
+
transform: "translate(0 -7)"
|
|
27844
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
27845
|
+
"data-name": "Rectangle 18315",
|
|
27846
|
+
width: 27,
|
|
27847
|
+
height: 27,
|
|
27848
|
+
rx: 3,
|
|
27849
|
+
transform: "translate(0 7)",
|
|
27850
|
+
fill: "#252a67"
|
|
27851
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
27852
|
+
"data-name": "Rectangle 22927",
|
|
27853
|
+
fill: "#fff",
|
|
27854
|
+
d: "M5 19h17v3H5z"
|
|
27855
|
+
}))));
|
|
27856
|
+
};
|
|
27857
|
+
|
|
27858
|
+
var StyledIconWrapper = styled(Box)(function (_a) {
|
|
27859
|
+
_a.color; var iconName = _a.iconName;
|
|
27860
|
+
return ({
|
|
27861
|
+
transition: 'transform 0.3s ease-in-out',
|
|
27862
|
+
marginLeft: iconName === 'icon_wf_refresh' ? 5 : '',
|
|
27863
|
+
'&.small': {
|
|
27864
|
+
'svg': {
|
|
27865
|
+
width: '18px',
|
|
27866
|
+
height: '18px',
|
|
27867
|
+
}
|
|
27868
|
+
},
|
|
27869
|
+
'&.medium': {
|
|
27870
|
+
'svg': {
|
|
27871
|
+
width: '26px',
|
|
27872
|
+
height: '26px',
|
|
27873
|
+
}
|
|
27874
|
+
},
|
|
27875
|
+
'&.big': {
|
|
27876
|
+
'svg': {
|
|
27877
|
+
width: '45px',
|
|
27878
|
+
height: '45px',
|
|
27879
|
+
}
|
|
27880
|
+
},
|
|
27881
|
+
'svg': {
|
|
27882
|
+
width: '26px',
|
|
27883
|
+
height: '26px',
|
|
27884
|
+
'@media(min-width: 720px)': {
|
|
27885
|
+
width: '45px',
|
|
27886
|
+
height: '45px',
|
|
27887
|
+
},
|
|
27888
|
+
'@media(min-width: 1024px)': {
|
|
27889
|
+
width: '18px',
|
|
27890
|
+
height: '18px',
|
|
27891
|
+
}
|
|
27892
|
+
},
|
|
27893
|
+
'&.red-navy': {
|
|
27894
|
+
'#color-1': {
|
|
27895
|
+
'rect, path': {
|
|
27896
|
+
// fill: theme.mainPallete.primary[color],
|
|
27897
|
+
fill: theme.mainPallete.primary.blue,
|
|
27898
|
+
}
|
|
27899
|
+
},
|
|
27900
|
+
'#color-2': {
|
|
27901
|
+
'rect, path': {
|
|
27902
|
+
fill: theme.mainPallete.primary.red,
|
|
27903
|
+
}
|
|
27904
|
+
},
|
|
27905
|
+
'#color-3': {
|
|
27906
|
+
'rect, path': {
|
|
27907
|
+
fill: theme.mainPallete.primary.placeholderText,
|
|
27908
|
+
}
|
|
27909
|
+
},
|
|
27910
|
+
},
|
|
27911
|
+
'&.red': {
|
|
27912
|
+
'#color-1': {
|
|
27913
|
+
'rect, path': {
|
|
27914
|
+
fill: theme.mainPallete.primary.red,
|
|
27915
|
+
}
|
|
27916
|
+
},
|
|
27917
|
+
'#color-2': {
|
|
27918
|
+
'rect, path': {
|
|
27919
|
+
fill: theme.mainPallete.primary.red,
|
|
27920
|
+
}
|
|
27921
|
+
},
|
|
27922
|
+
},
|
|
27923
|
+
'&.blue': {
|
|
27924
|
+
'#color-1': {
|
|
27925
|
+
'rect, path': {
|
|
27926
|
+
fill: theme.mainPallete.primary.blue,
|
|
27927
|
+
}
|
|
27928
|
+
},
|
|
27929
|
+
'#color-2': {
|
|
27930
|
+
'rect, path': {
|
|
27931
|
+
fill: theme.mainPallete.primary.blue,
|
|
27932
|
+
}
|
|
27933
|
+
},
|
|
27934
|
+
},
|
|
27935
|
+
'&.gray': {
|
|
27936
|
+
'#color-1': {
|
|
27937
|
+
'rect, path': {
|
|
27938
|
+
fill: theme.mainPallete.primary.grey,
|
|
27939
|
+
}
|
|
27940
|
+
},
|
|
27941
|
+
'#color-2': {
|
|
27942
|
+
'rect, path': {
|
|
27943
|
+
fill: theme.mainPallete.primary.grey,
|
|
27944
|
+
}
|
|
27945
|
+
},
|
|
27946
|
+
},
|
|
27947
|
+
'&.white': {
|
|
27948
|
+
'#color-1': {
|
|
27949
|
+
'rect, path': {
|
|
27950
|
+
fill: theme.mainPallete.primary.white,
|
|
27951
|
+
}
|
|
27952
|
+
},
|
|
27953
|
+
'#color-2': {
|
|
27954
|
+
'rect, path': {
|
|
27955
|
+
fill: theme.mainPallete.primary.white,
|
|
27956
|
+
}
|
|
27957
|
+
},
|
|
27958
|
+
'#color-3': {
|
|
27959
|
+
'rect, path': {
|
|
27960
|
+
fill: theme.mainPallete.primary.white,
|
|
27961
|
+
}
|
|
27962
|
+
},
|
|
27963
|
+
},
|
|
27964
|
+
'&.disabled': {
|
|
27965
|
+
'#color-1': {
|
|
27966
|
+
'rect, path': {
|
|
27967
|
+
fill: theme.mainPallete.primary.placeholderText,
|
|
27968
|
+
}
|
|
27969
|
+
},
|
|
27970
|
+
'#color-2': {
|
|
27971
|
+
'rect, path': {
|
|
27972
|
+
fill: theme.mainPallete.primary.placeholderText,
|
|
27973
|
+
}
|
|
27974
|
+
},
|
|
27975
|
+
'#color-3': {
|
|
27976
|
+
'rect, path': {
|
|
27977
|
+
fill: theme.mainPallete.primary.placeholderText,
|
|
27978
|
+
}
|
|
27979
|
+
},
|
|
27980
|
+
},
|
|
27981
|
+
'&.special-green': {
|
|
27982
|
+
'#color-1': {
|
|
27983
|
+
'rect, path': {
|
|
27984
|
+
fill: theme.mainPallete.secondary.specialGreen,
|
|
27985
|
+
}
|
|
27986
|
+
},
|
|
27987
|
+
'#color-2': {
|
|
27988
|
+
'rect, path': {
|
|
27989
|
+
fill: theme.mainPallete.secondary.specialGreen,
|
|
27990
|
+
}
|
|
27991
|
+
},
|
|
27992
|
+
'#color-3': {
|
|
27993
|
+
'rect, path': {
|
|
27994
|
+
fill: theme.mainPallete.secondary.specialGreen,
|
|
27995
|
+
}
|
|
27996
|
+
},
|
|
27997
|
+
},
|
|
27998
|
+
'&.black': {
|
|
27999
|
+
'#color-1': {
|
|
28000
|
+
'rect, path': {
|
|
28001
|
+
fill: theme.mainPallete.secondary.buttonBlack,
|
|
28002
|
+
}
|
|
28003
|
+
},
|
|
28004
|
+
'#color-2': {
|
|
28005
|
+
'rect, path': {
|
|
28006
|
+
fill: theme.mainPallete.secondary.buttonBlack,
|
|
28007
|
+
}
|
|
28008
|
+
},
|
|
28009
|
+
'#color-3': {
|
|
28010
|
+
'rect, path': {
|
|
28011
|
+
fill: theme.mainPallete.secondary.buttonBlack,
|
|
28012
|
+
}
|
|
28013
|
+
},
|
|
28014
|
+
},
|
|
28015
|
+
});
|
|
28016
|
+
});
|
|
28017
|
+
// @ts-ignore
|
|
28018
|
+
var Icon = function (_a) {
|
|
28019
|
+
var iconName = _a.iconName, color = _a.color, size = _a.size, forwardedRef = _a.forwardedRef, rest = __rest(_a, ["iconName", "color", "size", "forwardedRef"]);
|
|
28020
|
+
return (jsxRuntime.exports.jsxs(StyledIconWrapper, __assign({}, rest, { ref: forwardedRef, className: "".concat(color, " ").concat(size), color: color, size: size, iconName: iconName }, { children: [iconName === 'icon_wf_search' && jsxRuntime.exports.jsx(SvgIconWfSearch, {}), iconName === 'icon_wf_locked' && jsxRuntime.exports.jsx(SvgIconWfLocked, {}), iconName === 'icon_wf_download' && jsxRuntime.exports.jsx(SvgIconWfDownload, {}), iconName === 'icon_wf_remove' && jsxRuntime.exports.jsx(SvgIconWfRemove, {}), iconName === 'icon_wf_logout' && jsxRuntime.exports.jsx(SvgIconWfLogout, {}), iconName === 'icon_wf_edit' && jsxRuntime.exports.jsx(SvgIconWfEdit, {}), iconName === 'icon_wf_settings_or_filter' && jsxRuntime.exports.jsx(SvgIconWfSettingsOrFilter, {}), iconName === 'icon_wf_barcode_1d' && jsxRuntime.exports.jsx(SvgIconWfBarcode1D, {}), iconName === 'icon_wf_barcode_2d' && jsxRuntime.exports.jsx(SvgIconWfBarcode2D, {}), iconName === 'icon_wf_barcode_printer' && jsxRuntime.exports.jsx(SvgIconWfBarcodePrinter, {}), iconName === 'icon_wf_box' && jsxRuntime.exports.jsx(SvgIconWfBox, {}), iconName === 'icon_wf_calculator' && jsxRuntime.exports.jsx(SvgIconWfCalculator, {}), iconName === 'icon_wf_calendar' && jsxRuntime.exports.jsx(SvgIconWfCalendar, {}), iconName === 'icon_wf_car' && jsxRuntime.exports.jsx(SvgIconWfCar, {}), iconName === 'icon_wf_forklift' && jsxRuntime.exports.jsx(SvgIconWfForklift, {}), iconName === 'icon_wf_invoice' && jsxRuntime.exports.jsx(SvgIconWfInvoice, {}), iconName === 'icon_wf_keyboard' && jsxRuntime.exports.jsx(SvgIconWfKeyboard, {}), iconName === 'icon_wf_logs' && jsxRuntime.exports.jsx(SvgIconWfLogs, {}), iconName === 'icon_wf_no_barcode_printer' && jsxRuntime.exports.jsx(SvgIconWfNoBarcodePrinter, {}), iconName === 'icon_wf_no_scan' && jsxRuntime.exports.jsx(SvgIconWfNoScan, {}), iconName === 'icon_wf_pallet' && jsxRuntime.exports.jsx(SvgIconWfPallet, {}), iconName === 'icon_wf_pin' && jsxRuntime.exports.jsx(SvgIconWfPin, {}), iconName === 'icon_wf_scan' && jsxRuntime.exports.jsx(SvgIconWfScan, {}), iconName === 'icon_wf_send' && jsxRuntime.exports.jsx(SvgIconWfSend, {}), iconName === 'icon_wf_status_ksef' && jsxRuntime.exports.jsx(SvgIconWfStatusKsef, {}), iconName === 'icon_wf_stop' && jsxRuntime.exports.jsx(SvgIconWfStop, {}), iconName === 'icon_wf_unpin' && jsxRuntime.exports.jsx(SvgIconWfUnpin, {}), iconName === 'icon_wf_refresh' && jsxRuntime.exports.jsx(SvgIconWfRefresh, {}), iconName === 'icon_ui_close' && jsxRuntime.exports.jsx(SvgIconUiClose, {}), iconName === 'icon_ui_chevron_up' && jsxRuntime.exports.jsx(SvgIconUiChevronUp, {}), iconName === 'icon_ui_chevron_down' && jsxRuntime.exports.jsx(SvgIconUiChevronDown, {}), iconName === 'icon_ui_chevron_right' && jsxRuntime.exports.jsx(SvgIconUiChevronRight, {}), iconName === 'icon_ui_chevron_left' && jsxRuntime.exports.jsx(SvgIconUiChevronLeft, {}), iconName === 'icon_sp_check_mark' && jsxRuntime.exports.jsx(SvgIconSpCheckMark, {}), iconName === 'icon_sp_warning' && jsxRuntime.exports.jsx(SvgIconSpWarning, {}), iconName === 'icon_sp_info' && jsxRuntime.exports.jsx(SvgIconSpInfo, {}), iconName === 'icon_sp_info_2' && jsxRuntime.exports.jsx(SvgIconSpInfo2, {}), iconName === 'icon_burger_menu' && jsxRuntime.exports.jsx(SvgMenuBurger, {}), iconName === 'icon_update' && jsxRuntime.exports.jsx(SvgUpdateIcon, {}), iconName === 'icon_checkbox_default' && jsxRuntime.exports.jsx(SvgCheckboxDefault, {}), iconName === 'icon_checkbox_checked' && jsxRuntime.exports.jsx(SvgCheckboxChecked, {}), iconName === 'icon_checkbox_indeterminate' && jsxRuntime.exports.jsx(SvgChecbkoxIndeterminate, {})] })));
|
|
25924
28021
|
};
|
|
25925
28022
|
|
|
25926
|
-
export { AppTileComponent as AppTile, CustomButtonComponent as Button, Illustration, TypographyComponent as Typography };
|
|
28023
|
+
export { AppTileComponent as AppTile, CustomButtonComponent as Button, Icon, Illustration, TypographyComponent as Typography };
|
|
25927
28024
|
//# sourceMappingURL=index.js.map
|