@xelto.npm/xc2-lib 0.0.25 → 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 CHANGED
@@ -1379,8 +1379,8 @@ function requireReactJsxRuntime_development () {
1379
1379
  }
1380
1380
  } (jsxRuntime));
1381
1381
 
1382
- function _extends$v() {
1383
- _extends$v = Object.assign ? Object.assign.bind() : function (target) {
1382
+ function _extends$19() {
1383
+ _extends$19 = Object.assign ? Object.assign.bind() : function (target) {
1384
1384
  for (var i = 1; i < arguments.length; i++) {
1385
1385
  var source = arguments[i];
1386
1386
  for (var key in source) {
@@ -1391,7 +1391,7 @@ function _extends$v() {
1391
1391
  }
1392
1392
  return target;
1393
1393
  };
1394
- return _extends$v.apply(this, arguments);
1394
+ return _extends$19.apply(this, arguments);
1395
1395
  }
1396
1396
 
1397
1397
  function _objectWithoutPropertiesLoose(source, excluded) {
@@ -1407,7 +1407,7 @@ function _objectWithoutPropertiesLoose(source, excluded) {
1407
1407
  return target;
1408
1408
  }
1409
1409
 
1410
- var _extends$u = {exports: {}};
1410
+ var _extends$18 = {exports: {}};
1411
1411
 
1412
1412
  (function (module) {
1413
1413
  function _extends() {
@@ -1425,7 +1425,7 @@ var _extends$u = {exports: {}};
1425
1425
  return _extends.apply(this, arguments);
1426
1426
  }
1427
1427
  module.exports = _extends, module.exports.__esModule = true, module.exports["default"] = module.exports;
1428
- } (_extends$u));
1428
+ } (_extends$18));
1429
1429
 
1430
1430
  function memoize$1(fn) {
1431
1431
  var cache = Object.create(null);
@@ -3825,7 +3825,7 @@ var createStyled$1 = function createStyled(tag, options) {
3825
3825
  });
3826
3826
 
3827
3827
  Styled.withComponent = function (nextTag, nextOptions) {
3828
- return createStyled(nextTag, _extends$v({}, options, nextOptions, {
3828
+ return createStyled(nextTag, _extends$19({}, options, nextOptions, {
3829
3829
  shouldForwardProp: composeShouldForwardProps(Styled, nextOptions, true)
3830
3830
  })).apply(void 0, styles);
3831
3831
  };
@@ -4860,7 +4860,7 @@ function isPlainObject(item) {
4860
4860
  function deepmerge(target, source, options = {
4861
4861
  clone: true
4862
4862
  }) {
4863
- const output = options.clone ? _extends$v({}, target) : target;
4863
+ const output = options.clone ? _extends$19({}, target) : target;
4864
4864
  if (isPlainObject(target) && isPlainObject(source)) {
4865
4865
  Object.keys(source).forEach(key => {
4866
4866
  // Avoid prototype pollution
@@ -4966,7 +4966,7 @@ function exactProp(propTypes) {
4966
4966
  if (process.env.NODE_ENV === 'production') {
4967
4967
  return propTypes;
4968
4968
  }
4969
- return _extends$v({}, propTypes, {
4969
+ return _extends$19({}, propTypes, {
4970
4970
  [specialProperty]: props => {
4971
4971
  const unsupportedProps = Object.keys(props).filter(prop => !propTypes.hasOwnProperty(prop));
4972
4972
  if (unsupportedProps.length > 0) {
@@ -5594,7 +5594,7 @@ process.env.NODE_ENV === 'production' ? validatorNoop : validator;
5594
5594
  * @returns {object} resolved props
5595
5595
  */
5596
5596
  function resolveProps(defaultProps, props) {
5597
- const output = _extends$v({}, props);
5597
+ const output = _extends$19({}, props);
5598
5598
  Object.keys(defaultProps).forEach(propName => {
5599
5599
  if (output[propName] === undefined) {
5600
5600
  output[propName] = defaultProps[propName];
@@ -6522,12 +6522,12 @@ function extendSxProp(props) {
6522
6522
  if (!isPlainObject(result)) {
6523
6523
  return systemProps;
6524
6524
  }
6525
- return _extends$v({}, systemProps, result);
6525
+ return _extends$19({}, systemProps, result);
6526
6526
  };
6527
6527
  } else {
6528
- finalSx = _extends$v({}, systemProps, inSx);
6528
+ finalSx = _extends$19({}, systemProps, inSx);
6529
6529
  }
6530
- return _extends$v({}, otherProps, {
6530
+ return _extends$19({}, otherProps, {
6531
6531
  sx: finalSx
6532
6532
  });
6533
6533
  }
@@ -6543,7 +6543,7 @@ const sortBreakpointsValues = values => {
6543
6543
  // Sort in ascending order
6544
6544
  breakpointsAsArray.sort((breakpoint1, breakpoint2) => breakpoint1.val - breakpoint2.val);
6545
6545
  return breakpointsAsArray.reduce((acc, obj) => {
6546
- return _extends$v({}, acc, {
6546
+ return _extends$19({}, acc, {
6547
6547
  [obj.key]: obj.val
6548
6548
  });
6549
6549
  }, {});
@@ -6601,7 +6601,7 @@ function createBreakpoints(breakpoints) {
6601
6601
  }
6602
6602
  return between(key, keys[keys.indexOf(key) + 1]).replace('@media', '@media not all and');
6603
6603
  }
6604
- return _extends$v({
6604
+ return _extends$19({
6605
6605
  keys,
6606
6606
  values: sortedValues,
6607
6607
  up,
@@ -6663,11 +6663,11 @@ function createTheme$1(options = {}, ...args) {
6663
6663
  direction: 'ltr',
6664
6664
  components: {},
6665
6665
  // Inject component definitions.
6666
- palette: _extends$v({
6666
+ palette: _extends$19({
6667
6667
  mode: 'light'
6668
6668
  }, paletteInput),
6669
6669
  spacing,
6670
- shape: _extends$v({}, shape, shapeInput)
6670
+ shape: _extends$19({}, shape, shapeInput)
6671
6671
  }, other);
6672
6672
  muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
6673
6673
  return muiTheme;
@@ -6701,7 +6701,7 @@ function mergeOuterLocalTheme(outerTheme, localTheme) {
6701
6701
  }
6702
6702
  return mergedTheme;
6703
6703
  }
6704
- return _extends$v({}, outerTheme, localTheme);
6704
+ return _extends$19({}, outerTheme, localTheme);
6705
6705
  }
6706
6706
 
6707
6707
  /**
@@ -6778,7 +6778,7 @@ function createBox(options = {}) {
6778
6778
  component = 'div'
6779
6779
  } = _extendSxProp,
6780
6780
  other = _objectWithoutPropertiesLoose(_extendSxProp, _excluded$f);
6781
- return /*#__PURE__*/jsxRuntime.exports.jsx(BoxRoot, _extends$v({
6781
+ return /*#__PURE__*/jsxRuntime.exports.jsx(BoxRoot, _extends$19({
6782
6782
  as: component,
6783
6783
  ref: ref,
6784
6784
  className: clsx(className, generateClassName ? generateClassName(defaultClassName) : defaultClassName),
@@ -6908,7 +6908,7 @@ function createStyled(input = {}) {
6908
6908
  } = input;
6909
6909
  const systemSx = props => {
6910
6910
  const theme = isEmpty(props.theme) ? defaultTheme : props.theme;
6911
- return styleFunctionSx$1(_extends$v({}, props, {
6911
+ return styleFunctionSx$1(_extends$19({}, props, {
6912
6912
  theme
6913
6913
  }));
6914
6914
  };
@@ -6944,7 +6944,7 @@ function createStyled(input = {}) {
6944
6944
  // for string (html) tag, preserve the behavior in emotion & styled-components.
6945
6945
  shouldForwardPropOption = undefined;
6946
6946
  }
6947
- const defaultStyledResolver = styled$2(tag, _extends$v({
6947
+ const defaultStyledResolver = styled$2(tag, _extends$19({
6948
6948
  shouldForwardProp: shouldForwardPropOption,
6949
6949
  label
6950
6950
  }, options));
@@ -6958,7 +6958,7 @@ function createStyled(input = {}) {
6958
6958
  theme: themeInput
6959
6959
  } = _ref,
6960
6960
  other = _objectWithoutPropertiesLoose(_ref, _excluded2$1);
6961
- return stylesArg(_extends$v({
6961
+ return stylesArg(_extends$19({
6962
6962
  theme: isEmpty(themeInput) ? defaultTheme : themeInput
6963
6963
  }, other));
6964
6964
  } : stylesArg;
@@ -6971,7 +6971,7 @@ function createStyled(input = {}) {
6971
6971
  if (styleOverrides) {
6972
6972
  const resolvedStyleOverrides = {};
6973
6973
  Object.entries(styleOverrides).forEach(([slotKey, slotStyle]) => {
6974
- resolvedStyleOverrides[slotKey] = typeof slotStyle === 'function' ? slotStyle(_extends$v({}, props, {
6974
+ resolvedStyleOverrides[slotKey] = typeof slotStyle === 'function' ? slotStyle(_extends$19({}, props, {
6975
6975
  theme
6976
6976
  })) : slotStyle;
6977
6977
  });
@@ -7006,7 +7006,7 @@ function createStyled(input = {}) {
7006
7006
  theme: themeInput
7007
7007
  } = _ref2,
7008
7008
  other = _objectWithoutPropertiesLoose(_ref2, _excluded3);
7009
- return styleArg(_extends$v({
7009
+ return styleArg(_extends$19({
7010
7010
  theme: isEmpty(themeInput) ? defaultTheme : themeInput
7011
7011
  }, other));
7012
7012
  };
@@ -7655,7 +7655,7 @@ function useCurrentColorScheme(options) {
7655
7655
  } catch (e) {
7656
7656
  // Unsupported
7657
7657
  }
7658
- return _extends$v({}, currentState, {
7658
+ return _extends$19({}, currentState, {
7659
7659
  mode: newMode,
7660
7660
  systemMode: getSystemMode(newMode)
7661
7661
  });
@@ -7670,7 +7670,7 @@ function useCurrentColorScheme(options) {
7670
7670
  } catch (e) {
7671
7671
  // Unsupported
7672
7672
  }
7673
- return _extends$v({}, currentState, {
7673
+ return _extends$19({}, currentState, {
7674
7674
  lightColorScheme: defaultLightColorScheme,
7675
7675
  darkColorScheme: defaultDarkColorScheme
7676
7676
  });
@@ -7680,7 +7680,7 @@ function useCurrentColorScheme(options) {
7680
7680
  console.error(`\`${value}\` does not exist in \`theme.colorSchemes\`.`);
7681
7681
  } else {
7682
7682
  setState(currentState => {
7683
- const newState = _extends$v({}, currentState);
7683
+ const newState = _extends$19({}, currentState);
7684
7684
  processState(currentState, mode => {
7685
7685
  try {
7686
7686
  localStorage.setItem(`${colorSchemeStorageKey}-${mode}`, value);
@@ -7699,7 +7699,7 @@ function useCurrentColorScheme(options) {
7699
7699
  }
7700
7700
  } else {
7701
7701
  setState(currentState => {
7702
- const newState = _extends$v({}, currentState);
7702
+ const newState = _extends$19({}, currentState);
7703
7703
  const newLightColorScheme = value.light === null ? defaultLightColorScheme : value.light;
7704
7704
  const newDarkColorScheme = value.dark === null ? defaultDarkColorScheme : value.dark;
7705
7705
  if (newLightColorScheme) {
@@ -7732,7 +7732,7 @@ function useCurrentColorScheme(options) {
7732
7732
  }, [joinedColorSchemes, colorSchemeStorageKey, defaultLightColorScheme, defaultDarkColorScheme]);
7733
7733
  const handleMediaQuery = React__namespace.useCallback(e => {
7734
7734
  if (state.mode === 'system') {
7735
- setState(currentState => _extends$v({}, currentState, {
7735
+ setState(currentState => _extends$19({}, currentState, {
7736
7736
  systemMode: e != null && e.matches ? 'dark' : 'light'
7737
7737
  }));
7738
7738
  }
@@ -7781,7 +7781,7 @@ function useCurrentColorScheme(options) {
7781
7781
  }
7782
7782
  return undefined;
7783
7783
  }, [setColorScheme, setMode, modeStorageKey, colorSchemeStorageKey, joinedColorSchemes, defaultMode, storageWindow]);
7784
- return _extends$v({}, state, {
7784
+ return _extends$19({}, state, {
7785
7785
  colorScheme,
7786
7786
  setMode,
7787
7787
  setColorScheme
@@ -7901,7 +7901,7 @@ function createCssVarsProvider(options) {
7901
7901
  });
7902
7902
 
7903
7903
  // 3. Start composing the theme object
7904
- const theme = _extends$v({}, restThemeProp, {
7904
+ const theme = _extends$19({}, restThemeProp, {
7905
7905
  components,
7906
7906
  colorSchemes,
7907
7907
  cssVarPrefix,
@@ -7928,7 +7928,7 @@ function createCssVarsProvider(options) {
7928
7928
  Object.keys(scheme).forEach(schemeKey => {
7929
7929
  if (scheme[schemeKey] && typeof scheme[schemeKey] === 'object') {
7930
7930
  // shallow merge the 1st level structure of the theme.
7931
- theme[schemeKey] = _extends$v({}, theme[schemeKey], scheme[schemeKey]);
7931
+ theme[schemeKey] = _extends$19({}, theme[schemeKey], scheme[schemeKey]);
7932
7932
  } else {
7933
7933
  theme[schemeKey] = scheme[schemeKey];
7934
7934
  }
@@ -8100,7 +8100,7 @@ function createCssVarsProvider(options) {
8100
8100
  } : void 0;
8101
8101
  const defaultLightColorScheme = typeof designSystemColorScheme === 'string' ? designSystemColorScheme : designSystemColorScheme.light;
8102
8102
  const defaultDarkColorScheme = typeof designSystemColorScheme === 'string' ? designSystemColorScheme : designSystemColorScheme.dark;
8103
- const getInitColorSchemeScript$1 = params => getInitColorSchemeScript(_extends$v({
8103
+ const getInitColorSchemeScript$1 = params => getInitColorSchemeScript(_extends$19({
8104
8104
  attribute: defaultAttribute,
8105
8105
  colorSchemeStorageKey: defaultColorSchemeStorageKey,
8106
8106
  defaultMode: designSystemMode,
@@ -8180,7 +8180,7 @@ function createContainer(options = {}) {
8180
8180
  const ContainerRoot = createStyledComponent(({
8181
8181
  theme,
8182
8182
  ownerState
8183
- }) => _extends$v({
8183
+ }) => _extends$19({
8184
8184
  width: '100%',
8185
8185
  marginLeft: 'auto',
8186
8186
  boxSizing: 'border-box',
@@ -8210,7 +8210,7 @@ function createContainer(options = {}) {
8210
8210
  }, {}), ({
8211
8211
  theme,
8212
8212
  ownerState
8213
- }) => _extends$v({}, ownerState.maxWidth === 'xs' && {
8213
+ }) => _extends$19({}, ownerState.maxWidth === 'xs' && {
8214
8214
  // @ts-ignore module augmentation fails if custom breakpoints are used
8215
8215
  [theme.breakpoints.up('xs')]: {
8216
8216
  // @ts-ignore module augmentation fails if custom breakpoints are used
@@ -8235,7 +8235,7 @@ function createContainer(options = {}) {
8235
8235
  maxWidth = 'lg'
8236
8236
  } = props,
8237
8237
  other = _objectWithoutPropertiesLoose(props, _excluded$b);
8238
- const ownerState = _extends$v({}, props, {
8238
+ const ownerState = _extends$19({}, props, {
8239
8239
  component,
8240
8240
  disableGutters,
8241
8241
  fixed,
@@ -8247,7 +8247,7 @@ function createContainer(options = {}) {
8247
8247
  return (
8248
8248
  /*#__PURE__*/
8249
8249
  // @ts-ignore theme is injected by the styled util
8250
- jsxRuntime.exports.jsx(ContainerRoot, _extends$v({
8250
+ jsxRuntime.exports.jsx(ContainerRoot, _extends$19({
8251
8251
  as: component
8252
8252
  // @ts-ignore module augmentation fails if custom breakpoints are used
8253
8253
  ,
@@ -8492,10 +8492,10 @@ const generateGridDirectionStyles = ({
8492
8492
  const generateGridStyles = ({
8493
8493
  ownerState
8494
8494
  }) => {
8495
- return _extends$v({
8495
+ return _extends$19({
8496
8496
  minWidth: 0,
8497
8497
  boxSizing: 'border-box'
8498
- }, ownerState.container ? _extends$v({
8498
+ }, ownerState.container ? _extends$19({
8499
8499
  display: 'flex',
8500
8500
  flexWrap: 'wrap'
8501
8501
  }, ownerState.wrap && ownerState.wrap !== 'wrap' && {
@@ -8504,14 +8504,14 @@ const generateGridStyles = ({
8504
8504
  margin: `calc(var(--Grid-rowSpacing) / -2) calc(var(--Grid-columnSpacing) / -2)`
8505
8505
  }, ownerState.disableEqualOverflow && {
8506
8506
  margin: `calc(var(--Grid-rowSpacing) * -1) 0px 0px calc(var(--Grid-columnSpacing) * -1)`
8507
- }, ownerState.nested ? _extends$v({
8507
+ }, ownerState.nested ? _extends$19({
8508
8508
  padding: `calc(var(--Grid-nested-rowSpacing) / 2) calc(var(--Grid-nested-columnSpacing) / 2)`
8509
8509
  }, (ownerState.disableEqualOverflow || ownerState.parentDisableEqualOverflow) && {
8510
8510
  padding: `calc(var(--Grid-nested-rowSpacing)) 0px 0px calc(var(--Grid-nested-columnSpacing))`
8511
8511
  }) : {
8512
8512
  '--Grid-nested-rowSpacing': 'var(--Grid-rowSpacing)',
8513
8513
  '--Grid-nested-columnSpacing': 'var(--Grid-columnSpacing)'
8514
- }) : _extends$v({
8514
+ }) : _extends$19({
8515
8515
  padding: `calc(var(--Grid-rowSpacing) / 2) calc(var(--Grid-columnSpacing) / 2)`
8516
8516
  }, ownerState.disableEqualOverflow && {
8517
8517
  padding: `calc(var(--Grid-rowSpacing)) 0px 0px calc(var(--Grid-columnSpacing))`
@@ -8638,7 +8638,7 @@ function createGrid(options = {}) {
8638
8638
  const spacing = (_inProps$spacing = inProps.spacing) != null ? _inProps$spacing : nested ? undefined : spacingProp;
8639
8639
  const rowSpacing = (_ref = (_inProps$rowSpacing = inProps.rowSpacing) != null ? _inProps$rowSpacing : inProps.spacing) != null ? _ref : nested ? undefined : rowSpacingProp;
8640
8640
  const columnSpacing = (_ref2 = (_inProps$columnSpacin = inProps.columnSpacing) != null ? _inProps$columnSpacin : inProps.spacing) != null ? _ref2 : nested ? undefined : columnSpacingProp;
8641
- const ownerState = _extends$v({}, props, {
8641
+ const ownerState = _extends$19({}, props, {
8642
8642
  nested,
8643
8643
  columns,
8644
8644
  container,
@@ -8655,7 +8655,7 @@ function createGrid(options = {}) {
8655
8655
  });
8656
8656
 
8657
8657
  const classes = useUtilityClasses(ownerState, theme);
8658
- let result = /*#__PURE__*/jsxRuntime.exports.jsx(GridRoot, _extends$v({
8658
+ let result = /*#__PURE__*/jsxRuntime.exports.jsx(GridRoot, _extends$19({
8659
8659
  ref: ref,
8660
8660
  as: component,
8661
8661
  ownerState: ownerState,
@@ -8915,7 +8915,7 @@ const style = ({
8915
8915
  ownerState,
8916
8916
  theme
8917
8917
  }) => {
8918
- let styles = _extends$v({
8918
+ let styles = _extends$19({
8919
8919
  display: 'flex',
8920
8920
  flexDirection: 'column'
8921
8921
  }, handleBreakpoints({
@@ -8997,7 +8997,7 @@ function createStack(options = {}) {
8997
8997
  spacing
8998
8998
  };
8999
8999
  const classes = useUtilityClasses();
9000
- return /*#__PURE__*/jsxRuntime.exports.jsx(StackRoot, _extends$v({
9000
+ return /*#__PURE__*/jsxRuntime.exports.jsx(StackRoot, _extends$19({
9001
9001
  as: component,
9002
9002
  ownerState: ownerState,
9003
9003
  ref: ref,
@@ -9061,7 +9061,7 @@ process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ =
9061
9061
  generateUtilityClasses('MuiStack', ['root']);
9062
9062
 
9063
9063
  function createMixins(breakpoints, mixins) {
9064
- return _extends$v({
9064
+ return _extends$19({
9065
9065
  toolbar: {
9066
9066
  minHeight: 56,
9067
9067
  [breakpoints.up('xs')]: {
@@ -9397,7 +9397,7 @@ function createPalette(palette) {
9397
9397
  lightShade = 300,
9398
9398
  darkShade = 700
9399
9399
  }) => {
9400
- color = _extends$v({}, color);
9400
+ color = _extends$19({}, color);
9401
9401
  if (!color.main && color[mainShade]) {
9402
9402
  color.main = color[mainShade];
9403
9403
  }
@@ -9437,9 +9437,9 @@ const theme2 = createTheme({ palette: {
9437
9437
  console.error(`MUI: The palette mode \`${mode}\` is not supported.`);
9438
9438
  }
9439
9439
  }
9440
- const paletteOutput = deepmerge(_extends$v({
9440
+ const paletteOutput = deepmerge(_extends$19({
9441
9441
  // A collection of common colors.
9442
- common: _extends$v({}, common),
9442
+ common: _extends$19({}, common),
9443
9443
  // prevent mutable object.
9444
9444
  // The palette mode, can be light or dark.
9445
9445
  mode,
@@ -9535,7 +9535,7 @@ function createTypography(palette, typography) {
9535
9535
  }
9536
9536
  const coef = fontSize / 14;
9537
9537
  const pxToRem = pxToRem2 || (size => `${size / htmlFontSize * coef}rem`);
9538
- const buildVariant = (fontWeight, size, lineHeight, letterSpacing, casing) => _extends$v({
9538
+ const buildVariant = (fontWeight, size, lineHeight, letterSpacing, casing) => _extends$19({
9539
9539
  fontFamily,
9540
9540
  fontWeight,
9541
9541
  fontSize: pxToRem(size),
@@ -9559,7 +9559,7 @@ function createTypography(palette, typography) {
9559
9559
  caption: buildVariant(fontWeightRegular, 12, 1.66, 0.4),
9560
9560
  overline: buildVariant(fontWeightRegular, 12, 2.66, 1, caseAllCaps)
9561
9561
  };
9562
- return deepmerge(_extends$v({
9562
+ return deepmerge(_extends$19({
9563
9563
  htmlFontSize,
9564
9564
  pxToRem,
9565
9565
  fontFamily,
@@ -9626,8 +9626,8 @@ function getAutoHeightDuration(height) {
9626
9626
  return Math.round((4 + 15 * constant ** 0.25 + constant / 5) * 10);
9627
9627
  }
9628
9628
  function createTransitions(inputTransitions) {
9629
- const mergedEasing = _extends$v({}, easing, inputTransitions.easing);
9630
- const mergedDuration = _extends$v({}, duration, inputTransitions.duration);
9629
+ const mergedEasing = _extends$19({}, easing, inputTransitions.easing);
9630
+ const mergedDuration = _extends$19({}, duration, inputTransitions.duration);
9631
9631
  const create = (props = ['all'], options = {}) => {
9632
9632
  const {
9633
9633
  duration: durationOption = mergedDuration.standard,
@@ -9658,7 +9658,7 @@ function createTransitions(inputTransitions) {
9658
9658
  }
9659
9659
  return (Array.isArray(props) ? props : [props]).map(animatedProp => `${animatedProp} ${typeof durationOption === 'string' ? durationOption : formatMs(durationOption)} ${easingOption} ${typeof delay === 'string' ? delay : formatMs(delay)}`).join(',');
9660
9660
  };
9661
- return _extends$v({
9661
+ return _extends$19({
9662
9662
  getAutoHeightDuration,
9663
9663
  create
9664
9664
  }, inputTransitions, {
@@ -9702,7 +9702,7 @@ Please use another name.` : formatMuiErrorMessage(18));
9702
9702
  shadows: shadows.slice(),
9703
9703
  typography: createTypography(palette, typographyInput),
9704
9704
  transitions: createTransitions(transitionsInput),
9705
- zIndex: _extends$v({}, zIndex)
9705
+ zIndex: _extends$19({}, zIndex)
9706
9706
  });
9707
9707
  muiTheme = deepmerge(muiTheme, other);
9708
9708
  muiTheme = args.reduce((acc, argument) => deepmerge(acc, argument), muiTheme);
@@ -9806,7 +9806,7 @@ function extendTheme(options = {}, ...args) {
9806
9806
  } = options,
9807
9807
  input = _objectWithoutPropertiesLoose(options, _excluded$4);
9808
9808
  const getCssVar = createGetCssVar(cssVarPrefix);
9809
- const _createThemeWithoutVa = createTheme(_extends$v({}, input, colorSchemesInput.light && {
9809
+ const _createThemeWithoutVa = createTheme(_extends$19({}, input, colorSchemesInput.light && {
9810
9810
  palette: (_colorSchemesInput$li = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li.palette
9811
9811
  })),
9812
9812
  {
@@ -9816,17 +9816,17 @@ function extendTheme(options = {}, ...args) {
9816
9816
  const {
9817
9817
  palette: darkPalette
9818
9818
  } = createTheme({
9819
- palette: _extends$v({
9819
+ palette: _extends$19({
9820
9820
  mode: 'dark'
9821
9821
  }, (_colorSchemesInput$da = colorSchemesInput.dark) == null ? void 0 : _colorSchemesInput$da.palette)
9822
9822
  });
9823
- let theme = _extends$v({}, muiTheme, {
9823
+ let theme = _extends$19({}, muiTheme, {
9824
9824
  cssVarPrefix,
9825
9825
  getCssVar,
9826
- colorSchemes: _extends$v({}, colorSchemesInput, {
9827
- light: _extends$v({}, colorSchemesInput.light, {
9826
+ colorSchemes: _extends$19({}, colorSchemesInput, {
9827
+ light: _extends$19({}, colorSchemesInput.light, {
9828
9828
  palette: lightPalette,
9829
- opacity: _extends$v({
9829
+ opacity: _extends$19({
9830
9830
  inputPlaceholder: 0.42,
9831
9831
  inputUnderline: 0.42,
9832
9832
  switchTrackDisabled: 0.12,
@@ -9834,9 +9834,9 @@ function extendTheme(options = {}, ...args) {
9834
9834
  }, (_colorSchemesInput$li2 = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li2.opacity),
9835
9835
  overlays: ((_colorSchemesInput$li3 = colorSchemesInput.light) == null ? void 0 : _colorSchemesInput$li3.overlays) || []
9836
9836
  }),
9837
- dark: _extends$v({}, colorSchemesInput.dark, {
9837
+ dark: _extends$19({}, colorSchemesInput.dark, {
9838
9838
  palette: darkPalette,
9839
- opacity: _extends$v({
9839
+ opacity: _extends$19({
9840
9840
  inputPlaceholder: 0.5,
9841
9841
  inputUnderline: 0.7,
9842
9842
  switchTrackDisabled: 0.2,
@@ -10044,7 +10044,7 @@ createCssVarsProvider({
10044
10044
  dark: 'dark'
10045
10045
  },
10046
10046
  resolveTheme: theme => {
10047
- const newTheme = _extends$v({}, theme, {
10047
+ const newTheme = _extends$19({}, theme, {
10048
10048
  typography: createTypography(theme.palette, theme.typography)
10049
10049
  });
10050
10050
  return newTheme;
@@ -10149,7 +10149,7 @@ const TypographyRoot = styled('span', {
10149
10149
  })(({
10150
10150
  theme,
10151
10151
  ownerState
10152
- }) => _extends$v({
10152
+ }) => _extends$19({
10153
10153
  margin: 0
10154
10154
  }, ownerState.variant && theme.typography[ownerState.variant], ownerState.align !== 'inherit' && {
10155
10155
  textAlign: ownerState.align
@@ -10193,7 +10193,7 @@ const Typography = /*#__PURE__*/React__namespace.forwardRef(function Typography(
10193
10193
  name: 'MuiTypography'
10194
10194
  });
10195
10195
  const color = transformDeprecatedColors(themeProps.color);
10196
- const props = extendSxProp(_extends$v({}, themeProps, {
10196
+ const props = extendSxProp(_extends$19({}, themeProps, {
10197
10197
  color
10198
10198
  }));
10199
10199
  const {
@@ -10207,7 +10207,7 @@ const Typography = /*#__PURE__*/React__namespace.forwardRef(function Typography(
10207
10207
  variantMapping = defaultVariantMapping
10208
10208
  } = props,
10209
10209
  other = _objectWithoutPropertiesLoose(props, _excluded$3);
10210
- const ownerState = _extends$v({}, props, {
10210
+ const ownerState = _extends$19({}, props, {
10211
10211
  align,
10212
10212
  color,
10213
10213
  className,
@@ -10220,7 +10220,7 @@ const Typography = /*#__PURE__*/React__namespace.forwardRef(function Typography(
10220
10220
  });
10221
10221
  const Component = component || (paragraph ? 'p' : variantMapping[variant] || defaultVariantMapping[variant]) || 'span';
10222
10222
  const classes = useUtilityClasses$2(ownerState);
10223
- return /*#__PURE__*/jsxRuntime.exports.jsx(TypographyRoot, _extends$v({
10223
+ return /*#__PURE__*/jsxRuntime.exports.jsx(TypographyRoot, _extends$19({
10224
10224
  as: Component,
10225
10225
  ref: ref,
10226
10226
  ownerState: ownerState,
@@ -11496,7 +11496,7 @@ var CSSTransition = /*#__PURE__*/function (_React$Component) {
11496
11496
  _this$props.classNames;
11497
11497
  var props = _objectWithoutPropertiesLoose(_this$props, ["classNames"]);
11498
11498
 
11499
- return /*#__PURE__*/React.createElement(Transition, _extends$v({}, props, {
11499
+ return /*#__PURE__*/React.createElement(Transition, _extends$19({}, props, {
11500
11500
  onEnter: this.onEnter,
11501
11501
  onEntered: this.onEntered,
11502
11502
  onEntering: this.onEntering,
@@ -11512,7 +11512,7 @@ var CSSTransition = /*#__PURE__*/function (_React$Component) {
11512
11512
  CSSTransition.defaultProps = {
11513
11513
  classNames: ''
11514
11514
  };
11515
- CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? _extends$v({}, Transition.propTypes, {
11515
+ CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? _extends$19({}, Transition.propTypes, {
11516
11516
  /**
11517
11517
  * The animation classNames applied to the component as it appears, enters,
11518
11518
  * exits or has finished the transition. A single name can be provided, which
@@ -11874,7 +11874,7 @@ var TransitionGroup = /*#__PURE__*/function (_React$Component) {
11874
11874
 
11875
11875
  if (this.mounted) {
11876
11876
  this.setState(function (state) {
11877
- var children = _extends$v({}, state.children);
11877
+ var children = _extends$19({}, state.children);
11878
11878
 
11879
11879
  delete children[child.key];
11880
11880
  return {
@@ -12726,7 +12726,7 @@ const TouchRipple = /*#__PURE__*/React__namespace.forwardRef(function TouchRippl
12726
12726
  start,
12727
12727
  stop
12728
12728
  }), [pulsate, start, stop]);
12729
- return /*#__PURE__*/jsxRuntime.exports.jsx(TouchRippleRoot, _extends$v({
12729
+ return /*#__PURE__*/jsxRuntime.exports.jsx(TouchRippleRoot, _extends$19({
12730
12730
  className: clsx(touchRippleClasses.root, classes.root, className),
12731
12731
  ref: container
12732
12732
  }, other, {
@@ -13018,7 +13018,7 @@ const ButtonBase = /*#__PURE__*/React__namespace.forwardRef(function ButtonBase(
13018
13018
  }
13019
13019
  }, [enableTouchRipple]);
13020
13020
  }
13021
- const ownerState = _extends$v({}, props, {
13021
+ const ownerState = _extends$19({}, props, {
13022
13022
  centerRipple,
13023
13023
  component,
13024
13024
  disabled,
@@ -13029,7 +13029,7 @@ const ButtonBase = /*#__PURE__*/React__namespace.forwardRef(function ButtonBase(
13029
13029
  focusVisible
13030
13030
  });
13031
13031
  const classes = useUtilityClasses$1(ownerState);
13032
- return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonBaseRoot, _extends$v({
13032
+ return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonBaseRoot, _extends$19({
13033
13033
  as: ComponentProp,
13034
13034
  className: clsx(classes.root, className),
13035
13035
  ownerState: ownerState,
@@ -13053,7 +13053,7 @@ const ButtonBase = /*#__PURE__*/React__namespace.forwardRef(function ButtonBase(
13053
13053
  children: [children, enableTouchRipple ?
13054
13054
  /*#__PURE__*/
13055
13055
  /* TouchRipple is only needed client-side, x2 boost on the server. */
13056
- jsxRuntime.exports.jsx(TouchRipple, _extends$v({
13056
+ jsxRuntime.exports.jsx(TouchRipple, _extends$19({
13057
13057
  ref: handleRippleRef,
13058
13058
  center: centerRipple
13059
13059
  }, TouchRippleProps)) : null]
@@ -13248,9 +13248,9 @@ const useUtilityClasses = ownerState => {
13248
13248
  endIcon: ['endIcon', `iconSize${capitalize(size)}`]
13249
13249
  };
13250
13250
  const composedClasses = composeClasses(slots, getButtonUtilityClass, classes);
13251
- return _extends$v({}, classes, composedClasses);
13251
+ return _extends$19({}, classes, composedClasses);
13252
13252
  };
13253
- const commonIconStyles = ownerState => _extends$v({}, ownerState.size === 'small' && {
13253
+ const commonIconStyles = ownerState => _extends$19({}, ownerState.size === 'small' && {
13254
13254
  '& > *:nth-of-type(1)': {
13255
13255
  fontSize: 18
13256
13256
  }
@@ -13278,14 +13278,14 @@ const ButtonRoot = styled(ButtonBase, {
13278
13278
  ownerState
13279
13279
  }) => {
13280
13280
  var _theme$palette$getCon, _theme$palette;
13281
- return _extends$v({}, theme.typography.button, {
13281
+ return _extends$19({}, theme.typography.button, {
13282
13282
  minWidth: 64,
13283
13283
  padding: '6px 16px',
13284
13284
  borderRadius: (theme.vars || theme).shape.borderRadius,
13285
13285
  transition: theme.transitions.create(['background-color', 'box-shadow', 'border-color', 'color'], {
13286
13286
  duration: theme.transitions.duration.short
13287
13287
  }),
13288
- '&:hover': _extends$v({
13288
+ '&:hover': _extends$19({
13289
13289
  textDecoration: 'none',
13290
13290
  backgroundColor: theme.vars ? `rgba(${theme.vars.palette.text.primaryChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette.text.primary, theme.palette.action.hoverOpacity),
13291
13291
  // Reset on touch devices, it doesn't add specificity
@@ -13320,13 +13320,13 @@ const ButtonRoot = styled(ButtonBase, {
13320
13320
  backgroundColor: (theme.vars || theme).palette[ownerState.color].main
13321
13321
  }
13322
13322
  }),
13323
- '&:active': _extends$v({}, ownerState.variant === 'contained' && {
13323
+ '&:active': _extends$19({}, ownerState.variant === 'contained' && {
13324
13324
  boxShadow: (theme.vars || theme).shadows[8]
13325
13325
  }),
13326
- [`&.${buttonClasses.focusVisible}`]: _extends$v({}, ownerState.variant === 'contained' && {
13326
+ [`&.${buttonClasses.focusVisible}`]: _extends$19({}, ownerState.variant === 'contained' && {
13327
13327
  boxShadow: (theme.vars || theme).shadows[6]
13328
13328
  }),
13329
- [`&.${buttonClasses.disabled}`]: _extends$v({
13329
+ [`&.${buttonClasses.disabled}`]: _extends$19({
13330
13330
  color: (theme.vars || theme).palette.action.disabled
13331
13331
  }, ownerState.variant === 'outlined' && {
13332
13332
  border: `1px solid ${(theme.vars || theme).palette.action.disabledBackground}`
@@ -13408,7 +13408,7 @@ const ButtonStartIcon = styled('span', {
13408
13408
  }
13409
13409
  })(({
13410
13410
  ownerState
13411
- }) => _extends$v({
13411
+ }) => _extends$19({
13412
13412
  display: 'inherit',
13413
13413
  marginRight: 8,
13414
13414
  marginLeft: -4
@@ -13426,7 +13426,7 @@ const ButtonEndIcon = styled('span', {
13426
13426
  }
13427
13427
  })(({
13428
13428
  ownerState
13429
- }) => _extends$v({
13429
+ }) => _extends$19({
13430
13430
  display: 'inherit',
13431
13431
  marginRight: -4,
13432
13432
  marginLeft: 8
@@ -13458,7 +13458,7 @@ const Button = /*#__PURE__*/React__namespace.forwardRef(function Button(inProps,
13458
13458
  variant = 'text'
13459
13459
  } = props,
13460
13460
  other = _objectWithoutPropertiesLoose(props, _excluded);
13461
- const ownerState = _extends$v({}, props, {
13461
+ const ownerState = _extends$19({}, props, {
13462
13462
  color,
13463
13463
  component,
13464
13464
  disabled,
@@ -13480,7 +13480,7 @@ const Button = /*#__PURE__*/React__namespace.forwardRef(function Button(inProps,
13480
13480
  ownerState: ownerState,
13481
13481
  children: endIconProp
13482
13482
  });
13483
- return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonRoot, _extends$v({
13483
+ return /*#__PURE__*/jsxRuntime.exports.jsxs(ButtonRoot, _extends$19({
13484
13484
  ownerState: ownerState,
13485
13485
  className: clsx(contextProps.className, classes.root, className),
13486
13486
  component: component,
@@ -13827,14 +13827,14 @@ var CustomButtonComponent = function (_a) {
13827
13827
  return (jsxRuntime.exports.jsx(CustomButton, __assign({ disabled: disabled, onClick: onClick, className: finalClassName, fluid: fluid, variant: "contained", disableRipple: true, ref: forwardedRef }, props, { children: text })));
13828
13828
  };
13829
13829
 
13830
- var _g$r;
13831
- 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); }
13830
+ var _g$W;
13831
+ 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); }
13832
13832
  var SvgIluAvailabilityByItem = function SvgIluAvailabilityByItem(props) {
13833
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$t({
13833
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$17({
13834
13834
  xmlns: "http://www.w3.org/2000/svg",
13835
13835
  width: 170,
13836
13836
  height: 170
13837
- }, props), _g$r || (_g$r = /*#__PURE__*/React__namespace.createElement("g", {
13837
+ }, props), _g$W || (_g$W = /*#__PURE__*/React__namespace.createElement("g", {
13838
13838
  "data-name": "ilu_availability-by-item_1"
13839
13839
  }, /*#__PURE__*/React__namespace.createElement("g", {
13840
13840
  "data-name": "ilu_availability-by-item_3"
@@ -14784,21 +14784,21 @@ var SvgIluAvailabilityByItem = function SvgIluAvailabilityByItem(props) {
14784
14784
  }))));
14785
14785
  };
14786
14786
 
14787
- var _defs$o, _g$q, _g2$9, _path$o;
14788
- 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); }
14787
+ var _defs$p, _g$V, _g2$a, _path$F;
14788
+ 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); }
14789
14789
  var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
14790
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$s({
14790
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$16({
14791
14791
  xmlns: "http://www.w3.org/2000/svg",
14792
14792
  width: 170,
14793
14793
  height: 170
14794
- }, props), _defs$o || (_defs$o = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
14794
+ }, props), _defs$p || (_defs$p = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
14795
14795
  id: "ilu_add-goods-to-pallet_svg__a"
14796
14796
  }, /*#__PURE__*/React__namespace.createElement("path", {
14797
14797
  "data-name": "Path 84842",
14798
14798
  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",
14799
14799
  transform: "translate(-17.433 -30.423)",
14800
14800
  fill: "none"
14801
- })))), _g$q || (_g$q = /*#__PURE__*/React__namespace.createElement("g", {
14801
+ })))), _g$V || (_g$V = /*#__PURE__*/React__namespace.createElement("g", {
14802
14802
  "data-name": "Group 44661"
14803
14803
  }, /*#__PURE__*/React__namespace.createElement("path", {
14804
14804
  "data-name": "Path 84837",
@@ -14808,7 +14808,7 @@ var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
14808
14808
  "data-name": "Path 84838",
14809
14809
  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",
14810
14810
  fill: "#cbcbcb"
14811
- }))), _g2$9 || (_g2$9 = /*#__PURE__*/React__namespace.createElement("g", {
14811
+ }))), _g2$a || (_g2$a = /*#__PURE__*/React__namespace.createElement("g", {
14812
14812
  "data-name": "Group 44674"
14813
14813
  }, /*#__PURE__*/React__namespace.createElement("g", {
14814
14814
  "data-name": "Group 44673",
@@ -15021,28 +15021,28 @@ var SvgIluAddGoodsToPallet = function SvgIluAddGoodsToPallet(props) {
15021
15021
  "data-name": "Rectangle 21223",
15022
15022
  fill: "#e42127",
15023
15023
  d: "M103.313 101.233v13.906h-3.459v-13.906z"
15024
- })))), _path$o || (_path$o = /*#__PURE__*/React__namespace.createElement("path", {
15024
+ })))), _path$F || (_path$F = /*#__PURE__*/React__namespace.createElement("path", {
15025
15025
  "data-name": "Rectangle 21224",
15026
15026
  fill: "none",
15027
15027
  d: "M0 0h170v170H0z"
15028
15028
  })));
15029
15029
  };
15030
15030
 
15031
- var _defs$n, _g$p, _path$n;
15032
- 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); }
15031
+ var _defs$o, _g$U, _path$E;
15032
+ 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); }
15033
15033
  var SvgIluAvailabilityByIndex = function SvgIluAvailabilityByIndex(props) {
15034
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$r({
15034
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$15({
15035
15035
  xmlns: "http://www.w3.org/2000/svg",
15036
15036
  width: 170,
15037
15037
  height: 170
15038
- }, props), _defs$n || (_defs$n = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
15038
+ }, props), _defs$o || (_defs$o = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
15039
15039
  id: "ilu_availability-by-index_svg__a"
15040
15040
  }, /*#__PURE__*/React__namespace.createElement("path", {
15041
15041
  "data-name": "Path 85163",
15042
15042
  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",
15043
15043
  transform: "translate(-17.433 -30.423)",
15044
15044
  fill: "none"
15045
- })))), _g$p || (_g$p = /*#__PURE__*/React__namespace.createElement("g", {
15045
+ })))), _g$U || (_g$U = /*#__PURE__*/React__namespace.createElement("g", {
15046
15046
  "data-name": "Group 46266",
15047
15047
  clipPath: "url(#ilu_availability-by-index_svg__a)",
15048
15048
  transform: "translate(7.637 13.141)"
@@ -15807,27 +15807,27 @@ var SvgIluAvailabilityByIndex = function SvgIluAvailabilityByIndex(props) {
15807
15807
  "data-name": "Rectangle 21792",
15808
15808
  fill: "#5d5d5c",
15809
15809
  d: "M108.08 85.336h2.119v3.459h-2.119z"
15810
- }))))), _path$n || (_path$n = /*#__PURE__*/React__namespace.createElement("path", {
15810
+ }))))), _path$E || (_path$E = /*#__PURE__*/React__namespace.createElement("path", {
15811
15811
  "data-name": "Rectangle 21793",
15812
15812
  fill: "none",
15813
15813
  d: "M0 0h170v170H0z"
15814
15814
  })));
15815
15815
  };
15816
15816
 
15817
- var _g$o, _g2$8, _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$m;
15818
- 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); }
15817
+ 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;
15818
+ 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); }
15819
15819
  var SvgIluAvailabilityByLocation = function SvgIluAvailabilityByLocation(props) {
15820
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$q({
15820
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$14({
15821
15821
  xmlns: "http://www.w3.org/2000/svg",
15822
15822
  width: 170,
15823
15823
  height: 170
15824
- }, props), _g$o || (_g$o = /*#__PURE__*/React__namespace.createElement("g", {
15824
+ }, props), _g$T || (_g$T = /*#__PURE__*/React__namespace.createElement("g", {
15825
15825
  "data-name": "Group 45606"
15826
15826
  }, /*#__PURE__*/React__namespace.createElement("path", {
15827
15827
  "data-name": "Path 85086",
15828
15828
  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",
15829
15829
  fill: "#dfdfdf"
15830
- }))), _g2$8 || (_g2$8 = /*#__PURE__*/React__namespace.createElement("g", {
15830
+ }))), _g2$9 || (_g2$9 = /*#__PURE__*/React__namespace.createElement("g", {
15831
15831
  "data-name": "Group 45607"
15832
15832
  }, /*#__PURE__*/React__namespace.createElement("path", {
15833
15833
  "data-name": "Rectangle 21670",
@@ -16622,21 +16622,21 @@ var SvgIluAvailabilityByLocation = function SvgIluAvailabilityByLocation(props)
16622
16622
  "data-name": "Rectangle 21693",
16623
16623
  fill: "#b7b7b7",
16624
16624
  d: "M132.487 131.44h.43v9.642h-.43z"
16625
- }))), _path$m || (_path$m = /*#__PURE__*/React__namespace.createElement("path", {
16625
+ }))), _path$D || (_path$D = /*#__PURE__*/React__namespace.createElement("path", {
16626
16626
  "data-name": "Rectangle 21694",
16627
16627
  fill: "none",
16628
16628
  d: "M0 0h170v170H0z"
16629
16629
  })));
16630
16630
  };
16631
16631
 
16632
- var _defs$m, _g$n, _path$l;
16633
- 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); }
16632
+ var _defs$n, _g$S, _path$C;
16633
+ 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); }
16634
16634
  var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
16635
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$p({
16635
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$13({
16636
16636
  xmlns: "http://www.w3.org/2000/svg",
16637
16637
  width: 138,
16638
16638
  height: 138
16639
- }, props), _defs$m || (_defs$m = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
16639
+ }, props), _defs$n || (_defs$n = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
16640
16640
  id: "ilu_blocked-pallet_svg__a"
16641
16641
  }, /*#__PURE__*/React__namespace.createElement("path", {
16642
16642
  "data-name": "Rectangle 22236",
@@ -16667,7 +16667,7 @@ var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
16667
16667
  "data-name": "Rectangle 22231",
16668
16668
  fill: "none",
16669
16669
  d: "M0 0h24.344v22.984H0z"
16670
- })))), _g$n || (_g$n = /*#__PURE__*/React__namespace.createElement("g", {
16670
+ })))), _g$S || (_g$S = /*#__PURE__*/React__namespace.createElement("g", {
16671
16671
  clipPath: "url(#ilu_blocked-pallet_svg__a)",
16672
16672
  transform: "translate(.047 .047)"
16673
16673
  }, /*#__PURE__*/React__namespace.createElement("g", {
@@ -16987,28 +16987,28 @@ var SvgIluBlockedPallet = function SvgIluBlockedPallet(props) {
16987
16987
  "data-name": "Rectangle 22234",
16988
16988
  fill: "#b70000",
16989
16989
  d: "M81.618 30.959h5.597v2.814h-5.597z"
16990
- })))), _path$l || (_path$l = /*#__PURE__*/React__namespace.createElement("path", {
16990
+ })))), _path$C || (_path$C = /*#__PURE__*/React__namespace.createElement("path", {
16991
16991
  "data-name": "Rectangle 22917",
16992
16992
  fill: "none",
16993
16993
  d: "M1 1h137v137H1z"
16994
16994
  })));
16995
16995
  };
16996
16996
 
16997
- var _defs$l, _g$m, _path$k;
16998
- 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); }
16997
+ var _defs$m, _g$R, _path$B;
16998
+ 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); }
16999
16999
  var SvgIluFinishedProduct = function SvgIluFinishedProduct(props) {
17000
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$o({
17000
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$12({
17001
17001
  xmlns: "http://www.w3.org/2000/svg",
17002
17002
  width: 170,
17003
17003
  height: 170
17004
- }, props), _defs$l || (_defs$l = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17004
+ }, props), _defs$m || (_defs$m = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17005
17005
  id: "ilu_finished-product_svg__a"
17006
17006
  }, /*#__PURE__*/React__namespace.createElement("path", {
17007
17007
  "data-name": "Path 85400",
17008
17008
  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",
17009
17009
  transform: "translate(-25.071 -30.38)",
17010
17010
  fill: "none"
17011
- })))), _g$m || (_g$m = /*#__PURE__*/React__namespace.createElement("g", {
17011
+ })))), _g$R || (_g$R = /*#__PURE__*/React__namespace.createElement("g", {
17012
17012
  transform: "translate(6.21 13.01)",
17013
17013
  clipPath: "url(#ilu_finished-product_svg__a)"
17014
17014
  }, /*#__PURE__*/React__namespace.createElement("path", {
@@ -17239,28 +17239,28 @@ var SvgIluFinishedProduct = function SvgIluFinishedProduct(props) {
17239
17239
  "data-name": "Path 85399",
17240
17240
  d: "M137.421 110.551a.48.48 0 1 1 .393.5.453.453 0 0 1-.393-.5",
17241
17241
  fill: "#5d5d5c"
17242
- }))), _path$k || (_path$k = /*#__PURE__*/React__namespace.createElement("path", {
17242
+ }))), _path$B || (_path$B = /*#__PURE__*/React__namespace.createElement("path", {
17243
17243
  "data-name": "Rectangle 22211",
17244
17244
  fill: "none",
17245
17245
  d: "M0 0h170v170H0z"
17246
17246
  })));
17247
17247
  };
17248
17248
 
17249
- var _defs$k, _g$l;
17250
- 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); }
17249
+ var _defs$l, _g$Q;
17250
+ 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); }
17251
17251
  var SvgIluFromPalletToRack = function SvgIluFromPalletToRack(props) {
17252
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$n({
17252
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$11({
17253
17253
  xmlns: "http://www.w3.org/2000/svg",
17254
17254
  width: 170,
17255
17255
  height: 170
17256
- }, props), _defs$k || (_defs$k = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17256
+ }, props), _defs$l || (_defs$l = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17257
17257
  id: "ilu_from-pallet-to-rack_svg__a"
17258
17258
  }, /*#__PURE__*/React__namespace.createElement("path", {
17259
17259
  "data-name": "Path 84914",
17260
17260
  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",
17261
17261
  transform: "translate(-17.433 -30.568)",
17262
17262
  fill: "none"
17263
- })))), _g$l || (_g$l = /*#__PURE__*/React__namespace.createElement("g", {
17263
+ })))), _g$Q || (_g$Q = /*#__PURE__*/React__namespace.createElement("g", {
17264
17264
  "data-name": "ilu_from-pallet-to-rack"
17265
17265
  }, /*#__PURE__*/React__namespace.createElement("g", {
17266
17266
  "data-name": "ilu_from-pallet-to-rack"
@@ -17755,21 +17755,21 @@ var SvgIluFromPalletToRack = function SvgIluFromPalletToRack(props) {
17755
17755
  }))));
17756
17756
  };
17757
17757
 
17758
- var _defs$j, _g$k, _path$j;
17759
- 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); }
17758
+ var _defs$k, _g$P, _path$A;
17759
+ 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); }
17760
17760
  var SvgIluInternalLogistic = function SvgIluInternalLogistic(props) {
17761
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$m({
17761
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$10({
17762
17762
  xmlns: "http://www.w3.org/2000/svg",
17763
17763
  width: 170,
17764
17764
  height: 170
17765
- }, props), _defs$j || (_defs$j = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17765
+ }, props), _defs$k || (_defs$k = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
17766
17766
  id: "ilu_internal-logistic_svg__a"
17767
17767
  }, /*#__PURE__*/React__namespace.createElement("path", {
17768
17768
  "data-name": "Path 85203",
17769
17769
  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",
17770
17770
  transform: "translate(-17.433 -30.423)",
17771
17771
  fill: "none"
17772
- })))), _g$k || (_g$k = /*#__PURE__*/React__namespace.createElement("g", {
17772
+ })))), _g$P || (_g$P = /*#__PURE__*/React__namespace.createElement("g", {
17773
17773
  "data-name": "Group 46399"
17774
17774
  }, /*#__PURE__*/React__namespace.createElement("g", {
17775
17775
  "data-name": "Group 46398",
@@ -18200,28 +18200,28 @@ var SvgIluInternalLogistic = function SvgIluInternalLogistic(props) {
18200
18200
  "data-name": "Rectangle 21843",
18201
18201
  fill: "#fff",
18202
18202
  d: "M25.589 51.136h3.444v3.402h-3.444z"
18203
- })))), _path$j || (_path$j = /*#__PURE__*/React__namespace.createElement("path", {
18203
+ })))), _path$A || (_path$A = /*#__PURE__*/React__namespace.createElement("path", {
18204
18204
  "data-name": "Rectangle 21819",
18205
18205
  fill: "none",
18206
18206
  d: "M0 0h170v170H0z"
18207
18207
  })));
18208
18208
  };
18209
18209
 
18210
- var _defs$i, _g$j, _path$i;
18211
- 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); }
18210
+ var _defs$j, _g$O, _path$z;
18211
+ 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); }
18212
18212
  var SvgIluInventory = function SvgIluInventory(props) {
18213
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$l({
18213
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$$({
18214
18214
  xmlns: "http://www.w3.org/2000/svg",
18215
18215
  width: 170,
18216
18216
  height: 170
18217
- }, props), _defs$i || (_defs$i = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
18217
+ }, props), _defs$j || (_defs$j = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
18218
18218
  id: "ilu_inventory_svg__a"
18219
18219
  }, /*#__PURE__*/React__namespace.createElement("path", {
18220
18220
  "data-name": "Path 84958",
18221
18221
  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",
18222
18222
  transform: "translate(-16.67 -30.423)",
18223
18223
  fill: "none"
18224
- })))), _g$j || (_g$j = /*#__PURE__*/React__namespace.createElement("g", {
18224
+ })))), _g$O || (_g$O = /*#__PURE__*/React__namespace.createElement("g", {
18225
18225
  "data-name": "Group 45104"
18226
18226
  }, /*#__PURE__*/React__namespace.createElement("g", {
18227
18227
  "data-name": "Group 45103"
@@ -19108,34 +19108,34 @@ var SvgIluInventory = function SvgIluInventory(props) {
19108
19108
  "data-name": "Path 84957",
19109
19109
  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",
19110
19110
  fill: "#e0e0e0"
19111
- }))))))), _path$i || (_path$i = /*#__PURE__*/React__namespace.createElement("path", {
19111
+ }))))))), _path$z || (_path$z = /*#__PURE__*/React__namespace.createElement("path", {
19112
19112
  "data-name": "Rectangle 21469",
19113
19113
  fill: "none",
19114
19114
  d: "M0 0h170v170H0z"
19115
19115
  })));
19116
19116
  };
19117
19117
 
19118
- var _defs$h, _g$i, _g2$7, _g3$3, _path$h;
19119
- 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); }
19118
+ var _defs$i, _g$N, _g2$8, _g3$3, _path$y;
19119
+ 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); }
19120
19120
  var SvgIluInventoryTransfer = function SvgIluInventoryTransfer(props) {
19121
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$k({
19121
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$_({
19122
19122
  xmlns: "http://www.w3.org/2000/svg",
19123
19123
  width: 170,
19124
19124
  height: 170
19125
- }, props), _defs$h || (_defs$h = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19125
+ }, props), _defs$i || (_defs$i = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19126
19126
  id: "ilu_inventory-transfer_svg__a"
19127
19127
  }, /*#__PURE__*/React__namespace.createElement("path", {
19128
19128
  "data-name": "Path 85128",
19129
19129
  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",
19130
19130
  transform: "translate(-18.383 -30.423)",
19131
19131
  fill: "none"
19132
- })))), _g$i || (_g$i = /*#__PURE__*/React__namespace.createElement("g", {
19132
+ })))), _g$N || (_g$N = /*#__PURE__*/React__namespace.createElement("g", {
19133
19133
  "data-name": "Group 45904"
19134
19134
  }, /*#__PURE__*/React__namespace.createElement("path", {
19135
19135
  "data-name": "Path 85125",
19136
19136
  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",
19137
19137
  fill: "#e0e0e0"
19138
- }))), _g2$7 || (_g2$7 = /*#__PURE__*/React__namespace.createElement("g", {
19138
+ }))), _g2$8 || (_g2$8 = /*#__PURE__*/React__namespace.createElement("g", {
19139
19139
  "data-name": "Group 45905"
19140
19140
  }, /*#__PURE__*/React__namespace.createElement("path", {
19141
19141
  "data-name": "Path 85126",
@@ -19315,28 +19315,28 @@ var SvgIluInventoryTransfer = function SvgIluInventoryTransfer(props) {
19315
19315
  }), /*#__PURE__*/React__namespace.createElement("path", {
19316
19316
  "data-name": "Rectangle 21742",
19317
19317
  d: "M92.098 53.128h5.083v2.754h-5.083z"
19318
- }))))), _path$h || (_path$h = /*#__PURE__*/React__namespace.createElement("path", {
19318
+ }))))), _path$y || (_path$y = /*#__PURE__*/React__namespace.createElement("path", {
19319
19319
  "data-name": "Rectangle 21743",
19320
19320
  fill: "none",
19321
19321
  d: "M0 0h170v170H0z"
19322
19322
  })));
19323
19323
  };
19324
19324
 
19325
- var _defs$g, _g$h, _path$g;
19326
- 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); }
19325
+ var _defs$h, _g$M, _path$x;
19326
+ 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); }
19327
19327
  var SvgIluLabelingOfPallets = function SvgIluLabelingOfPallets(props) {
19328
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$j({
19328
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$Z({
19329
19329
  xmlns: "http://www.w3.org/2000/svg",
19330
19330
  width: 170,
19331
19331
  height: 170
19332
- }, props), _defs$g || (_defs$g = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19332
+ }, props), _defs$h || (_defs$h = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19333
19333
  id: "ilu_labeling-of-pallets_svg__a"
19334
19334
  }, /*#__PURE__*/React__namespace.createElement("path", {
19335
19335
  "data-name": "Path 84989",
19336
19336
  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",
19337
19337
  transform: "translate(-17.433 -30.423)",
19338
19338
  fill: "none"
19339
- })))), _g$h || (_g$h = /*#__PURE__*/React__namespace.createElement("g", {
19339
+ })))), _g$M || (_g$M = /*#__PURE__*/React__namespace.createElement("g", {
19340
19340
  "data-name": "Group 45194"
19341
19341
  }, /*#__PURE__*/React__namespace.createElement("g", {
19342
19342
  "data-name": "Group 45139"
@@ -19650,28 +19650,28 @@ var SvgIluLabelingOfPallets = function SvgIluLabelingOfPallets(props) {
19650
19650
  "data-name": "Path 84988",
19651
19651
  d: "M49.359 52.717h-22.6l.157-.106 22.443-12.11Z",
19652
19652
  fill: "#a8a8a8"
19653
- })))))), _path$g || (_path$g = /*#__PURE__*/React__namespace.createElement("path", {
19653
+ })))))), _path$x || (_path$x = /*#__PURE__*/React__namespace.createElement("path", {
19654
19654
  "data-name": "Rectangle 21512",
19655
19655
  fill: "none",
19656
19656
  d: "M0 0h170v170H0z"
19657
19657
  })));
19658
19658
  };
19659
19659
 
19660
- var _defs$f, _g$g, _path$f;
19661
- 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); }
19660
+ var _defs$g, _g$L, _path$w;
19661
+ 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); }
19662
19662
  var SvgIluLoadingCar = function SvgIluLoadingCar(props) {
19663
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$i({
19663
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$Y({
19664
19664
  xmlns: "http://www.w3.org/2000/svg",
19665
19665
  width: 170,
19666
19666
  height: 170
19667
- }, props), _defs$f || (_defs$f = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19667
+ }, props), _defs$g || (_defs$g = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
19668
19668
  id: "ilu_loading-car_svg__a"
19669
19669
  }, /*#__PURE__*/React__namespace.createElement("path", {
19670
19670
  "data-name": "Path 85215",
19671
19671
  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",
19672
19672
  transform: "translate(-18.383 -30.423)",
19673
19673
  fill: "none"
19674
- })))), _g$g || (_g$g = /*#__PURE__*/React__namespace.createElement("g", {
19674
+ })))), _g$L || (_g$L = /*#__PURE__*/React__namespace.createElement("g", {
19675
19675
  "data-name": "Group 46461"
19676
19676
  }, /*#__PURE__*/React__namespace.createElement("g", {
19677
19677
  "data-name": "Group 46460",
@@ -20031,21 +20031,21 @@ var SvgIluLoadingCar = function SvgIluLoadingCar(props) {
20031
20031
  "data-name": "Rectangle 21879",
20032
20032
  d: "M99.766 59.87h-6.992V42.582h5.492a1.5 1.5 0 0 1 1.5 1.5V59.87Z",
20033
20033
  fill: "#e42127"
20034
- }))))), _path$f || (_path$f = /*#__PURE__*/React__namespace.createElement("path", {
20034
+ }))))), _path$w || (_path$w = /*#__PURE__*/React__namespace.createElement("path", {
20035
20035
  "data-name": "Rectangle 21880",
20036
20036
  fill: "none",
20037
20037
  d: "M0 0h170v170H0z"
20038
20038
  })));
20039
20039
  };
20040
20040
 
20041
- var _g$f, _path$e;
20042
- 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); }
20041
+ var _g$K, _path$v;
20042
+ 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); }
20043
20043
  var SvgIluManualTransfer = function SvgIluManualTransfer(props) {
20044
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$h({
20044
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$X({
20045
20045
  xmlns: "http://www.w3.org/2000/svg",
20046
20046
  width: 170,
20047
20047
  height: 170
20048
- }, props), _g$f || (_g$f = /*#__PURE__*/React__namespace.createElement("g", {
20048
+ }, props), _g$K || (_g$K = /*#__PURE__*/React__namespace.createElement("g", {
20049
20049
  transform: "translate(9.215 12.933)"
20050
20050
  }, /*#__PURE__*/React__namespace.createElement("path", {
20051
20051
  "data-name": "Path 84771",
@@ -20688,28 +20688,28 @@ var SvgIluManualTransfer = function SvgIluManualTransfer(props) {
20688
20688
  "data-name": "Rectangle 21045",
20689
20689
  fill: "#fff",
20690
20690
  d: "M25.251 97.218h3.455v3.454h-3.455z"
20691
- }))), _path$e || (_path$e = /*#__PURE__*/React__namespace.createElement("path", {
20691
+ }))), _path$v || (_path$v = /*#__PURE__*/React__namespace.createElement("path", {
20692
20692
  "data-name": "Rectangle 21009",
20693
20693
  fill: "none",
20694
20694
  d: "M0 0h170v170H0z"
20695
20695
  })));
20696
20696
  };
20697
20697
 
20698
- var _defs$e, _g$e, _g2$6, _path$d;
20699
- 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); }
20698
+ var _defs$f, _g$J, _g2$7, _path$u;
20699
+ 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); }
20700
20700
  var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAnother(props) {
20701
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$g({
20701
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$W({
20702
20702
  xmlns: "http://www.w3.org/2000/svg",
20703
20703
  width: 170,
20704
20704
  height: 170
20705
- }, props), _defs$e || (_defs$e = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
20705
+ }, props), _defs$f || (_defs$f = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
20706
20706
  id: "ilu_move-goods-from-pallet-to-another_svg__a"
20707
20707
  }, /*#__PURE__*/React__namespace.createElement("path", {
20708
20708
  "data-name": "Path 84876",
20709
20709
  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",
20710
20710
  transform: "translate(-17.433 -30.423)",
20711
20711
  fill: "none"
20712
- })))), _g$e || (_g$e = /*#__PURE__*/React__namespace.createElement("g", {
20712
+ })))), _g$J || (_g$J = /*#__PURE__*/React__namespace.createElement("g", {
20713
20713
  "data-name": "Group 44723"
20714
20714
  }, /*#__PURE__*/React__namespace.createElement("path", {
20715
20715
  "data-name": "Path 84869",
@@ -20719,7 +20719,7 @@ var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAno
20719
20719
  "data-name": "Path 84870",
20720
20720
  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",
20721
20721
  fill: "#cbcbcb"
20722
- }))), _g2$6 || (_g2$6 = /*#__PURE__*/React__namespace.createElement("g", {
20722
+ }))), _g2$7 || (_g2$7 = /*#__PURE__*/React__namespace.createElement("g", {
20723
20723
  "data-name": "Group 44778"
20724
20724
  }, /*#__PURE__*/React__namespace.createElement("g", {
20725
20725
  "data-name": "Group 44777",
@@ -21045,28 +21045,28 @@ var SvgIluMoveGoodsFromPalletToAnother = function SvgIluMoveGoodsFromPalletToAno
21045
21045
  "data-name": "Rectangle 21342",
21046
21046
  fill: "#e42127",
21047
21047
  d: "M116.972 101.133v13.893h-3.456v-13.893z"
21048
- }))))), _path$d || (_path$d = /*#__PURE__*/React__namespace.createElement("path", {
21048
+ }))))), _path$u || (_path$u = /*#__PURE__*/React__namespace.createElement("path", {
21049
21049
  "data-name": "Rectangle 21343",
21050
21050
  fill: "none",
21051
21051
  d: "M0 0h170v170H0z"
21052
21052
  })));
21053
21053
  };
21054
21054
 
21055
- var _defs$d, _g$d, _g2$5, _path$c;
21056
- 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); }
21055
+ var _defs$e, _g$I, _g2$6, _path$t;
21056
+ 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); }
21057
21057
  var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
21058
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$f({
21058
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$V({
21059
21059
  xmlns: "http://www.w3.org/2000/svg",
21060
21060
  width: 170,
21061
21061
  height: 170
21062
- }, props), _defs$d || (_defs$d = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21062
+ }, props), _defs$e || (_defs$e = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21063
21063
  id: "ilu_printing-label_svg__a"
21064
21064
  }, /*#__PURE__*/React__namespace.createElement("path", {
21065
21065
  "data-name": "Path 84919",
21066
21066
  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",
21067
21067
  transform: "translate(-17.433 -29.815)",
21068
21068
  fill: "none"
21069
- })))), _g$d || (_g$d = /*#__PURE__*/React__namespace.createElement("g", {
21069
+ })))), _g$I || (_g$I = /*#__PURE__*/React__namespace.createElement("g", {
21070
21070
  "data-name": "Group 44887"
21071
21071
  }, /*#__PURE__*/React__namespace.createElement("path", {
21072
21072
  "data-name": "Path 84915",
@@ -21076,7 +21076,7 @@ var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
21076
21076
  "data-name": "Path 84916",
21077
21077
  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",
21078
21078
  fill: "#cbcbcb"
21079
- }))), _g2$5 || (_g2$5 = /*#__PURE__*/React__namespace.createElement("g", {
21079
+ }))), _g2$6 || (_g2$6 = /*#__PURE__*/React__namespace.createElement("g", {
21080
21080
  "data-name": "Group 44907"
21081
21081
  }, /*#__PURE__*/React__namespace.createElement("g", {
21082
21082
  "data-name": "Group 44906",
@@ -21230,34 +21230,34 @@ var SvgIluPrintingLabel = function SvgIluPrintingLabel(props) {
21230
21230
  "data-name": "Rectangle 21409",
21231
21231
  fill: "#5d5d5c",
21232
21232
  d: "M58.509 25.279h31.224v.425H58.509z"
21233
- })))))), _path$c || (_path$c = /*#__PURE__*/React__namespace.createElement("path", {
21233
+ })))))), _path$t || (_path$t = /*#__PURE__*/React__namespace.createElement("path", {
21234
21234
  "data-name": "Rectangle 21410",
21235
21235
  fill: "none",
21236
21236
  d: "M0 0h170v170H0z"
21237
21237
  })));
21238
21238
  };
21239
21239
 
21240
- var _defs$c, _g$c, _g2$4, _path$b;
21241
- 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); }
21240
+ var _defs$d, _g$H, _g2$5, _path$s;
21241
+ 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); }
21242
21242
  var SvgIluProduction = function SvgIluProduction(props) {
21243
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$e({
21243
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$U({
21244
21244
  xmlns: "http://www.w3.org/2000/svg",
21245
21245
  width: 170,
21246
21246
  height: 170
21247
- }, props), _defs$c || (_defs$c = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21247
+ }, props), _defs$d || (_defs$d = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21248
21248
  id: "ilu_production_svg__a"
21249
21249
  }, /*#__PURE__*/React__namespace.createElement("path", {
21250
21250
  "data-name": "Path 85301",
21251
21251
  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",
21252
21252
  transform: "translate(-563.694 -498.814)",
21253
21253
  fill: "none"
21254
- })))), _g$c || (_g$c = /*#__PURE__*/React__namespace.createElement("g", {
21254
+ })))), _g$H || (_g$H = /*#__PURE__*/React__namespace.createElement("g", {
21255
21255
  "data-name": "Group 46712"
21256
21256
  }, /*#__PURE__*/React__namespace.createElement("path", {
21257
21257
  "data-name": "Path 85290",
21258
21258
  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",
21259
21259
  fill: "#e0e0e0"
21260
- }))), _g2$4 || (_g2$4 = /*#__PURE__*/React__namespace.createElement("g", {
21260
+ }))), _g2$5 || (_g2$5 = /*#__PURE__*/React__namespace.createElement("g", {
21261
21261
  "data-name": "Group 46777"
21262
21262
  }, /*#__PURE__*/React__namespace.createElement("g", {
21263
21263
  "data-name": "Group 46776",
@@ -21689,28 +21689,28 @@ var SvgIluProduction = function SvgIluProduction(props) {
21689
21689
  "data-name": "Rectangle 21993",
21690
21690
  fill: "#930000",
21691
21691
  d: "M80.076 23.671h27.776v.425H80.076z"
21692
- })))))), _path$b || (_path$b = /*#__PURE__*/React__namespace.createElement("path", {
21692
+ })))))), _path$s || (_path$s = /*#__PURE__*/React__namespace.createElement("path", {
21693
21693
  "data-name": "Rectangle 21994",
21694
21694
  fill: "none",
21695
21695
  d: "M0 0h170v170H0z"
21696
21696
  })));
21697
21697
  };
21698
21698
 
21699
- var _defs$b, _g$b, _g2$3, _path$a;
21700
- 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); }
21699
+ var _defs$c, _g$G, _g2$4, _path$r;
21700
+ 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); }
21701
21701
  var SvgIluQualityControl = function SvgIluQualityControl(props) {
21702
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$d({
21702
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$T({
21703
21703
  xmlns: "http://www.w3.org/2000/svg",
21704
21704
  width: 170,
21705
21705
  height: 170
21706
- }, props), _defs$b || (_defs$b = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21706
+ }, props), _defs$c || (_defs$c = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
21707
21707
  id: "ilu_quality-control_svg__a"
21708
21708
  }, /*#__PURE__*/React__namespace.createElement("path", {
21709
21709
  "data-name": "Path 85248",
21710
21710
  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",
21711
21711
  transform: "translate(-17.433 -30.423)",
21712
21712
  fill: "none"
21713
- })))), _g$b || (_g$b = /*#__PURE__*/React__namespace.createElement("g", {
21713
+ })))), _g$G || (_g$G = /*#__PURE__*/React__namespace.createElement("g", {
21714
21714
  "data-name": "Group 46586",
21715
21715
  clipPath: "url(#ilu_quality-control_svg__a)",
21716
21716
  transform: "translate(7.711 13.21)"
@@ -22029,7 +22029,7 @@ var SvgIluQualityControl = function SvgIluQualityControl(props) {
22029
22029
  "data-name": "Path 85247",
22030
22030
  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",
22031
22031
  fill: "#e42127"
22032
- })))), _g2$3 || (_g2$3 = /*#__PURE__*/React__namespace.createElement("g", {
22032
+ })))), _g2$4 || (_g2$4 = /*#__PURE__*/React__namespace.createElement("g", {
22033
22033
  "data-name": "Group 46634",
22034
22034
  clipPath: "url(#ilu_quality-control_svg__a)",
22035
22035
  transform: "translate(7.711 13.21)"
@@ -22348,28 +22348,28 @@ var SvgIluQualityControl = function SvgIluQualityControl(props) {
22348
22348
  "data-name": "Path 85267",
22349
22349
  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",
22350
22350
  fill: "#e42127"
22351
- })))), _path$a || (_path$a = /*#__PURE__*/React__namespace.createElement("path", {
22351
+ })))), _path$r || (_path$r = /*#__PURE__*/React__namespace.createElement("path", {
22352
22352
  "data-name": "Rectangle 21927",
22353
22353
  fill: "none",
22354
22354
  d: "M0 0h170v170H0z"
22355
22355
  })));
22356
22356
  };
22357
22357
 
22358
- var _defs$a, _g$a, _g2$2, _g3$2, _g4$2, _g5$1, _g6$1, _g7$1, _g8$1, _path$9;
22359
- 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); }
22358
+ var _defs$b, _g$F, _g2$3, _g3$2, _g4$2, _g5$1, _g6$1, _g7$1, _g8$1, _path$q;
22359
+ 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); }
22360
22360
  var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehouse(props) {
22361
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$c({
22361
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$S({
22362
22362
  xmlns: "http://www.w3.org/2000/svg",
22363
22363
  width: 170,
22364
22364
  height: 170
22365
- }, props), _defs$a || (_defs$a = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
22365
+ }, props), _defs$b || (_defs$b = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
22366
22366
  id: "ilu_release-of-goods-from-warehouse_svg__a"
22367
22367
  }, /*#__PURE__*/React__namespace.createElement("path", {
22368
22368
  "data-name": "Path 84826",
22369
22369
  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",
22370
22370
  transform: "translate(-18.383 -30.423)",
22371
22371
  fill: "none"
22372
- })))), _g$a || (_g$a = /*#__PURE__*/React__namespace.createElement("g", {
22372
+ })))), _g$F || (_g$F = /*#__PURE__*/React__namespace.createElement("g", {
22373
22373
  "data-name": "Group 44559"
22374
22374
  }, /*#__PURE__*/React__namespace.createElement("g", {
22375
22375
  "data-name": "Group 44558",
@@ -22749,7 +22749,7 @@ var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehou
22749
22749
  "data-name": "Path 84825",
22750
22750
  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",
22751
22751
  fill: "none"
22752
- }))))), _g2$2 || (_g2$2 = /*#__PURE__*/React__namespace.createElement("g", {
22752
+ }))))), _g2$3 || (_g2$3 = /*#__PURE__*/React__namespace.createElement("g", {
22753
22753
  "data-name": "Group 44561"
22754
22754
  }, /*#__PURE__*/React__namespace.createElement("g", {
22755
22755
  "data-name": "Group 44560"
@@ -22808,28 +22808,28 @@ var SvgIluReleaseOfGoodsFromWarehouse = function SvgIluReleaseOfGoodsFromWarehou
22808
22808
  "data-name": "Rectangle 21150",
22809
22809
  fill: "#e42127",
22810
22810
  d: "M93.691 56.047h3.423v2.761h-3.423z"
22811
- })))), _path$9 || (_path$9 = /*#__PURE__*/React__namespace.createElement("path", {
22811
+ })))), _path$q || (_path$q = /*#__PURE__*/React__namespace.createElement("path", {
22812
22812
  "data-name": "Rectangle 21151",
22813
22813
  fill: "none",
22814
22814
  d: "M0 0h170v170H0z"
22815
22815
  })));
22816
22816
  };
22817
22817
 
22818
- var _defs$9, _g$9, _path$8;
22819
- 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); }
22818
+ var _defs$a, _g$E, _path$p;
22819
+ 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); }
22820
22820
  var SvgIluRemoveGoodsFromPallet = function SvgIluRemoveGoodsFromPallet(props) {
22821
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$b({
22821
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$R({
22822
22822
  xmlns: "http://www.w3.org/2000/svg",
22823
22823
  width: 170,
22824
22824
  height: 170
22825
- }, props), _defs$9 || (_defs$9 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
22825
+ }, props), _defs$a || (_defs$a = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
22826
22826
  id: "ilu_remove_goods_from_pallet_svg__a"
22827
22827
  }, /*#__PURE__*/React__namespace.createElement("path", {
22828
22828
  "data-name": "Path 84868",
22829
22829
  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",
22830
22830
  transform: "translate(-17.433 -30.423)",
22831
22831
  fill: "none"
22832
- })))), _g$9 || (_g$9 = /*#__PURE__*/React__namespace.createElement("g", {
22832
+ })))), _g$E || (_g$E = /*#__PURE__*/React__namespace.createElement("g", {
22833
22833
  "data-name": "ilu_remove_goods_from_pallet _2"
22834
22834
  }, /*#__PURE__*/React__namespace.createElement("g", {
22835
22835
  "data-name": "Group 44716"
@@ -22997,28 +22997,28 @@ var SvgIluRemoveGoodsFromPallet = function SvgIluRemoveGoodsFromPallet(props) {
22997
22997
  "data-name": "Rectangle 21297",
22998
22998
  fill: "#e42127",
22999
22999
  d: "M103.205 101.127v13.892h-3.456v-13.892z"
23000
- }))))), _path$8 || (_path$8 = /*#__PURE__*/React__namespace.createElement("path", {
23000
+ }))))), _path$p || (_path$p = /*#__PURE__*/React__namespace.createElement("path", {
23001
23001
  "data-name": "Rectangle 21298",
23002
23002
  fill: "none",
23003
23003
  d: "M0 0h170v170H0z"
23004
23004
  })));
23005
23005
  };
23006
23006
 
23007
- var _defs$8, _g$8, _g2$1, _g3$1, _g4$1, _path$7;
23008
- 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); }
23007
+ var _defs$9, _g$D, _g2$2, _g3$1, _g4$1, _path$o;
23008
+ 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); }
23009
23009
  var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
23010
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$a({
23010
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$Q({
23011
23011
  xmlns: "http://www.w3.org/2000/svg",
23012
23012
  width: 170,
23013
23013
  height: 170
23014
- }, props), _defs$8 || (_defs$8 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23014
+ }, props), _defs$9 || (_defs$9 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23015
23015
  id: "ilu_reprinting-label_svg__a"
23016
23016
  }, /*#__PURE__*/React__namespace.createElement("path", {
23017
23017
  "data-name": "Path 84924",
23018
23018
  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",
23019
23019
  transform: "translate(-20.565 -32.815)",
23020
23020
  fill: "none"
23021
- })))), _g$8 || (_g$8 = /*#__PURE__*/React__namespace.createElement("g", {
23021
+ })))), _g$D || (_g$D = /*#__PURE__*/React__namespace.createElement("g", {
23022
23022
  "data-name": "Group 44912"
23023
23023
  }, /*#__PURE__*/React__namespace.createElement("g", {
23024
23024
  "data-name": "Group 44910"
@@ -23032,7 +23032,7 @@ var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
23032
23032
  "data-name": "Path 84921",
23033
23033
  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",
23034
23034
  fill: "#cbcbcb"
23035
- })))), _g2$1 || (_g2$1 = /*#__PURE__*/React__namespace.createElement("g", {
23035
+ })))), _g2$2 || (_g2$2 = /*#__PURE__*/React__namespace.createElement("g", {
23036
23036
  "data-name": "Group 44938"
23037
23037
  }, /*#__PURE__*/React__namespace.createElement("g", {
23038
23038
  "data-name": "Group 44937",
@@ -23230,28 +23230,28 @@ var SvgIluReprintingLabel = function SvgIluReprintingLabel(props) {
23230
23230
  }), /*#__PURE__*/React__namespace.createElement("path", {
23231
23231
  "data-name": "Path 84932",
23232
23232
  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"
23233
- }))), _path$7 || (_path$7 = /*#__PURE__*/React__namespace.createElement("path", {
23233
+ }))), _path$o || (_path$o = /*#__PURE__*/React__namespace.createElement("path", {
23234
23234
  "data-name": "Rectangle 21432",
23235
23235
  fill: "none",
23236
23236
  d: "M0 0h170v170H0z"
23237
23237
  })));
23238
23238
  };
23239
23239
 
23240
- var _defs$7, _g$7;
23241
- 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); }
23240
+ var _defs$8, _g$C;
23241
+ 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); }
23242
23242
  var SvgIluReturnFromCustomers = function SvgIluReturnFromCustomers(props) {
23243
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$9({
23243
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$P({
23244
23244
  xmlns: "http://www.w3.org/2000/svg",
23245
23245
  width: 170,
23246
23246
  height: 170
23247
- }, props), _defs$7 || (_defs$7 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23247
+ }, props), _defs$8 || (_defs$8 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23248
23248
  id: "ilu_return-from-customers_svg__a"
23249
23249
  }, /*#__PURE__*/React__namespace.createElement("path", {
23250
23250
  "data-name": "Path 84902",
23251
23251
  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",
23252
23252
  transform: "translate(-17.531 -30.717)",
23253
23253
  fill: "none"
23254
- })))), _g$7 || (_g$7 = /*#__PURE__*/React__namespace.createElement("g", {
23254
+ })))), _g$C || (_g$C = /*#__PURE__*/React__namespace.createElement("g", {
23255
23255
  "data-name": "Group 44789"
23256
23256
  }, /*#__PURE__*/React__namespace.createElement("g", {
23257
23257
  "data-name": "Group 44788"
@@ -23510,19 +23510,19 @@ var SvgIluReturnFromCustomers = function SvgIluReturnFromCustomers(props) {
23510
23510
  }))));
23511
23511
  };
23512
23512
 
23513
- var _defs$6, _path$6, _path2$1, _path3$1, _path4$1, _path5$1, _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;
23514
- 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); }
23513
+ 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;
23514
+ 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); }
23515
23515
  var SvgIluSale = function SvgIluSale(props) {
23516
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$8({
23516
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$O({
23517
23517
  id: "ilu_sale_svg__sprzedaz",
23518
23518
  xmlns: "http://www.w3.org/2000/svg",
23519
23519
  viewBox: "0 0 400.01 400.01"
23520
- }, props), _defs$6 || (_defs$6 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23520
+ }, props), _defs$7 || (_defs$7 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23521
23521
  id: "ilu_sale_svg__clippath"
23522
23522
  }, /*#__PURE__*/React__namespace.createElement("path", {
23523
23523
  className: "ilu_sale_svg__cls-9",
23524
23524
  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"
23525
- })), /*#__PURE__*/React__namespace.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$6 || (_path$6 = /*#__PURE__*/React__namespace.createElement("path", {
23525
+ })), /*#__PURE__*/React__namespace.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__namespace.createElement("path", {
23526
23526
  className: "ilu_sale_svg__cls-9",
23527
23527
  d: "M0 0h400v400H0z"
23528
23528
  })), /*#__PURE__*/React__namespace.createElement("g", {
@@ -23534,7 +23534,7 @@ var SvgIluSale = function SvgIluSale(props) {
23534
23534
  style: {
23535
23535
  fill: "#e0e0e0"
23536
23536
  }
23537
- }), _path2$1 || (_path2$1 = /*#__PURE__*/React__namespace.createElement("path", {
23537
+ }), _path2$e || (_path2$e = /*#__PURE__*/React__namespace.createElement("path", {
23538
23538
  className: "ilu_sale_svg__cls-2",
23539
23539
  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"
23540
23540
  })), /*#__PURE__*/React__namespace.createElement("path", {
@@ -23542,13 +23542,13 @@ var SvgIluSale = function SvgIluSale(props) {
23542
23542
  style: {
23543
23543
  fill: "#cbcbcb"
23544
23544
  }
23545
- }), _path3$1 || (_path3$1 = /*#__PURE__*/React__namespace.createElement("path", {
23545
+ }), _path3$6 || (_path3$6 = /*#__PURE__*/React__namespace.createElement("path", {
23546
23546
  className: "ilu_sale_svg__cls-1",
23547
23547
  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"
23548
- })), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
23548
+ })), _path4$2 || (_path4$2 = /*#__PURE__*/React__namespace.createElement("path", {
23549
23549
  className: "ilu_sale_svg__cls-2",
23550
23550
  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"
23551
- })), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
23551
+ })), _path5$2 || (_path5$2 = /*#__PURE__*/React__namespace.createElement("path", {
23552
23552
  className: "ilu_sale_svg__cls-10",
23553
23553
  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"
23554
23554
  })), _path6$1 || (_path6$1 = /*#__PURE__*/React__namespace.createElement("path", {
@@ -23659,21 +23659,21 @@ var SvgIluSale = function SvgIluSale(props) {
23659
23659
  }))));
23660
23660
  };
23661
23661
 
23662
- var _defs$5, _g$6, _path$5;
23663
- 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); }
23662
+ var _defs$6, _g$B, _path$m;
23663
+ 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); }
23664
23664
  var SvgIluShiftPallet = function SvgIluShiftPallet(props) {
23665
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$7({
23665
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$N({
23666
23666
  xmlns: "http://www.w3.org/2000/svg",
23667
23667
  width: 170,
23668
23668
  height: 170
23669
- }, props), _defs$5 || (_defs$5 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23669
+ }, props), _defs$6 || (_defs$6 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
23670
23670
  id: "ilu_shift_pallet_svg__a"
23671
23671
  }, /*#__PURE__*/React__namespace.createElement("path", {
23672
23672
  "data-name": "Path 85052",
23673
23673
  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",
23674
23674
  transform: "translate(-24.652 -30.573)",
23675
23675
  fill: "none"
23676
- })))), _g$6 || (_g$6 = /*#__PURE__*/React__namespace.createElement("g", {
23676
+ })))), _g$B || (_g$B = /*#__PURE__*/React__namespace.createElement("g", {
23677
23677
  "data-name": "Group 45386"
23678
23678
  }, /*#__PURE__*/React__namespace.createElement("g", {
23679
23679
  "data-name": "Group 45385",
@@ -23949,17 +23949,17 @@ var SvgIluShiftPallet = function SvgIluShiftPallet(props) {
23949
23949
  "data-name": "Path 85051",
23950
23950
  d: "M96.774 97.239h-.843V40.347l-3.243-2.252.481-.692 3.605 2.5Z",
23951
23951
  fill: "#fff"
23952
- })))))), _path$5 || (_path$5 = /*#__PURE__*/React__namespace.createElement("path", {
23952
+ })))))), _path$m || (_path$m = /*#__PURE__*/React__namespace.createElement("path", {
23953
23953
  "data-name": "Rectangle 21628",
23954
23954
  fill: "none",
23955
23955
  d: "M0 0h170v170H0z"
23956
23956
  })));
23957
23957
  };
23958
23958
 
23959
- var _style, _path$4, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _circle, _path11, _circle2, _circle3, _circle4, _path12, _circle5, _circle6, _circle7, _path13, _ellipse, _ellipse2, _ellipse3, _ellipse4, _ellipse5, _ellipse6, _path14;
23960
- 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); }
23959
+ 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;
23960
+ 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); }
23961
23961
  var SvgIluShopping = function SvgIluShopping(props) {
23962
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$6({
23962
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$M({
23963
23963
  xmlns: "http://www.w3.org/2000/svg",
23964
23964
  viewBox: "0 0 400 400",
23965
23965
  style: {
@@ -23978,19 +23978,19 @@ var SvgIluShopping = function SvgIluShopping(props) {
23978
23978
  style: {
23979
23979
  fill: "#cbcbcb"
23980
23980
  }
23981
- }), _path$4 || (_path$4 = /*#__PURE__*/React__namespace.createElement("path", {
23981
+ }), _path$l || (_path$l = /*#__PURE__*/React__namespace.createElement("path", {
23982
23982
  className: "ilu_shopping_svg__st2",
23983
23983
  d: "M155.1 253h40.6v-65.2h-39.1c-.8 0-1.5.7-1.5 1.5V253z"
23984
- })), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
23984
+ })), _path2$d || (_path2$d = /*#__PURE__*/React__namespace.createElement("path", {
23985
23985
  className: "ilu_shopping_svg__st6",
23986
23986
  d: "M195.7 253h65.5v-63.7c0-.8-.7-1.5-1.5-1.5h-64V253z"
23987
- })), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
23987
+ })), _path3$5 || (_path3$5 = /*#__PURE__*/React__namespace.createElement("path", {
23988
23988
  className: "ilu_shopping_svg__st10",
23989
23989
  d: "M163.3 196h8.2v8.2h-8.2z"
23990
- })), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
23990
+ })), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
23991
23991
  className: "ilu_shopping_svg__st2",
23992
23992
  d: "M155.1 187.7h40.6v-65.2h-39.1c-.8 0-1.5.7-1.5 1.5v63.7z"
23993
- })), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
23993
+ })), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
23994
23994
  className: "ilu_shopping_svg__st6",
23995
23995
  d: "M195.7 187.7h65.5V124c0-.8-.7-1.5-1.5-1.5h-64v65.2z"
23996
23996
  })), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
@@ -24106,21 +24106,21 @@ var SvgIluShopping = function SvgIluShopping(props) {
24106
24106
  })));
24107
24107
  };
24108
24108
 
24109
- var _defs$4, _g$5, _path$3;
24110
- 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); }
24109
+ var _defs$5, _g$A, _path$k;
24110
+ 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); }
24111
24111
  var SvgIluStatusChange = function SvgIluStatusChange(props) {
24112
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$5({
24112
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$L({
24113
24113
  xmlns: "http://www.w3.org/2000/svg",
24114
24114
  width: 170,
24115
24115
  height: 170
24116
- }, props), _defs$4 || (_defs$4 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24116
+ }, props), _defs$5 || (_defs$5 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24117
24117
  id: "ilu_status-change_svg__a"
24118
24118
  }, /*#__PURE__*/React__namespace.createElement("path", {
24119
24119
  "data-name": "Path 85276",
24120
24120
  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",
24121
24121
  transform: "translate(-17.433 -30.423)",
24122
24122
  fill: "none"
24123
- })))), _g$5 || (_g$5 = /*#__PURE__*/React__namespace.createElement("g", {
24123
+ })))), _g$A || (_g$A = /*#__PURE__*/React__namespace.createElement("g", {
24124
24124
  "data-name": "Group 46665",
24125
24125
  transform: "translate(7.533 13.045)",
24126
24126
  clipPath: "url(#ilu_status-change_svg__a)"
@@ -24252,28 +24252,28 @@ var SvgIluStatusChange = function SvgIluStatusChange(props) {
24252
24252
  "data-name": "Rectangle 21938",
24253
24253
  fill: "#fff",
24254
24254
  d: "M78.354 64.569h-3.06v-3.06h3.06z"
24255
- })))))))), _path$3 || (_path$3 = /*#__PURE__*/React__namespace.createElement("path", {
24255
+ })))))))), _path$k || (_path$k = /*#__PURE__*/React__namespace.createElement("path", {
24256
24256
  "data-name": "Rectangle 21939",
24257
24257
  fill: "none",
24258
24258
  d: "M0 0h170v170H0z"
24259
24259
  })));
24260
24260
  };
24261
24261
 
24262
- var _defs$3, _g$4, _path$2;
24263
- 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); }
24262
+ var _defs$4, _g$z, _path$j;
24263
+ 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); }
24264
24264
  var SvgIluStorageField = function SvgIluStorageField(props) {
24265
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$4({
24265
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$K({
24266
24266
  xmlns: "http://www.w3.org/2000/svg",
24267
24267
  width: 170,
24268
24268
  height: 170
24269
- }, props), _defs$3 || (_defs$3 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24269
+ }, props), _defs$4 || (_defs$4 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24270
24270
  id: "ilu_storage-field_svg__a"
24271
24271
  }, /*#__PURE__*/React__namespace.createElement("path", {
24272
24272
  "data-name": "Path 85353",
24273
24273
  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",
24274
24274
  transform: "translate(-24.652 -30.573)",
24275
24275
  fill: "none"
24276
- })))), _g$4 || (_g$4 = /*#__PURE__*/React__namespace.createElement("g", {
24276
+ })))), _g$z || (_g$z = /*#__PURE__*/React__namespace.createElement("g", {
24277
24277
  transform: "translate(10.561 13.073)",
24278
24278
  clipPath: "url(#ilu_storage-field_svg__a)"
24279
24279
  }, /*#__PURE__*/React__namespace.createElement("g", {
@@ -24658,28 +24658,28 @@ var SvgIluStorageField = function SvgIluStorageField(props) {
24658
24658
  "data-name": "Path 85352",
24659
24659
  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",
24660
24660
  fill: "none"
24661
- })))), _path$2 || (_path$2 = /*#__PURE__*/React__namespace.createElement("path", {
24661
+ })))), _path$j || (_path$j = /*#__PURE__*/React__namespace.createElement("path", {
24662
24662
  "data-name": "Rectangle 22128",
24663
24663
  fill: "none",
24664
24664
  d: "M0 0h170v170H0z"
24665
24665
  })));
24666
24666
  };
24667
24667
 
24668
- var _defs$2, _g$3, _g2, _g3, _g4, _g5, _g6, _g7, _g8, _path$1;
24669
- 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); }
24668
+ var _defs$3, _g$y, _g2$1, _g3, _g4, _g5, _g6, _g7, _g8, _path$i;
24669
+ 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); }
24670
24670
  var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
24671
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$3({
24671
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$J({
24672
24672
  xmlns: "http://www.w3.org/2000/svg",
24673
24673
  width: 170,
24674
24674
  height: 170
24675
- }, props), _defs$2 || (_defs$2 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24675
+ }, props), _defs$3 || (_defs$3 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
24676
24676
  id: "ilu_warehouse-loading_svg__a"
24677
24677
  }, /*#__PURE__*/React__namespace.createElement("path", {
24678
24678
  "data-name": "Path 84835",
24679
24679
  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",
24680
24680
  transform: "translate(-18.383 -30.423)",
24681
24681
  fill: "none"
24682
- })))), _g$3 || (_g$3 = /*#__PURE__*/React__namespace.createElement("g", {
24682
+ })))), _g$y || (_g$y = /*#__PURE__*/React__namespace.createElement("g", {
24683
24683
  "data-name": "Group 44638"
24684
24684
  }, /*#__PURE__*/React__namespace.createElement("g", {
24685
24685
  "data-name": "Group 44637",
@@ -24974,7 +24974,7 @@ var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
24974
24974
  "data-name": "Path 85555",
24975
24975
  d: "M95.657 73.891h5.5v17.191h-7V75.391a1.5 1.5 0 0 1 1.5-1.5Z",
24976
24976
  fill: "#cbcbcb"
24977
- }))))), _g2 || (_g2 = /*#__PURE__*/React__namespace.createElement("g", {
24977
+ }))))), _g2$1 || (_g2$1 = /*#__PURE__*/React__namespace.createElement("g", {
24978
24978
  "data-name": "Group 47287"
24979
24979
  }, /*#__PURE__*/React__namespace.createElement("path", {
24980
24980
  "data-name": "Rectangle 21145",
@@ -25031,21 +25031,21 @@ var SvgIluWarehouseLoading = function SvgIluWarehouseLoading(props) {
25031
25031
  "data-name": "Rectangle 21150",
25032
25032
  fill: "#e42127",
25033
25033
  d: "M78.691 63.048h3.423v2.761h-3.423z"
25034
- })))), _path$1 || (_path$1 = /*#__PURE__*/React__namespace.createElement("path", {
25034
+ })))), _path$i || (_path$i = /*#__PURE__*/React__namespace.createElement("path", {
25035
25035
  "data-name": "Rectangle 21188",
25036
25036
  fill: "none",
25037
25037
  d: "M0 0h170v170H0z"
25038
25038
  })));
25039
25039
  };
25040
25040
 
25041
- var _g$2, _path;
25042
- 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); }
25041
+ var _g$x, _path$h;
25042
+ 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); }
25043
25043
  var SvgMovingBoxToAnotherShelf = function SvgMovingBoxToAnotherShelf(props) {
25044
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$2({
25044
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$I({
25045
25045
  xmlns: "http://www.w3.org/2000/svg",
25046
25046
  width: 170,
25047
25047
  height: 170
25048
- }, props), _g$2 || (_g$2 = /*#__PURE__*/React__namespace.createElement("g", {
25048
+ }, props), _g$x || (_g$x = /*#__PURE__*/React__namespace.createElement("g", {
25049
25049
  "data-name": "Group 46074"
25050
25050
  }, /*#__PURE__*/React__namespace.createElement("g", {
25051
25051
  "data-name": "Group 45940"
@@ -25891,22 +25891,22 @@ var SvgMovingBoxToAnotherShelf = function SvgMovingBoxToAnotherShelf(props) {
25891
25891
  }), /*#__PURE__*/React__namespace.createElement("path", {
25892
25892
  "data-name": "Rectangle 21771",
25893
25893
  d: "M75.408 66.235h5.1v2.763h-5.1z"
25894
- })))), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
25894
+ })))), _path$h || (_path$h = /*#__PURE__*/React__namespace.createElement("path", {
25895
25895
  "data-name": "Rectangle 21744",
25896
25896
  fill: "none",
25897
25897
  d: "M0 0h170v170H0z"
25898
25898
  })));
25899
25899
  };
25900
25900
 
25901
- var _defs$1, _g$1;
25902
- 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); }
25901
+ var _defs$2, _g$w;
25902
+ 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); }
25903
25903
  var SvgIluSearch = function SvgIluSearch(props) {
25904
- return /*#__PURE__*/React__namespace.createElement("svg", _extends$1({
25904
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$H({
25905
25905
  "data-name": "Component 35 \\u2013 1",
25906
25906
  xmlns: "http://www.w3.org/2000/svg",
25907
25907
  width: 184.006,
25908
25908
  height: 184.006
25909
- }, props), _defs$1 || (_defs$1 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
25909
+ }, props), _defs$2 || (_defs$2 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
25910
25910
  id: "ilu_search_svg__a"
25911
25911
  }, /*#__PURE__*/React__namespace.createElement("path", {
25912
25912
  "data-name": "Rectangle 14804",
@@ -25954,7 +25954,7 @@ var SvgIluSearch = function SvgIluSearch(props) {
25954
25954
  transform: "translate(114.909 72.075)",
25955
25955
  fill: "none",
25956
25956
  d: "M0 0h.429v40.322H0z"
25957
- })))), _g$1 || (_g$1 = /*#__PURE__*/React__namespace.createElement("g", {
25957
+ })))), _g$w || (_g$w = /*#__PURE__*/React__namespace.createElement("g", {
25958
25958
  "data-name": "Group 8098",
25959
25959
  clipPath: "url(#ilu_search_svg__a)"
25960
25960
  }, /*#__PURE__*/React__namespace.createElement("g", {
@@ -26111,15 +26111,15 @@ var SvgIluSearch = function SvgIluSearch(props) {
26111
26111
  }))))));
26112
26112
  };
26113
26113
 
26114
- var _defs, _g;
26115
- 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); }
26114
+ var _defs$1, _g$v;
26115
+ 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); }
26116
26116
  var SvgIlu404 = function SvgIlu404(props) {
26117
- return /*#__PURE__*/React__namespace.createElement("svg", _extends({
26117
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$G({
26118
26118
  "data-name": "Component 34 \\u2013 1",
26119
26119
  xmlns: "http://www.w3.org/2000/svg",
26120
26120
  width: 184.006,
26121
26121
  height: 184.006
26122
- }, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
26122
+ }, props), _defs$1 || (_defs$1 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
26123
26123
  id: "ilu_404_svg__a"
26124
26124
  }, /*#__PURE__*/React__namespace.createElement("path", {
26125
26125
  "data-name": "Rectangle 14791",
@@ -26181,7 +26181,7 @@ var SvgIlu404 = function SvgIlu404(props) {
26181
26181
  "data-name": "Path 513",
26182
26182
  d: "M124.648 81.307q.171.843 1.729 5.842l6.328-.071q-1.559-5-1.729-5.843Z",
26183
26183
  fill: "none"
26184
- })))), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
26184
+ })))), _g$v || (_g$v = /*#__PURE__*/React__namespace.createElement("g", {
26185
26185
  "data-name": "Group 8079",
26186
26186
  clipPath: "url(#ilu_404_svg__a)"
26187
26187
  }, /*#__PURE__*/React__namespace.createElement("g", {
@@ -26567,8 +26567,1482 @@ var Illustration = function (_a) {
26567
26567
  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, {})] })));
26568
26568
  };
26569
26569
 
26570
+ var _path$g, _path2$c, _path3$4;
26571
+ 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); }
26572
+ var SvgIconWfSearch = function SvgIconWfSearch(props) {
26573
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$F({
26574
+ xmlns: "http://www.w3.org/2000/svg",
26575
+ width: 26,
26576
+ height: 26
26577
+ }, props), _path$g || (_path$g = /*#__PURE__*/React__namespace.createElement("path", {
26578
+ "data-name": "Rectangle 20574",
26579
+ fill: "#e42127",
26580
+ d: "m16.788 18.066 1.274-1.274 6.724 6.724-1.274 1.274z"
26581
+ })), _path2$c || (_path2$c = /*#__PURE__*/React__namespace.createElement("path", {
26582
+ "data-name": "Path 84637",
26583
+ 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",
26584
+ fill: "#293072"
26585
+ })), _path3$4 || (_path3$4 = /*#__PURE__*/React__namespace.createElement("path", {
26586
+ "data-name": "Rectangle 20575",
26587
+ fill: "none",
26588
+ d: "M0 0h26v26H0z"
26589
+ })));
26590
+ };
26591
+
26592
+ var _path$f, _path2$b, _path3$3;
26593
+ 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); }
26594
+ var SvgIconWfLocked = function SvgIconWfLocked(props) {
26595
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$E({
26596
+ xmlns: "http://www.w3.org/2000/svg",
26597
+ width: 26,
26598
+ height: 26
26599
+ }, props), _path$f || (_path$f = /*#__PURE__*/React__namespace.createElement("path", {
26600
+ "data-name": "Rectangle 20466",
26601
+ fill: "#e42127",
26602
+ d: "M12.123 13.888h1.754v5.236h-1.754z"
26603
+ })), _path2$b || (_path2$b = /*#__PURE__*/React__namespace.createElement("path", {
26604
+ "data-name": "Path 84584",
26605
+ 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",
26606
+ fill: "#293072"
26607
+ })), _path3$3 || (_path3$3 = /*#__PURE__*/React__namespace.createElement("path", {
26608
+ "data-name": "Rectangle 20467",
26609
+ fill: "none",
26610
+ d: "M0 0h26v26H0z"
26611
+ })));
26612
+ };
26613
+
26614
+ var _path$e, _path2$a, _path3$2;
26615
+ 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); }
26616
+ var SvgIconWfDownload = function SvgIconWfDownload(props) {
26617
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$D({
26618
+ xmlns: "http://www.w3.org/2000/svg",
26619
+ width: 46,
26620
+ height: 46
26621
+ }, props), _path$e || (_path$e = /*#__PURE__*/React__namespace.createElement("path", {
26622
+ "data-name": "color-2",
26623
+ fill: "#e42127",
26624
+ d: "M3.121 39.74h39.758v3.058H3.121z"
26625
+ })), _path2$a || (_path2$a = /*#__PURE__*/React__namespace.createElement("path", {
26626
+ "data-name": "color-1",
26627
+ 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",
26628
+ fill: "#293072"
26629
+ })), _path3$2 || (_path3$2 = /*#__PURE__*/React__namespace.createElement("path", {
26630
+ fill: "none",
26631
+ d: "M0 0h46v46H0z"
26632
+ })));
26633
+ };
26634
+
26635
+ var _path$d, _g$u, _path2$9;
26636
+ 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); }
26637
+ var SvgIconWfRemove = function SvgIconWfRemove(props) {
26638
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$C({
26639
+ xmlns: "http://www.w3.org/2000/svg",
26640
+ width: 46,
26641
+ height: 46
26642
+ }, props), _path$d || (_path$d = /*#__PURE__*/React__namespace.createElement("path", {
26643
+ "data-name": "Rectangle 19790",
26644
+ fill: "#e42127",
26645
+ d: "M14.583 3.107h16.833v3.061H14.583z"
26646
+ })), _g$u || (_g$u = /*#__PURE__*/React__namespace.createElement("g", {
26647
+ fill: "#293072"
26648
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26649
+ "data-name": "Rectangle 19787",
26650
+ d: "M16.878 18.41h3.061v16.833h-3.061z"
26651
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26652
+ "data-name": "Rectangle 19788",
26653
+ d: "M26.06 18.41h3.061v16.833H26.06z"
26654
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26655
+ "data-name": "Path 84280",
26656
+ 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"
26657
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26658
+ "data-name": "Rectangle 19789",
26659
+ d: "M3.106 10.758h39.788v3.061H3.106z"
26660
+ }))), _path2$9 || (_path2$9 = /*#__PURE__*/React__namespace.createElement("path", {
26661
+ "data-name": "Rectangle 19791",
26662
+ fill: "none",
26663
+ d: "M0 0h46v46H0z"
26664
+ })));
26665
+ };
26666
+
26667
+ var _g$t;
26668
+ 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); }
26669
+ var SvgIconWfLogout = function SvgIconWfLogout(props) {
26670
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$B({
26671
+ xmlns: "http://www.w3.org/2000/svg",
26672
+ width: 46,
26673
+ height: 46
26674
+ }, props), _g$t || (_g$t = /*#__PURE__*/React__namespace.createElement("g", {
26675
+ "data-name": "icon_wf_logout"
26676
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26677
+ "data-name": "color-2",
26678
+ 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",
26679
+ fill: "#e42127"
26680
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26681
+ "data-name": "Path 84271",
26682
+ 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",
26683
+ fill: "#293072"
26684
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26685
+ "data-name": "Rectangle 19773",
26686
+ fill: "none",
26687
+ d: "M0 0h46v46H0z"
26688
+ }))));
26689
+ };
26690
+
26691
+ var _path$c, _path2$8, _path3$1;
26692
+ 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); }
26693
+ var SvgIconWfEdit = function SvgIconWfEdit(props) {
26694
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$A({
26695
+ xmlns: "http://www.w3.org/2000/svg",
26696
+ width: 46,
26697
+ height: 46
26698
+ }, props), _path$c || (_path$c = /*#__PURE__*/React__namespace.createElement("path", {
26699
+ "data-name": "color-2",
26700
+ fill: "#e42127",
26701
+ d: "M26.049 39.853H42.89v3.036H26.049z"
26702
+ })), _path2$8 || (_path2$8 = /*#__PURE__*/React__namespace.createElement("path", {
26703
+ "data-name": "color-1",
26704
+ 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",
26705
+ fill: "#293072"
26706
+ })), _path3$1 || (_path3$1 = /*#__PURE__*/React__namespace.createElement("path", {
26707
+ "data-name": "Rectangle 19786",
26708
+ fill: "none",
26709
+ d: "M0 0h46v46H0z"
26710
+ })));
26711
+ };
26712
+
26713
+ var _g$s;
26714
+ 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); }
26715
+ var SvgIconWfSettingsOrFilter = function SvgIconWfSettingsOrFilter(props) {
26716
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$z({
26717
+ "data-name": "icon_wf_settings or filter",
26718
+ xmlns: "http://www.w3.org/2000/svg",
26719
+ width: 46,
26720
+ height: 46
26721
+ }, props), _g$s || (_g$s = /*#__PURE__*/React__namespace.createElement("g", {
26722
+ "data-name": "Group 42290"
26723
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26724
+ "data-name": "Path 84278",
26725
+ 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",
26726
+ fill: "#e42127"
26727
+ }), /*#__PURE__*/React__namespace.createElement("g", {
26728
+ fill: "#293072"
26729
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26730
+ "data-name": "Path 84276",
26731
+ 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"
26732
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26733
+ "data-name": "Path 84277",
26734
+ 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"
26735
+ })), /*#__PURE__*/React__namespace.createElement("path", {
26736
+ "data-name": "Rectangle 19784",
26737
+ fill: "none",
26738
+ d: "M0 0h46v46H0z"
26739
+ }))));
26740
+ };
26741
+
26742
+ var _g$r, _path$b;
26743
+ 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); }
26744
+ var SvgIconWfBarcode1D = function SvgIconWfBarcode1D(props) {
26745
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$y({
26746
+ xmlns: "http://www.w3.org/2000/svg",
26747
+ width: 46,
26748
+ height: 46
26749
+ }, props), _g$r || (_g$r = /*#__PURE__*/React__namespace.createElement("g", {
26750
+ fill: "#293072"
26751
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26752
+ "data-name": "Path 85537",
26753
+ 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"
26754
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26755
+ "data-name": "Path 85538",
26756
+ 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"
26757
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26758
+ "data-name": "Path 85539",
26759
+ 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"
26760
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26761
+ "data-name": "Path 85540",
26762
+ 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"
26763
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26764
+ "data-name": "Rectangle 22306",
26765
+ d: "M6.164 12.284H9.2V33.72H6.164z"
26766
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26767
+ "data-name": "Rectangle 22307",
26768
+ d: "M13.264 12.284h1.38V33.72h-1.38z"
26769
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26770
+ "data-name": "Rectangle 22308",
26771
+ d: "M17.926 12.285h4.6v21.42h-4.6z"
26772
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26773
+ "data-name": "Rectangle 22309",
26774
+ d: "M25.808 12.284h1.38V33.72h-1.38z"
26775
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26776
+ "data-name": "Rectangle 22310",
26777
+ d: "M31.251 12.284h3.036V33.72h-3.036z"
26778
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26779
+ "data-name": "Rectangle 22311",
26780
+ d: "M38.352 12.284h1.38V33.72h-1.38z"
26781
+ }))), _path$b || (_path$b = /*#__PURE__*/React__namespace.createElement("path", {
26782
+ "data-name": "Rectangle 22312",
26783
+ fill: "none",
26784
+ d: "M0 0h46v46H0z"
26785
+ })));
26786
+ };
26787
+
26788
+ var _g$q;
26789
+ 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); }
26790
+ var SvgIconWfBarcode2D = function SvgIconWfBarcode2D(props) {
26791
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$x({
26792
+ xmlns: "http://www.w3.org/2000/svg",
26793
+ width: 46,
26794
+ height: 46
26795
+ }, props), _g$q || (_g$q = /*#__PURE__*/React__namespace.createElement("g", {
26796
+ "data-name": "Group 43962"
26797
+ }, /*#__PURE__*/React__namespace.createElement("g", {
26798
+ fill: "#293072"
26799
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26800
+ "data-name": "Path 84676",
26801
+ 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"
26802
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26803
+ "data-name": "Path 84677",
26804
+ 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"
26805
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26806
+ "data-name": "Path 84678",
26807
+ 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"
26808
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26809
+ "data-name": "Path 84679",
26810
+ 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"
26811
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26812
+ "data-name": "Path 84680",
26813
+ 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"
26814
+ })), /*#__PURE__*/React__namespace.createElement("g", {
26815
+ fill: "#e42127"
26816
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26817
+ "data-name": "Rectangle 20923",
26818
+ d: "M10.355 10.389h3.062v3.062h-3.062z"
26819
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26820
+ "data-name": "Rectangle 20924",
26821
+ d: "M10.34 32.564h3.062v3.062H10.34z"
26822
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26823
+ "data-name": "Rectangle 20925",
26824
+ d: "M32.545 10.389h3.062v3.062h-3.062z"
26825
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26826
+ "data-name": "Rectangle 20926",
26827
+ d: "M32.545 32.578h3.062v3.062h-3.062z"
26828
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26829
+ "data-name": "Rectangle 20927",
26830
+ d: "M39.791 25.302h3.062v3.062h-3.062z"
26831
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26832
+ "data-name": "Rectangle 20928",
26833
+ d: "M25.268 39.823h3.062v3.062h-3.062z"
26834
+ })), /*#__PURE__*/React__namespace.createElement("path", {
26835
+ "data-name": "Rectangle 20929",
26836
+ fill: "none",
26837
+ d: "M0 0h46v46H0z"
26838
+ }))));
26839
+ };
26840
+
26841
+ var _g$p;
26842
+ 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); }
26843
+ var SvgIconWfBarcodePrinter = function SvgIconWfBarcodePrinter(props) {
26844
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$w({
26845
+ "data-name": "Component 292 \\u2013 5",
26846
+ xmlns: "http://www.w3.org/2000/svg",
26847
+ width: 46,
26848
+ height: 46
26849
+ }, props), _g$p || (_g$p = /*#__PURE__*/React__namespace.createElement("g", {
26850
+ "data-name": "Group 43974"
26851
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26852
+ "data-name": "Rectangle 20938",
26853
+ fill: "#e42127",
26854
+ d: "M32.141 34.47h-3.062v-3.062h3.062z"
26855
+ }), /*#__PURE__*/React__namespace.createElement("g", {
26856
+ fill: "#293072"
26857
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26858
+ "data-name": "Rectangle 20931",
26859
+ d: "M11.508 8.455h3.036v14.552h-3.036z"
26860
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26861
+ "data-name": "Rectangle 20932",
26862
+ d: "M18.14 8.455h3.036v9.182H18.14z"
26863
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26864
+ "data-name": "Rectangle 20933",
26865
+ d: "M24.771 8.455h3.036v9.182h-3.036z"
26866
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26867
+ "data-name": "Rectangle 20934",
26868
+ d: "M31.402 8.455h3.036v14.552h-3.036z"
26869
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26870
+ "data-name": "Rectangle 20935",
26871
+ d: "M27.82 22.993h-3.062v-3.062h3.062z"
26872
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26873
+ "data-name": "Rectangle 20936",
26874
+ d: "M21.188 22.993h-3.062v-3.062h3.062z"
26875
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26876
+ "data-name": "Rectangle 20937",
26877
+ d: "M36.731 34.47h-3.062v-3.062h3.062z"
26878
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26879
+ "data-name": "Path 84682",
26880
+ 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"
26881
+ })), /*#__PURE__*/React__namespace.createElement("path", {
26882
+ "data-name": "Rectangle 20939",
26883
+ fill: "none",
26884
+ d: "M0 0h46v46H0z"
26885
+ }))));
26886
+ };
26887
+
26888
+ var _g$o;
26889
+ 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); }
26890
+ var SvgIconWfBox = function SvgIconWfBox(props) {
26891
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$v({
26892
+ xmlns: "http://www.w3.org/2000/svg",
26893
+ width: 46,
26894
+ height: 46
26895
+ }, props), _g$o || (_g$o = /*#__PURE__*/React__namespace.createElement("g", {
26896
+ "data-name": "icon_wf_box v1"
26897
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26898
+ "data-name": "Rectangle 20916",
26899
+ fill: "#e42127",
26900
+ d: "M33.671 36.766h-3.062v-3.062h3.062z"
26901
+ }), /*#__PURE__*/React__namespace.createElement("g", {
26902
+ fill: "#293072"
26903
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26904
+ "data-name": "Path 84669",
26905
+ d: "M30.597 19.993H15.316v-7.72h3.04v4.683h9.2v-4.683h3.036Z"
26906
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26907
+ "data-name": "Path 84670",
26908
+ 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"
26909
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26910
+ "data-name": "Path 84671",
26911
+ 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"
26912
+ })), /*#__PURE__*/React__namespace.createElement("path", {
26913
+ "data-name": "Rectangle 20917",
26914
+ fill: "none",
26915
+ d: "M0 0h46v46H0z"
26916
+ }))));
26917
+ };
26918
+
26919
+ var _g$n;
26920
+ 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); }
26921
+ var SvgIconWfCalculator = function SvgIconWfCalculator(props) {
26922
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$u({
26923
+ "data-name": "Component 286 \\u2013 2",
26924
+ xmlns: "http://www.w3.org/2000/svg",
26925
+ width: 46,
26926
+ height: 46
26927
+ }, props), _g$n || (_g$n = /*#__PURE__*/React__namespace.createElement("g", {
26928
+ "data-name": "Group 43933"
26929
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26930
+ "data-name": "Rectangle 20906",
26931
+ fill: "#e42127",
26932
+ d: "M13.027 10.023h19.379v3.036H13.027z"
26933
+ }), /*#__PURE__*/React__namespace.createElement("g", {
26934
+ fill: "#293072"
26935
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26936
+ "data-name": "Path 84668",
26937
+ 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"
26938
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26939
+ "data-name": "Rectangle 20907",
26940
+ d: "M24.241 28.382h-3.062V25.32h3.062z"
26941
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26942
+ "data-name": "Rectangle 20908",
26943
+ d: "M16.076 28.382h-3.062V25.32h3.062z"
26944
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26945
+ "data-name": "Rectangle 20909",
26946
+ d: "M32.406 20.774h-3.062v-3.062h3.062z"
26947
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26948
+ "data-name": "Rectangle 20910",
26949
+ d: "M24.241 20.774h-3.062v-3.062h3.062z"
26950
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26951
+ "data-name": "Rectangle 20911",
26952
+ d: "M16.076 20.774h-3.062v-3.062h3.062z"
26953
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26954
+ "data-name": "Rectangle 20912",
26955
+ d: "M32.406 36.005h-3.062V25.32h3.062z"
26956
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26957
+ "data-name": "Rectangle 20913",
26958
+ d: "M24.241 36.005h-3.062v-3.062h3.062z"
26959
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26960
+ "data-name": "Rectangle 20914",
26961
+ d: "M16.076 36.005h-3.062v-3.062h3.062z"
26962
+ })), /*#__PURE__*/React__namespace.createElement("path", {
26963
+ "data-name": "Rectangle 20915",
26964
+ fill: "none",
26965
+ d: "M0 0h46v46H0z"
26966
+ }))));
26967
+ };
26968
+
26969
+ var _g$m;
26970
+ 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); }
26971
+ var SvgIconWfCalendar = function SvgIconWfCalendar(props) {
26972
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$t({
26973
+ xmlns: "http://www.w3.org/2000/svg",
26974
+ width: 46,
26975
+ height: 46
26976
+ }, props), _g$m || (_g$m = /*#__PURE__*/React__namespace.createElement("g", {
26977
+ "data-name": "Group 43270"
26978
+ }, /*#__PURE__*/React__namespace.createElement("g", {
26979
+ fill: "#e42127"
26980
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26981
+ "data-name": "Rectangle 20468",
26982
+ d: "M9.474 9.472h27.05v2.983H9.474z"
26983
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26984
+ "data-name": "Rectangle 20470",
26985
+ d: "M28.516 27.512h-3.009v-3.009h3.009z"
26986
+ })), /*#__PURE__*/React__namespace.createElement("g", {
26987
+ fill: "#293072"
26988
+ }, /*#__PURE__*/React__namespace.createElement("path", {
26989
+ "data-name": "Path 84585",
26990
+ 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"
26991
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26992
+ "data-name": "Rectangle 20469",
26993
+ d: "M36.539 27.512H33.53v-3.009h3.009z"
26994
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26995
+ "data-name": "Rectangle 20471",
26996
+ d: "M20.493 27.512h-3.009v-3.009h3.009z"
26997
+ }), /*#__PURE__*/React__namespace.createElement("path", {
26998
+ "data-name": "Rectangle 20472",
26999
+ d: "M12.47 27.512H9.461v-3.009h3.009z"
27000
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27001
+ "data-name": "Rectangle 20473",
27002
+ d: "M36.539 20.036H33.53v-3.009h3.009z"
27003
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27004
+ "data-name": "Rectangle 20474",
27005
+ d: "M28.516 20.036h-3.009v-3.009h3.009z"
27006
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27007
+ "data-name": "Rectangle 20475",
27008
+ d: "M20.493 20.036h-3.009v-3.009h3.009z"
27009
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27010
+ "data-name": "Rectangle 20476",
27011
+ d: "M12.47 20.036H9.461v-3.009h3.009z"
27012
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27013
+ "data-name": "Rectangle 20477",
27014
+ d: "M28.516 35.003h-3.009v-3.009h3.009z"
27015
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27016
+ "data-name": "Rectangle 20478",
27017
+ d: "M20.493 35.003h-3.009v-3.009h3.009z"
27018
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27019
+ "data-name": "Rectangle 20479",
27020
+ d: "M12.47 35.003H9.461v-3.009h3.009z"
27021
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27022
+ "data-name": "Rectangle 20480",
27023
+ fill: "none",
27024
+ d: "M0 0h46v46H0z"
27025
+ }))));
27026
+ };
27027
+
27028
+ var _g$l, _g2, _path$a;
27029
+ 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); }
27030
+ var SvgIconWfCar = function SvgIconWfCar(props) {
27031
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$s({
27032
+ xmlns: "http://www.w3.org/2000/svg",
27033
+ width: 46,
27034
+ height: 46
27035
+ }, props), _g$l || (_g$l = /*#__PURE__*/React__namespace.createElement("g", {
27036
+ fill: "#e42127"
27037
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27038
+ "data-name": "Rectangle 20900",
27039
+ d: "M16.949 27.53h-3.016v-3.016h3.016z"
27040
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27041
+ "data-name": "Rectangle 20901",
27042
+ d: "M3.381 16.976h5.258v2.99H3.381z"
27043
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27044
+ "data-name": "Rectangle 20902",
27045
+ d: "M37.309 16.99h5.258v2.99h-5.258z"
27046
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27047
+ "data-name": "Rectangle 20903",
27048
+ d: "M32.007 27.53h-3.016v-3.016h3.016z"
27049
+ }))), _g2 || (_g2 = /*#__PURE__*/React__namespace.createElement("g", {
27050
+ fill: "#293072"
27051
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27052
+ "data-name": "Rectangle 20904",
27053
+ d: "M9.394 16.99h27.145v2.99H9.394z"
27054
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27055
+ "data-name": "Path 84667",
27056
+ 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"
27057
+ }))), _path$a || (_path$a = /*#__PURE__*/React__namespace.createElement("path", {
27058
+ "data-name": "Rectangle 20905",
27059
+ fill: "none",
27060
+ d: "M0 0h46v46H0z"
27061
+ })));
27062
+ };
27063
+
27064
+ var _g$k;
27065
+ 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); }
27066
+ var SvgIconWfForklift = function SvgIconWfForklift(props) {
27067
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$r({
27068
+ xmlns: "http://www.w3.org/2000/svg",
27069
+ width: 46,
27070
+ height: 46
27071
+ }, props), _g$k || (_g$k = /*#__PURE__*/React__namespace.createElement("g", {
27072
+ "data-name": "icon_wf_forklift"
27073
+ }, /*#__PURE__*/React__namespace.createElement("g", {
27074
+ fill: "#e42127"
27075
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27076
+ "data-name": "Rectangle 20941",
27077
+ d: "M29.695 20.697h5.339v3.036h-5.339z"
27078
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27079
+ "data-name": "Path 84690",
27080
+ d: "M43.829 36.74h-6.131a3.044 3.044 0 0 1-3.04-3.04V3.097h3.036v30.6h6.136Z"
27081
+ })), /*#__PURE__*/React__namespace.createElement("g", {
27082
+ fill: "#293072"
27083
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27084
+ "data-name": "Path 84688",
27085
+ 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"
27086
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27087
+ "data-name": "Path 84689",
27088
+ 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"
27089
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27090
+ "data-name": "Path 84691",
27091
+ 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"
27092
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27093
+ "data-name": "Path 84692",
27094
+ d: "M17.039 23.754a3.041 3.041 0 0 1-3.04-3.041V3.64h3.036v17.073l13.264-.01v3.036l-13.259.016Z"
27095
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27096
+ "data-name": "Rectangle 20942",
27097
+ d: "M19.33 13.025h3.062V22.2H19.33z"
27098
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27099
+ "data-name": "Rectangle 20943",
27100
+ fill: "none",
27101
+ d: "M0 0h46v46H0z"
27102
+ }))));
27103
+ };
27104
+
27105
+ var _g$j;
27106
+ 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); }
27107
+ var SvgIconWfInvoice = function SvgIconWfInvoice(props) {
27108
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$q({
27109
+ xmlns: "http://www.w3.org/2000/svg",
27110
+ width: 46,
27111
+ height: 46
27112
+ }, props), _g$j || (_g$j = /*#__PURE__*/React__namespace.createElement("g", {
27113
+ "data-name": "Group 42733"
27114
+ }, /*#__PURE__*/React__namespace.createElement("g", {
27115
+ fill: "#e42127"
27116
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27117
+ "data-name": "Rectangle 19846",
27118
+ d: "M14.677 21.489h16.596v2.992H14.677z"
27119
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27120
+ "data-name": "Rectangle 19847",
27121
+ d: "M14.677 30.552h16.596v2.992H14.677z"
27122
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27123
+ "data-name": "Rectangle 19848",
27124
+ d: "M14.677 12.438h5.268v3.016h-5.268z"
27125
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27126
+ "data-name": "Path 84307",
27127
+ 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",
27128
+ fill: "#293072"
27129
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27130
+ "data-name": "Rectangle 19849",
27131
+ fill: "none",
27132
+ d: "M0 0h46v46H0z"
27133
+ }))));
27134
+ };
27135
+
27136
+ var _g$i;
27137
+ 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); }
27138
+ var SvgIconWfKeyboard = function SvgIconWfKeyboard(props) {
27139
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$p({
27140
+ xmlns: "http://www.w3.org/2000/svg",
27141
+ width: 45,
27142
+ height: 45
27143
+ }, props), _g$i || (_g$i = /*#__PURE__*/React__namespace.createElement("g", {
27144
+ "data-name": "icon_wf_keyboard_1"
27145
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27146
+ "data-name": "Rectangle 20200",
27147
+ fill: "#e42127",
27148
+ d: "M14.427 28.372h16.148v2.936H14.427z"
27149
+ }), /*#__PURE__*/React__namespace.createElement("g", {
27150
+ fill: "#293072"
27151
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27152
+ "data-name": "Rectangle 20201",
27153
+ d: "M9.288 13.692h2.936v2.936H9.288z"
27154
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27155
+ "data-name": "Rectangle 20202",
27156
+ d: "M17.118 13.692h2.936v2.936h-2.936z"
27157
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27158
+ "data-name": "Rectangle 20203",
27159
+ d: "M24.947 13.692h2.936v2.936h-2.936z"
27160
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27161
+ "data-name": "Rectangle 20204",
27162
+ d: "M32.776 13.692h2.936v2.936h-2.936z"
27163
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27164
+ "data-name": "Rectangle 20205",
27165
+ d: "M9.288 20.988h2.936v2.936H9.288z"
27166
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27167
+ "data-name": "Rectangle 20206",
27168
+ d: "M17.118 20.988h2.936v2.936h-2.936z"
27169
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27170
+ "data-name": "Rectangle 20207",
27171
+ d: "M24.947 20.988h2.936v2.936h-2.936z"
27172
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27173
+ "data-name": "Rectangle 20208",
27174
+ d: "M32.776 20.988h2.936v2.936h-2.936z"
27175
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27176
+ "data-name": "Path 84443",
27177
+ 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"
27178
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27179
+ "data-name": "Rectangle 20209",
27180
+ fill: "none",
27181
+ d: "M0 0h45v45H0z"
27182
+ }))));
27183
+ };
27184
+
27185
+ var _g$h;
27186
+ 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); }
27187
+ var SvgIconWfLogs = function SvgIconWfLogs(props) {
27188
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$o({
27189
+ xmlns: "http://www.w3.org/2000/svg",
27190
+ width: 46,
27191
+ height: 46
27192
+ }, props), _g$h || (_g$h = /*#__PURE__*/React__namespace.createElement("g", {
27193
+ "data-name": "icon_wf_logs"
27194
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27195
+ "data-name": "Path 84292",
27196
+ 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",
27197
+ fill: "#e42127"
27198
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27199
+ "data-name": "Path 84293",
27200
+ 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",
27201
+ fill: "#293072"
27202
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27203
+ "data-name": "Rectangle 19825",
27204
+ fill: "none",
27205
+ d: "M0 0h46v46H0z"
27206
+ }))));
27207
+ };
27208
+
27209
+ var _g$g;
27210
+ 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); }
27211
+ var SvgIconWfNoBarcodePrinter = function SvgIconWfNoBarcodePrinter(props) {
27212
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$n({
27213
+ xmlns: "http://www.w3.org/2000/svg",
27214
+ width: 18,
27215
+ height: 18
27216
+ }, props), _g$g || (_g$g = /*#__PURE__*/React__namespace.createElement("g", {
27217
+ "data-name": "icon_wf_no-barcode-printer v1"
27218
+ }, /*#__PURE__*/React__namespace.createElement("g", {
27219
+ fill: "#293072"
27220
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27221
+ "data-name": "Path 85785",
27222
+ d: "M1.728 4.77h-1.2l.009-2.423a1.2 1.2 0 0 1 1.2-1.195h2.41v1.2H1.738Z"
27223
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27224
+ "data-name": "Path 85786",
27225
+ 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"
27226
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27227
+ "data-name": "Path 85787",
27228
+ 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"
27229
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27230
+ "data-name": "Path 85788",
27231
+ 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"
27232
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27233
+ "data-name": "Rectangle 22708",
27234
+ d: "M2.351 4.768H3.55v8.466H2.351z"
27235
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27236
+ "data-name": "Rectangle 22709",
27237
+ d: "M5.155 4.768H5.7v8.466h-.545z"
27238
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27239
+ "data-name": "Rectangle 22710",
27240
+ d: "M6.996 4.769h1.817v8.459H6.996z"
27241
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27242
+ "data-name": "Rectangle 22711",
27243
+ d: "M10.109 4.768h.545v8.466h-.545z"
27244
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27245
+ "data-name": "Rectangle 22712",
27246
+ d: "M12.259 4.768h1.199v8.466h-1.199z"
27247
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27248
+ "data-name": "Rectangle 22713",
27249
+ d: "M15.063 4.768h.545v8.466h-.545z"
27250
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27251
+ "data-name": "Rectangle 22714",
27252
+ d: "m.833 1.993.848-.848 14.859 14.86-.848.847z"
27253
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27254
+ "data-name": "Rectangle 22715",
27255
+ fill: "none",
27256
+ d: "M0 0h18v18H0z"
27257
+ }))));
27258
+ };
27259
+
27260
+ var _path$9, _g$f, _path2$7;
27261
+ 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); }
27262
+ var SvgIconWfNoScan = function SvgIconWfNoScan(props) {
27263
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$m({
27264
+ xmlns: "http://www.w3.org/2000/svg",
27265
+ width: 46,
27266
+ height: 46
27267
+ }, props), _path$9 || (_path$9 = /*#__PURE__*/React__namespace.createElement("path", {
27268
+ "data-name": "Rectangle 20557",
27269
+ fill: "#e42127",
27270
+ d: "m3.119 5.257 2.146-2.146L42.89 40.737l-2.146 2.146z"
27271
+ })), _g$f || (_g$f = /*#__PURE__*/React__namespace.createElement("g", {
27272
+ fill: "#293072"
27273
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27274
+ "data-name": "Path 84628",
27275
+ 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"
27276
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27277
+ "data-name": "Path 84629",
27278
+ 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"
27279
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27280
+ "data-name": "Path 84630",
27281
+ 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"
27282
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27283
+ "data-name": "Path 84631",
27284
+ 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"
27285
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27286
+ "data-name": "Rectangle 20549",
27287
+ d: "M10.778 12.284h3.036v14.534h-3.036z"
27288
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27289
+ "data-name": "Rectangle 20550",
27290
+ d: "M17.919 12.284h3.036v14.534h-3.036z"
27291
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27292
+ "data-name": "Rectangle 20551",
27293
+ d: "M25.061 12.284h3.036v14.534h-3.036z"
27294
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27295
+ "data-name": "Rectangle 20552",
27296
+ d: "M32.202 12.284h3.036v14.534h-3.036z"
27297
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27298
+ "data-name": "Rectangle 20553",
27299
+ d: "M10.752 30.658h3.062v3.062h-3.062z"
27300
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27301
+ "data-name": "Rectangle 20554",
27302
+ d: "M17.906 30.658h3.062v3.062h-3.062z"
27303
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27304
+ "data-name": "Rectangle 20555",
27305
+ d: "M25.047 30.658h3.062v3.062h-3.062z"
27306
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27307
+ "data-name": "Rectangle 20556",
27308
+ d: "M32.174 30.658h3.062v3.062h-3.062z"
27309
+ }))), _path2$7 || (_path2$7 = /*#__PURE__*/React__namespace.createElement("path", {
27310
+ "data-name": "Rectangle 20558",
27311
+ fill: "none",
27312
+ d: "M0 0h46v46H0z"
27313
+ })));
27314
+ };
27315
+
27316
+ var _g$e;
27317
+ 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); }
27318
+ var SvgIconWfPallet = function SvgIconWfPallet(props) {
27319
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$l({
27320
+ xmlns: "http://www.w3.org/2000/svg",
27321
+ width: 46,
27322
+ height: 46
27323
+ }, props), _g$e || (_g$e = /*#__PURE__*/React__namespace.createElement("g", {
27324
+ "data-name": "icon_wf_pallet_v1"
27325
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27326
+ "data-name": "Path 84681",
27327
+ 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",
27328
+ fill: "#293072"
27329
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27330
+ "data-name": "Rectangle 20930",
27331
+ fill: "none",
27332
+ d: "M0 0h46v46H0z"
27333
+ }))));
27334
+ };
27335
+
27336
+ var _g$d;
27337
+ 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); }
27338
+ var SvgIconWfPin = function SvgIconWfPin(props) {
27339
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$k({
27340
+ xmlns: "http://www.w3.org/2000/svg",
27341
+ width: 46,
27342
+ height: 46
27343
+ }, props), _g$d || (_g$d = /*#__PURE__*/React__namespace.createElement("g", {
27344
+ "data-name": "Group 42962"
27345
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27346
+ "data-name": "Rectangle 20318",
27347
+ fill: "#e42127",
27348
+ d: "M14.114 21.46h17.57v3.079h-17.57z"
27349
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27350
+ "data-name": "Path 84520",
27351
+ 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",
27352
+ fill: "#293072"
27353
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27354
+ "data-name": "Rectangle 20319",
27355
+ fill: "none",
27356
+ d: "M0 0h46v46H0z"
27357
+ }))));
27358
+ };
27359
+
27360
+ var _path$8, _g$c, _path2$6;
27361
+ 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); }
27362
+ var SvgIconWfScan = function SvgIconWfScan(props) {
27363
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$j({
27364
+ xmlns: "http://www.w3.org/2000/svg",
27365
+ width: 46,
27366
+ height: 46
27367
+ }, props), _path$8 || (_path$8 = /*#__PURE__*/React__namespace.createElement("path", {
27368
+ "data-name": "Rectangle 19774",
27369
+ fill: "#e42127",
27370
+ d: "M14.587 23.77h16.84v3.036h-16.84z"
27371
+ })), _g$c || (_g$c = /*#__PURE__*/React__namespace.createElement("g", {
27372
+ fill: "#293072"
27373
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27374
+ "data-name": "Path 84272",
27375
+ 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"
27376
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27377
+ "data-name": "Path 84273",
27378
+ 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"
27379
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27380
+ "data-name": "Path 84274",
27381
+ 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"
27382
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27383
+ "data-name": "Path 84275",
27384
+ 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"
27385
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27386
+ "data-name": "Rectangle 19775",
27387
+ d: "M10.777 12.285h3.036v7.644h-3.036z"
27388
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27389
+ "data-name": "Rectangle 19776",
27390
+ d: "M17.919 12.285h3.036v7.644h-3.036z"
27391
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27392
+ "data-name": "Rectangle 19777",
27393
+ d: "M25.06 12.285h3.036v7.644H25.06z"
27394
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27395
+ "data-name": "Rectangle 19778",
27396
+ d: "M32.202 12.285h3.036v7.644h-3.036z"
27397
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27398
+ "data-name": "Rectangle 19779",
27399
+ d: "M10.751 30.658h3.062v3.062h-3.062z"
27400
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27401
+ "data-name": "Rectangle 19780",
27402
+ d: "M17.906 30.658h3.062v3.062h-3.062z"
27403
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27404
+ "data-name": "Rectangle 19781",
27405
+ d: "M25.047 30.658h3.062v3.062h-3.062z"
27406
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27407
+ "data-name": "Rectangle 19782",
27408
+ d: "M32.174 30.658h3.062v3.062h-3.062z"
27409
+ }))), _path2$6 || (_path2$6 = /*#__PURE__*/React__namespace.createElement("path", {
27410
+ "data-name": "Rectangle 19783",
27411
+ fill: "none",
27412
+ d: "M0 0h46v46H0z"
27413
+ })));
27414
+ };
27415
+
27416
+ var _g$b;
27417
+ 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); }
27418
+ var SvgIconWfSend = function SvgIconWfSend(props) {
27419
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$i({
27420
+ xmlns: "http://www.w3.org/2000/svg",
27421
+ width: 46,
27422
+ height: 46
27423
+ }, props), _g$b || (_g$b = /*#__PURE__*/React__namespace.createElement("g", {
27424
+ "data-name": "icon_wf_send"
27425
+ }, /*#__PURE__*/React__namespace.createElement("g", {
27426
+ fill: "#e42127"
27427
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27428
+ "data-name": "Rectangle 19792",
27429
+ d: "m6.452 32.207 6.461-6.461 2.147 2.146-6.462 6.461z"
27430
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27431
+ "data-name": "Rectangle 19793",
27432
+ d: "m11.502 37.258 6.462-6.462 2.146 2.146-6.462 6.462z"
27433
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27434
+ "data-name": "Path 84281",
27435
+ 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",
27436
+ fill: "#293072"
27437
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27438
+ "data-name": "Rectangle 19794",
27439
+ fill: "none",
27440
+ d: "M0 0h46v46H0z"
27441
+ }))));
27442
+ };
27443
+
27444
+ var _g$a;
27445
+ 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); }
27446
+ var SvgIconWfStatusKsef = function SvgIconWfStatusKsef(props) {
27447
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$h({
27448
+ xmlns: "http://www.w3.org/2000/svg",
27449
+ width: 46,
27450
+ height: 46
27451
+ }, props), _g$a || (_g$a = /*#__PURE__*/React__namespace.createElement("g", {
27452
+ "data-name": "Group 42620"
27453
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27454
+ "data-name": "Path 84287",
27455
+ 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",
27456
+ fill: "#e42127"
27457
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27458
+ "data-name": "Path 84288",
27459
+ 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",
27460
+ fill: "#293072"
27461
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27462
+ "data-name": "Rectangle 19778",
27463
+ fill: "none",
27464
+ d: "M0 0h46v46H0z"
27465
+ }))));
27466
+ };
27467
+
27468
+ var _path$7, _g$9, _path2$5;
27469
+ 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); }
27470
+ var SvgIconWfStop = function SvgIconWfStop(props) {
27471
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$g({
27472
+ xmlns: "http://www.w3.org/2000/svg",
27473
+ width: 46,
27474
+ height: 46
27475
+ }, props), _path$7 || (_path$7 = /*#__PURE__*/React__namespace.createElement("path", {
27476
+ "data-name": "Path 84683",
27477
+ 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",
27478
+ fill: "#e42127"
27479
+ })), _g$9 || (_g$9 = /*#__PURE__*/React__namespace.createElement("g", {
27480
+ fill: "#293072"
27481
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27482
+ "data-name": "Path 84684",
27483
+ 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"
27484
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27485
+ "data-name": "Path 84685",
27486
+ 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"
27487
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27488
+ "data-name": "Path 84686",
27489
+ 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"
27490
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27491
+ "data-name": "Path 84687",
27492
+ 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"
27493
+ }))), _path2$5 || (_path2$5 = /*#__PURE__*/React__namespace.createElement("path", {
27494
+ "data-name": "Rectangle 20940",
27495
+ fill: "none",
27496
+ d: "M0 0h46v46H0z"
27497
+ })));
27498
+ };
27499
+
27500
+ var _g$8;
27501
+ 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); }
27502
+ var SvgIconWfUnpin = function SvgIconWfUnpin(props) {
27503
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$f({
27504
+ xmlns: "http://www.w3.org/2000/svg",
27505
+ width: 46,
27506
+ height: 46
27507
+ }, props), _g$8 || (_g$8 = /*#__PURE__*/React__namespace.createElement("g", {
27508
+ "data-name": "Group 42617"
27509
+ }, /*#__PURE__*/React__namespace.createElement("g", {
27510
+ fill: "#293072"
27511
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27512
+ "data-name": "Rectangle 19775",
27513
+ d: "M14.133 21.485h17.281v3.029H14.133z"
27514
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27515
+ "data-name": "Path 84286",
27516
+ 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"
27517
+ })), /*#__PURE__*/React__namespace.createElement("path", {
27518
+ "data-name": "Rectangle 19776",
27519
+ fill: "#e42127",
27520
+ d: "M2.86 5.298 5 3.158l37.54 37.538-2.141 2.14z"
27521
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27522
+ "data-name": "Rectangle 19777",
27523
+ fill: "none",
27524
+ d: "M0 0h46v46H0z"
27525
+ }))));
27526
+ };
27527
+
27528
+ var _path$6, _path2$4, _path3, _path4, _path5;
27529
+ 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); }
27530
+ var SvgIconWfRefresh = function SvgIconWfRefresh(props) {
27531
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$e({
27532
+ xmlns: "http://www.w3.org/2000/svg",
27533
+ width: 26,
27534
+ height: 26
27535
+ }, props), _path$6 || (_path$6 = /*#__PURE__*/React__namespace.createElement("path", {
27536
+ "data-name": "Path 84133",
27537
+ 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",
27538
+ fill: "#293072"
27539
+ })), _path2$4 || (_path2$4 = /*#__PURE__*/React__namespace.createElement("path", {
27540
+ "data-name": "Path 84134",
27541
+ d: "m3.333 22.314-1.76-.011.028-4.423a1.769 1.769 0 0 1 1.764-1.753H7.76v1.76H3.365Z",
27542
+ fill: "#e42127"
27543
+ })), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
27544
+ "data-name": "Path 84135",
27545
+ 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",
27546
+ fill: "#293072"
27547
+ })), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
27548
+ "data-name": "Path 84136",
27549
+ 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",
27550
+ fill: "#e42127"
27551
+ })), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
27552
+ "data-name": "Rectangle 19550",
27553
+ fill: "none",
27554
+ d: "M0 0h26v26H0z"
27555
+ })));
27556
+ };
27557
+
27558
+ var _path$5, _path2$3;
27559
+ 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); }
27560
+ var SvgIconUiClose = function SvgIconUiClose(props) {
27561
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$d({
27562
+ xmlns: "http://www.w3.org/2000/svg",
27563
+ width: 46,
27564
+ height: 46
27565
+ }, props), _path$5 || (_path$5 = /*#__PURE__*/React__namespace.createElement("path", {
27566
+ "data-name": "Path 84635",
27567
+ 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",
27568
+ fill: "#2a3270"
27569
+ })), _path2$3 || (_path2$3 = /*#__PURE__*/React__namespace.createElement("path", {
27570
+ fill: "none",
27571
+ d: "M0 0h46v46H0z"
27572
+ })));
27573
+ };
27574
+
27575
+ var _path$4, _path2$2;
27576
+ 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); }
27577
+ var SvgIconUiChevronUp = function SvgIconUiChevronUp(props) {
27578
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$c({
27579
+ xmlns: "http://www.w3.org/2000/svg",
27580
+ width: 46,
27581
+ height: 46
27582
+ }, props), _path$4 || (_path$4 = /*#__PURE__*/React__namespace.createElement("path", {
27583
+ "data-name": "Path 84638",
27584
+ 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",
27585
+ fill: "#293072"
27586
+ })), _path2$2 || (_path2$2 = /*#__PURE__*/React__namespace.createElement("path", {
27587
+ "data-name": "Rectangle 20576",
27588
+ fill: "none",
27589
+ d: "M0 0h46v46H0z"
27590
+ })));
27591
+ };
27592
+
27593
+ var _g$7;
27594
+ 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); }
27595
+ var SvgIconUiChevronDown = function SvgIconUiChevronDown(props) {
27596
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$b({
27597
+ xmlns: "http://www.w3.org/2000/svg",
27598
+ width: 46,
27599
+ height: 46
27600
+ }, props), _g$7 || (_g$7 = /*#__PURE__*/React__namespace.createElement("g", {
27601
+ "data-name": "icon_wf_arrow_1"
27602
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27603
+ "data-name": "Path 84570",
27604
+ 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",
27605
+ fill: "#293072"
27606
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27607
+ "data-name": "Rectangle 20445",
27608
+ fill: "none",
27609
+ d: "M0 0h46v46H0z"
27610
+ }))));
27611
+ };
27612
+
27613
+ var _path$3, _path2$1;
27614
+ 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); }
27615
+ var SvgIconUiChevronRight = function SvgIconUiChevronRight(props) {
27616
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$a({
27617
+ xmlns: "http://www.w3.org/2000/svg",
27618
+ width: 46,
27619
+ height: 46
27620
+ }, props), _path$3 || (_path$3 = /*#__PURE__*/React__namespace.createElement("path", {
27621
+ "data-name": "Path 84638",
27622
+ 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",
27623
+ fill: "#293072"
27624
+ })), _path2$1 || (_path2$1 = /*#__PURE__*/React__namespace.createElement("path", {
27625
+ "data-name": "Rectangle 20576",
27626
+ fill: "none",
27627
+ d: "M0 0h46v46H0z"
27628
+ })));
27629
+ };
27630
+
27631
+ var _path$2, _path2;
27632
+ 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); }
27633
+ var SvgIconUiChevronLeft = function SvgIconUiChevronLeft(props) {
27634
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$9({
27635
+ xmlns: "http://www.w3.org/2000/svg",
27636
+ width: 46,
27637
+ height: 46
27638
+ }, props), _path$2 || (_path$2 = /*#__PURE__*/React__namespace.createElement("path", {
27639
+ "data-name": "Path 84638",
27640
+ 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",
27641
+ fill: "#293072"
27642
+ })), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
27643
+ "data-name": "Rectangle 20576",
27644
+ fill: "none",
27645
+ d: "M0 0h46v46H0z"
27646
+ })));
27647
+ };
27648
+
27649
+ var _g$6;
27650
+ 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); }
27651
+ var SvgIconSpCheckMark = function SvgIconSpCheckMark(props) {
27652
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$8({
27653
+ xmlns: "http://www.w3.org/2000/svg",
27654
+ width: 42,
27655
+ height: 42
27656
+ }, props), _g$6 || (_g$6 = /*#__PURE__*/React__namespace.createElement("g", {
27657
+ "data-name": "Group 47571"
27658
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27659
+ "data-name": "Path 85747",
27660
+ d: "M3.051 21A17.935 17.935 0 1 0 20.986 3.065 17.935 17.935 0 0 0 3.051 21",
27661
+ fill: "#15b028"
27662
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27663
+ "data-name": "Path 85748",
27664
+ 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",
27665
+ fill: "#fff"
27666
+ }))));
27667
+ };
27668
+
27669
+ var _g$5;
27670
+ 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); }
27671
+ var SvgIconSpWarning = function SvgIconSpWarning(props) {
27672
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$7({
27673
+ xmlns: "http://www.w3.org/2000/svg",
27674
+ width: 42,
27675
+ height: 42
27676
+ }, props), _g$5 || (_g$5 = /*#__PURE__*/React__namespace.createElement("g", {
27677
+ "data-name": "Group 47569"
27678
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27679
+ "data-name": "Path 85746",
27680
+ d: "M2.974 21A17.935 17.935 0 1 0 20.909 3.065 17.935 17.935 0 0 0 2.974 21",
27681
+ fill: "#e42127"
27682
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27683
+ "data-name": "Rectangle 22649",
27684
+ fill: "#fff",
27685
+ d: "M18.34 10.833h5v12.174h-5z"
27686
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27687
+ "data-name": "Rectangle 22650",
27688
+ fill: "#fff",
27689
+ d: "M18.326 25.98h5.028v5.028h-5.028z"
27690
+ }))));
27691
+ };
27692
+
27693
+ var _g$4;
27694
+ 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); }
27695
+ var SvgIconSpInfo = function SvgIconSpInfo(props) {
27696
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$6({
27697
+ xmlns: "http://www.w3.org/2000/svg",
27698
+ width: 45,
27699
+ height: 45
27700
+ }, props), _g$4 || (_g$4 = /*#__PURE__*/React__namespace.createElement("g", {
27701
+ "data-name": "Group 47565"
27702
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27703
+ "data-name": "Path 85744",
27704
+ 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",
27705
+ fill: "#293072"
27706
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27707
+ "data-name": "Rectangle 22643",
27708
+ fill: "#fff",
27709
+ d: "M19.895 20.363h5.343v13.009h-5.343z"
27710
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27711
+ "data-name": "Rectangle 22644",
27712
+ fill: "#fff",
27713
+ d: "M19.88 11.813h5.373v5.373H19.88z"
27714
+ }))));
27715
+ };
27716
+
27717
+ var _g$3;
27718
+ 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); }
27719
+ var SvgIconSpInfo2 = function SvgIconSpInfo2(props) {
27720
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$5({
27721
+ xmlns: "http://www.w3.org/2000/svg",
27722
+ width: 45,
27723
+ height: 45
27724
+ }, props), _g$3 || (_g$3 = /*#__PURE__*/React__namespace.createElement("g", {
27725
+ fill: "#293072"
27726
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27727
+ "data-name": "Path 85745",
27728
+ 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"
27729
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27730
+ "data-name": "Rectangle 22646",
27731
+ d: "M19.985 20.436h5.142v12.521h-5.142z"
27732
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27733
+ "data-name": "Rectangle 22647",
27734
+ d: "M19.971 12.207h5.171v5.171h-5.171z"
27735
+ }))));
27736
+ };
27737
+
27738
+ var _rect$1, _rect2, _rect3;
27739
+ 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); }
27740
+ var SvgMenuBurger = function SvgMenuBurger(props) {
27741
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$4({
27742
+ "data-name": "menu burger",
27743
+ xmlns: "http://www.w3.org/2000/svg",
27744
+ width: 42,
27745
+ height: 36
27746
+ }, props), _rect$1 || (_rect$1 = /*#__PURE__*/React__namespace.createElement("rect", {
27747
+ "data-name": "Rectangle 17015",
27748
+ width: 42,
27749
+ height: 6,
27750
+ rx: 3,
27751
+ fill: "#fff"
27752
+ })), _rect2 || (_rect2 = /*#__PURE__*/React__namespace.createElement("rect", {
27753
+ "data-name": "Rectangle 17018",
27754
+ width: 42,
27755
+ height: 6,
27756
+ rx: 3,
27757
+ transform: "translate(0 30)",
27758
+ fill: "#fff"
27759
+ })), _rect3 || (_rect3 = /*#__PURE__*/React__namespace.createElement("rect", {
27760
+ "data-name": "Rectangle 17016",
27761
+ width: 33,
27762
+ height: 6,
27763
+ rx: 3,
27764
+ transform: "translate(9 15)",
27765
+ fill: "#fff"
27766
+ })));
27767
+ };
27768
+
27769
+ var _defs, _path$1, _g$2;
27770
+ 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); }
27771
+ var SvgUpdateIcon = function SvgUpdateIcon(props) {
27772
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$3({
27773
+ "data-name": "Component 231 \\u2013 4",
27774
+ xmlns: "http://www.w3.org/2000/svg",
27775
+ width: 25.813,
27776
+ height: 23.313
27777
+ }, props), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
27778
+ id: "update_icon_svg__a"
27779
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27780
+ "data-name": "Rectangle 22651",
27781
+ transform: "translate(.448 .448)",
27782
+ fill: "#61cc61",
27783
+ d: "M0 0h18v18H0z"
27784
+ })))), _path$1 || (_path$1 = /*#__PURE__*/React__namespace.createElement("path", {
27785
+ 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",
27786
+ fill: "#e42127",
27787
+ fillRule: "evenodd"
27788
+ })), _g$2 || (_g$2 = /*#__PURE__*/React__namespace.createElement("g", {
27789
+ "data-name": "Group 47569",
27790
+ clipPath: "url(#update_icon_svg__a)",
27791
+ transform: "translate(7.365 -.448)"
27792
+ }, /*#__PURE__*/React__namespace.createElement("path", {
27793
+ "data-name": "Path 85746",
27794
+ 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",
27795
+ fill: "#61cc61"
27796
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27797
+ "data-name": "Rectangle 22649",
27798
+ fill: "#fff",
27799
+ d: "M8.251 4.874H10.5v5.477H8.251z"
27800
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27801
+ "data-name": "Rectangle 22650",
27802
+ fill: "#fff",
27803
+ d: "M8.245 11.688h2.262v2.262H8.245z"
27804
+ }))));
27805
+ };
27806
+
27807
+ var _g$1;
27808
+ 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); }
27809
+ var SvgCheckboxDefault = function SvgCheckboxDefault(props) {
27810
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$2({
27811
+ xmlns: "http://www.w3.org/2000/svg",
27812
+ width: 27,
27813
+ height: 27
27814
+ }, props), _g$1 || (_g$1 = /*#__PURE__*/React__namespace.createElement("g", {
27815
+ "data-name": "Rectangle 18315",
27816
+ fill: "#fff",
27817
+ stroke: "#a7b1d3",
27818
+ strokeWidth: 1.5
27819
+ }, /*#__PURE__*/React__namespace.createElement("rect", {
27820
+ width: 27,
27821
+ height: 27,
27822
+ rx: 3,
27823
+ stroke: "none"
27824
+ }), /*#__PURE__*/React__namespace.createElement("rect", {
27825
+ x: 0.75,
27826
+ y: 0.75,
27827
+ width: 25.5,
27828
+ height: 25.5,
27829
+ rx: 2.25,
27830
+ fill: "none"
27831
+ }))));
27832
+ };
27833
+
27834
+ var _rect, _path;
27835
+ 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); }
27836
+ var SvgCheckboxChecked = function SvgCheckboxChecked(props) {
27837
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends$1({
27838
+ xmlns: "http://www.w3.org/2000/svg",
27839
+ width: 20,
27840
+ height: 20
27841
+ }, props), _rect || (_rect = /*#__PURE__*/React__namespace.createElement("rect", {
27842
+ "data-name": "Rectangle 18315",
27843
+ width: 20,
27844
+ height: 20,
27845
+ rx: 3,
27846
+ fill: "#293072"
27847
+ })), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
27848
+ "data-name": "Path 85764",
27849
+ 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",
27850
+ fill: "#fff"
27851
+ })));
27852
+ };
27853
+
27854
+ var _g;
27855
+ 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); }
27856
+ var SvgChecbkoxIndeterminate = function SvgChecbkoxIndeterminate(props) {
27857
+ return /*#__PURE__*/React__namespace.createElement("svg", _extends({
27858
+ xmlns: "http://www.w3.org/2000/svg",
27859
+ width: 27,
27860
+ height: 27
27861
+ }, props), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
27862
+ "data-name": "Group 47972",
27863
+ transform: "translate(0 -7)"
27864
+ }, /*#__PURE__*/React__namespace.createElement("rect", {
27865
+ "data-name": "Rectangle 18315",
27866
+ width: 27,
27867
+ height: 27,
27868
+ rx: 3,
27869
+ transform: "translate(0 7)",
27870
+ fill: "#252a67"
27871
+ }), /*#__PURE__*/React__namespace.createElement("path", {
27872
+ "data-name": "Rectangle 22927",
27873
+ fill: "#fff",
27874
+ d: "M5 19h17v3H5z"
27875
+ }))));
27876
+ };
27877
+
27878
+ var StyledIconWrapper = styled(Box)(function (_a) {
27879
+ _a.color; var iconName = _a.iconName;
27880
+ return ({
27881
+ transition: 'transform 0.3s ease-in-out',
27882
+ marginLeft: iconName === 'icon_wf_refresh' ? 5 : '',
27883
+ '&.small': {
27884
+ 'svg': {
27885
+ width: '18px',
27886
+ height: '18px',
27887
+ }
27888
+ },
27889
+ '&.medium': {
27890
+ 'svg': {
27891
+ width: '26px',
27892
+ height: '26px',
27893
+ }
27894
+ },
27895
+ '&.big': {
27896
+ 'svg': {
27897
+ width: '45px',
27898
+ height: '45px',
27899
+ }
27900
+ },
27901
+ 'svg': {
27902
+ width: '26px',
27903
+ height: '26px',
27904
+ '@media(min-width: 720px)': {
27905
+ width: '45px',
27906
+ height: '45px',
27907
+ },
27908
+ '@media(min-width: 1024px)': {
27909
+ width: '18px',
27910
+ height: '18px',
27911
+ }
27912
+ },
27913
+ '&.red-navy': {
27914
+ '#color-1': {
27915
+ 'rect, path': {
27916
+ // fill: theme.mainPallete.primary[color],
27917
+ fill: theme.mainPallete.primary.blue,
27918
+ }
27919
+ },
27920
+ '#color-2': {
27921
+ 'rect, path': {
27922
+ fill: theme.mainPallete.primary.red,
27923
+ }
27924
+ },
27925
+ '#color-3': {
27926
+ 'rect, path': {
27927
+ fill: theme.mainPallete.primary.placeholderText,
27928
+ }
27929
+ },
27930
+ },
27931
+ '&.red': {
27932
+ '#color-1': {
27933
+ 'rect, path': {
27934
+ fill: theme.mainPallete.primary.red,
27935
+ }
27936
+ },
27937
+ '#color-2': {
27938
+ 'rect, path': {
27939
+ fill: theme.mainPallete.primary.red,
27940
+ }
27941
+ },
27942
+ },
27943
+ '&.blue': {
27944
+ '#color-1': {
27945
+ 'rect, path': {
27946
+ fill: theme.mainPallete.primary.blue,
27947
+ }
27948
+ },
27949
+ '#color-2': {
27950
+ 'rect, path': {
27951
+ fill: theme.mainPallete.primary.blue,
27952
+ }
27953
+ },
27954
+ },
27955
+ '&.gray': {
27956
+ '#color-1': {
27957
+ 'rect, path': {
27958
+ fill: theme.mainPallete.primary.grey,
27959
+ }
27960
+ },
27961
+ '#color-2': {
27962
+ 'rect, path': {
27963
+ fill: theme.mainPallete.primary.grey,
27964
+ }
27965
+ },
27966
+ },
27967
+ '&.white': {
27968
+ '#color-1': {
27969
+ 'rect, path': {
27970
+ fill: theme.mainPallete.primary.white,
27971
+ }
27972
+ },
27973
+ '#color-2': {
27974
+ 'rect, path': {
27975
+ fill: theme.mainPallete.primary.white,
27976
+ }
27977
+ },
27978
+ '#color-3': {
27979
+ 'rect, path': {
27980
+ fill: theme.mainPallete.primary.white,
27981
+ }
27982
+ },
27983
+ },
27984
+ '&.disabled': {
27985
+ '#color-1': {
27986
+ 'rect, path': {
27987
+ fill: theme.mainPallete.primary.placeholderText,
27988
+ }
27989
+ },
27990
+ '#color-2': {
27991
+ 'rect, path': {
27992
+ fill: theme.mainPallete.primary.placeholderText,
27993
+ }
27994
+ },
27995
+ '#color-3': {
27996
+ 'rect, path': {
27997
+ fill: theme.mainPallete.primary.placeholderText,
27998
+ }
27999
+ },
28000
+ },
28001
+ '&.special-green': {
28002
+ '#color-1': {
28003
+ 'rect, path': {
28004
+ fill: theme.mainPallete.secondary.specialGreen,
28005
+ }
28006
+ },
28007
+ '#color-2': {
28008
+ 'rect, path': {
28009
+ fill: theme.mainPallete.secondary.specialGreen,
28010
+ }
28011
+ },
28012
+ '#color-3': {
28013
+ 'rect, path': {
28014
+ fill: theme.mainPallete.secondary.specialGreen,
28015
+ }
28016
+ },
28017
+ },
28018
+ '&.black': {
28019
+ '#color-1': {
28020
+ 'rect, path': {
28021
+ fill: theme.mainPallete.secondary.buttonBlack,
28022
+ }
28023
+ },
28024
+ '#color-2': {
28025
+ 'rect, path': {
28026
+ fill: theme.mainPallete.secondary.buttonBlack,
28027
+ }
28028
+ },
28029
+ '#color-3': {
28030
+ 'rect, path': {
28031
+ fill: theme.mainPallete.secondary.buttonBlack,
28032
+ }
28033
+ },
28034
+ },
28035
+ });
28036
+ });
28037
+ // @ts-ignore
28038
+ var Icon = function (_a) {
28039
+ var iconName = _a.iconName, color = _a.color, size = _a.size, forwardedRef = _a.forwardedRef, rest = __rest(_a, ["iconName", "color", "size", "forwardedRef"]);
28040
+ 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, {})] })));
28041
+ };
28042
+
26570
28043
  exports.AppTile = AppTileComponent;
26571
28044
  exports.Button = CustomButtonComponent;
28045
+ exports.Icon = Icon;
26572
28046
  exports.Illustration = Illustration;
26573
28047
  exports.Typography = TypographyComponent;
26574
28048
  //# sourceMappingURL=index.js.map