hrm_ui_lib 2.4.39 → 2.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/{Alert-CnB-WiOO.js → Alert-CtY1YM0z.js} +1 -1
  2. package/components/Alert/Alert.js +1 -1
  3. package/components/Checkbox/Checkbox.js +1 -1
  4. package/components/IconDynamicComponent/IconDynamicComponent.d.ts +8 -0
  5. package/components/IconDynamicComponent/IconDynamicComponent.js +36 -0
  6. package/components/SVGIcons/IconAirplaneTakeOff.d.ts +4 -0
  7. package/components/SVGIcons/IconAirplaneTakeOff.js +8 -0
  8. package/components/SVGIcons/IconAirplaneTakeOffFilled.d.ts +4 -0
  9. package/components/SVGIcons/IconAirplaneTakeOffFilled.js +8 -0
  10. package/components/SVGIcons/IconChartPerson.d.ts +4 -0
  11. package/components/SVGIcons/IconChartPerson.js +8 -0
  12. package/components/SVGIcons/IconChartPersonFilled.d.ts +4 -0
  13. package/components/SVGIcons/IconChartPersonFilled.js +8 -0
  14. package/components/SVGIcons/IconFastAcceleration.d.ts +4 -0
  15. package/components/SVGIcons/IconFastAcceleration.js +8 -0
  16. package/components/SVGIcons/IconFastAccelerationFilled.d.ts +4 -0
  17. package/components/SVGIcons/IconFastAccelerationFilled.js +8 -0
  18. package/components/SVGIcons/IconFeed.d.ts +4 -0
  19. package/components/SVGIcons/IconFeed.js +8 -0
  20. package/components/SVGIcons/IconFeedFilled.d.ts +4 -0
  21. package/components/SVGIcons/IconFeedFilled.js +8 -0
  22. package/components/SVGIcons/IconLibrary.d.ts +4 -0
  23. package/components/SVGIcons/IconLibrary.js +8 -0
  24. package/components/SVGIcons/IconLibraryFilled.d.ts +4 -0
  25. package/components/SVGIcons/IconLibraryFilled.js +8 -0
  26. package/components/SVGIcons/IconPeopleTeam.d.ts +4 -0
  27. package/components/SVGIcons/IconPeopleTeam.js +8 -0
  28. package/components/SVGIcons/IconPeopleTeamFilled.d.ts +4 -0
  29. package/components/SVGIcons/IconPeopleTeamFilled.js +8 -0
  30. package/components/SVGIcons/IconTrophy.d.ts +4 -0
  31. package/components/SVGIcons/IconTrophy.js +8 -0
  32. package/components/SVGIcons/IconTrophyFilled.d.ts +4 -0
  33. package/components/SVGIcons/IconTrophyFilled.js +8 -0
  34. package/components/SVGIcons/IconUs.d.ts +4 -0
  35. package/components/SVGIcons/IconUs.js +7 -0
  36. package/components/SVGIcons/icon-names.d.ts +2 -0
  37. package/components/SVGIcons/icon-names.js +321 -0
  38. package/components/SVGIcons/index.d.ts +15 -0
  39. package/components/SVGIcons/index.js +15 -0
  40. package/components/Snackbar/Snackbar.js +1 -1
  41. package/helperComponents/ErrorMessage/ErrorMessage.js +1 -1
  42. package/helperComponents/index.d.ts +0 -1
  43. package/helperComponents/index.js +0 -1
  44. package/package.json +1 -1
  45. package/helperComponents/IconDynamicComponent/IconDynamicComponent.d.ts +0 -9
  46. package/helperComponents/IconDynamicComponent/IconDynamicComponent.js +0 -12
  47. package/helperComponents/IconDynamicComponent/constants.d.ts +0 -3
  48. package/helperComponents/IconDynamicComponent/constants.js +0 -12
  49. /package/{helperComponents → components}/IconDynamicComponent/index.d.ts +0 -0
  50. /package/{helperComponents → components}/IconDynamicComponent/index.js +0 -0
@@ -33,7 +33,7 @@ import 'react-syntax-highlighter/dist/esm/styles/prism';
33
33
  import { Link } from './components/Link/Link.js';
34
34
  import { PopoverDesktop } from './components/Popover/PopoverDesktop.js';
35
35
  import { IconInfo } from './components/SVGIcons/IconInfo.js';
36
- import { IconDynamicComponent } from './helperComponents/IconDynamicComponent/IconDynamicComponent.js';
36
+ import { IconDynamicComponent } from './components/IconDynamicComponent/IconDynamicComponent.js';
37
37
  import 'react-toastify/dist/ReactToastify.css';
38
38
  import '@babel/runtime/helpers/typeof';
39
39
  import { IconDismissFilled } from './components/SVGIcons/IconDismissFilled.js';
@@ -4,7 +4,7 @@ import classnames from 'classnames';
4
4
  import { Text } from '../Text';
5
5
  import { Button } from '../Button';
6
6
  import IconDismissFilled from '../SVGIcons/IconDismissFilled';
7
- import { IconDynamicComponent } from '../../helperComponents';
7
+ import { IconDynamicComponent } from '../IconDynamicComponent';
8
8
  export const Alert = (props) => {
9
9
  const { buttonProps, type = 'information', position = 'inline', text, subtext, closeIcon, onClose, className = '' } = props;
10
10
  return (_jsx("div", { className: classnames('alert', `alert--${type} alert--${position}`, className), children: _jsxs("div", { className: "alert__content", children: [_jsx(IconDynamicComponent, { componentName: ICONS_MAPPING[type], size: "small", type: TYPE_MAPPING[type] }), _jsxs("div", { className: "alert__text pl-8", children: [_jsxs("div", { children: [_jsx(Text, { type: "primary", size: "standard", weight: "regular", lineHeight: "large", children: text }), subtext ? (_jsx(Text, { className: 'mt-4', type: "secondary", size: "small", weight: "regular", lineHeight: "large", children: subtext })) : null] }), buttonProps ? (_jsxs("div", { className: "alert__actions", children: [buttonProps.confirm && (_jsx(Button, Object.assign({ size: "medium", type: "secondary" }, buttonProps.confirm))), buttonProps.cancel && (_jsx(Button, Object.assign({ size: "medium", type: "tertiary", className: "ml-12" }, buttonProps.cancel)))] })) : null] }), closeIcon ? (_jsx(IconDismissFilled, { type: TYPE_MAPPING[type], size: "xsmall", className: "ml-12 pointer", onClick: onClose })) : null] }) }));
@@ -5,7 +5,7 @@ import { Popover } from '../Popover';
5
5
  import { Link } from '../Link';
6
6
  import { Text } from '../Text';
7
7
  import IconInfo from '../SVGIcons/IconInfo';
8
- import { IconDynamicComponent } from '../../helperComponents';
8
+ import { IconDynamicComponent } from '../IconDynamicComponent';
9
9
  export const Checkbox = forwardRef((props, ref) => {
10
10
  const { label, disabled, required = false, link, name, setFieldValue, selectedValue, value, className = '', iconProps = { name: 'checkmark' }, dataId = '', onClick, beforeLink, afterLink, helperText = '', popoverAddons, isInvalid, stopPropagation = false } = props;
11
11
  const localRef = useRef(null);
@@ -0,0 +1,8 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from '../SVGIcons/types';
3
+ import type { TIconName } from '../SVGIcons/icon-names';
4
+ interface IconDynamicComponentProps extends ISVGIconProps {
5
+ componentName: TIconName;
6
+ }
7
+ export declare const IconDynamicComponent: ({ componentName, ...rest }: IconDynamicComponentProps) => ReactElement | null;
8
+ export {};
@@ -0,0 +1,36 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { lazy, Suspense } from 'react';
14
+ export const IconDynamicComponent = (_a) => {
15
+ var { componentName } = _a, rest = __rest(_a, ["componentName"]);
16
+ if (!componentName) {
17
+ return null;
18
+ }
19
+ const toPascalCase = (value) => value
20
+ .replace(/^[a-z]/, (m) => m.toUpperCase())
21
+ .replace(/[A-Z]/g, (m) => ` ${m}`)
22
+ .trim()
23
+ .split(/\s|_|-/)
24
+ .map((word) => word.charAt(0).toUpperCase() + word.slice(1))
25
+ .join('');
26
+ const resolvedName = toPascalCase(componentName);
27
+ const exportName = `Icon${resolvedName}`;
28
+ // Dynamically load the component based on the componentName prop
29
+ const Component = lazy(() => import('../../components/SVGIcons').then((mod) => {
30
+ var _a;
31
+ return ({
32
+ default: (_a = mod[exportName]) !== null && _a !== void 0 ? _a : (() => null)
33
+ });
34
+ }));
35
+ return (_jsx(Suspense, { fallback: null, children: _jsx(Component, Object.assign({}, rest)) }));
36
+ };
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconAirplaneTakeOff: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconAirplaneTakeOff;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconAirplaneTakeOff = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M8.31551 8.40816L7.54364 7.28135C6.59057 5.89 7.58682 4 9.27329 4C9.75351 4 10.2192 4.16486 10.5924 4.46701L13.1732 6.55618C13.4827 6.22856 13.852 5.87691 14.2634 5.55966C14.9221 5.0518 15.7632 4.57418 16.6924 4.50263C18.9302 4.33032 20.6017 5.7461 21.547 6.82923C22.0357 7.38921 22.1337 8.09723 21.9247 8.71205C21.7201 9.31393 21.2312 9.80871 20.5828 10.0323L15.212 11.8842L12.0496 16.1009C11.6249 16.6672 10.9584 17.0004 10.2506 17.0004C8.83529 17.0004 7.77186 15.7086 8.04385 14.3196L8.29513 13.0364L5.7653 13.5826C4.34291 13.8897 3 12.8058 3 11.3506V7.69166C3 6.75761 3.7572 6.00041 4.69125 6.00041C5.31015 6.00041 5.87962 6.33847 6.17598 6.8818L7.14191 8.65266L8.31551 8.40816ZM8.78114 6.43365L9.90662 8.07668L11.8053 7.68112C11.8953 7.66237 11.9844 7.63316 12.0714 7.59414L9.64863 5.63288C9.54243 5.54691 9.40993 5.5 9.27329 5.5C8.79343 5.5 8.50996 6.03777 8.78114 6.43365ZM16.8076 5.9982C16.3011 6.0372 15.7399 6.31535 15.1793 6.74757C14.63 7.17109 14.1517 7.68771 13.8188 8.08877C13.3987 8.5949 12.813 9.00339 12.1113 9.14959L6.90297 10.2346C6.5794 10.3021 6.24985 10.1497 6.09158 9.85955L4.85914 7.60008C4.82563 7.53864 4.76123 7.50041 4.69125 7.50041C4.58562 7.50041 4.5 7.58604 4.5 7.69166V11.3506C4.5 11.8498 4.96073 12.2217 5.44873 12.1164L9.09172 11.3298C9.33829 11.2766 9.59511 11.3509 9.7752 11.5275C9.95528 11.7041 10.0345 11.9595 9.98602 12.207L9.51589 14.6078C9.42534 15.0703 9.7794 15.5004 10.2506 15.5004C10.4863 15.5004 10.7082 15.3895 10.8496 15.2009L14.15 10.8002C14.2399 10.6802 14.3638 10.59 14.5055 10.5411L20.0938 8.61424C20.3174 8.53712 20.4536 8.37897 20.5045 8.22935C20.5509 8.09266 20.5347 7.95059 20.4168 7.81553C19.5642 6.83853 18.3185 5.88186 16.8076 5.9982ZM3.75 19.5C3.33579 19.5 3 19.8358 3 20.25C3 20.6642 3.33579 21 3.75 21H20.25C20.6642 21 21 20.6642 21 20.25C21 19.8358 20.6642 19.5 20.25 19.5H3.75Z", fill: "#222222" }) }));
8
+ export default IconAirplaneTakeOff;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconAirplaneTakeOffFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconAirplaneTakeOffFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconAirplaneTakeOffFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M12.3937 5.92516L10.5225 4.41035C10.1945 4.14486 9.78533 4 9.36338 4C7.956 4 7.06844 5.51429 7.75609 6.74223L8.13761 7.42352L11.6014 6.7019C11.6567 6.69037 11.7711 6.64122 11.8952 6.49173C12.0355 6.32272 12.2028 6.1297 12.3937 5.92516ZM3 20C3 19.4477 3.44772 19 4 19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20ZM21.547 6.82934C20.6017 5.74617 18.9302 4.33032 16.6924 4.50263C15.7632 4.57418 14.9221 5.0518 14.2634 5.55966C13.5935 6.07622 13.0355 6.68399 12.6647 7.13069C12.4221 7.42283 12.1192 7.61572 11.8053 7.68112L7.14191 8.65266L6.17598 6.8818C5.87962 6.33847 5.31015 6.00041 4.69125 6.00041C3.7572 6.00041 3 6.75761 3 7.69166V11.3815C3 12.822 4.31234 13.906 5.72694 13.6339L9.02764 12.999L8.51953 14.2331C7.97639 15.5522 8.94626 17.0004 10.3728 17.0004C11.0037 17.0004 11.5978 16.7034 11.9763 16.1987L15.212 11.8842L20.5827 10.0324C21.2312 9.80882 21.7201 9.31405 21.9247 8.71216C22.1337 8.09735 22.0357 7.38933 21.547 6.82934Z", fill: "#222222" }) }));
8
+ export default IconAirplaneTakeOffFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconChartPerson: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconChartPerson;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconChartPerson = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M12.5 2.75C12.5 2.33579 12.1642 2 11.75 2C11.3358 2 11 2.33579 11 2.75V3H5.25C3.45507 3 2 4.45507 2 6.25V15.75C2 17.5449 3.45507 19 5.25 19H7.64847L6.17333 20.7699C5.90813 21.0881 5.95109 21.561 6.26928 21.8262C6.58747 22.0914 7.0604 22.0485 7.32559 21.7303L9.60114 19H13.1089C13.2868 18.3851 13.672 17.8583 14.1837 17.5H5.25C4.2835 17.5 3.5 16.7165 3.5 15.75V6.25C3.5 5.2835 4.2835 4.5 5.25 4.5H18.75C19.7165 4.5 20.5 5.2835 20.5 6.25V11.6273C21.4067 12.2598 22 13.3106 22 14.5V6.25C22 4.45507 20.5449 3 18.75 3H12.5V2.75ZM6 7.75C6 7.33579 6.33579 7 6.75 7H10.75C11.1642 7 11.5 7.33579 11.5 7.75C11.5 8.16421 11.1642 8.5 10.75 8.5H6.75C6.33579 8.5 6 8.16421 6 7.75ZM6.75 10C6.33579 10 6 10.3358 6 10.75C6 11.1642 6.33579 11.5 6.75 11.5H13.25C13.6642 11.5 14 11.1642 14 10.75C14 10.3358 13.6642 10 13.25 10H6.75ZM6 13.75C6 13.3358 6.33579 13 6.75 13H12.25C12.6642 13 13 13.3358 13 13.75C13 14.1642 12.6642 14.5 12.25 14.5H6.75C6.33579 14.5 6 14.1642 6 13.75ZM21 14.5C21 15.8807 19.8807 17 18.5 17C17.1193 17 16 15.8807 16 14.5C16 13.1193 17.1193 12 18.5 12C19.8807 12 21 13.1193 21 14.5ZM23 19.875C23 21.4315 21.7143 23 18.5 23C15.2857 23 14 21.4374 14 19.875V19.772C14 18.7929 14.7937 18 15.7727 18H21.2273C22.2063 18 23 18.793 23 19.772V19.875Z", fill: "#222222" }) }));
8
+ export default IconChartPerson;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconChartPersonFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconChartPersonFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconChartPersonFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M12.5 2.75C12.5 2.33579 12.1642 2 11.75 2C11.3358 2 11 2.33579 11 2.75V3H5.25C3.45507 3 2 4.45507 2 6.25V15.75C2 17.5449 3.45507 19 5.25 19H7.64847L6.17333 20.7699C5.90813 21.0881 5.95109 21.561 6.26928 21.8262C6.58747 22.0914 7.0604 22.0485 7.32559 21.7303L9.60114 19H13.1089C13.4433 17.8442 14.5097 17 15.7727 17H16.0505C15.4022 16.3647 15 15.4793 15 14.5C15 12.567 16.567 11 18.5 11C20.433 11 22 12.567 22 14.5V6.25C22 4.45507 20.5449 3 18.75 3H12.5V2.75ZM6 7.75C6 7.33579 6.33579 7 6.75 7H10.75C11.1642 7 11.5 7.33579 11.5 7.75C11.5 8.16421 11.1642 8.5 10.75 8.5H6.75C6.33579 8.5 6 8.16421 6 7.75ZM6.75 10H13.25C13.6642 10 14 10.3358 14 10.75C14 11.1642 13.6642 11.5 13.25 11.5H6.75C6.33579 11.5 6 11.1642 6 10.75C6 10.3358 6.33579 10 6.75 10ZM6.75 13H12.25C12.6642 13 13 13.3358 13 13.75C13 14.1642 12.6642 14.5 12.25 14.5H6.75C6.33579 14.5 6 14.1642 6 13.75C6 13.3358 6.33579 13 6.75 13ZM21 14.5C21 15.8807 19.8807 17 18.5 17C17.1193 17 16 15.8807 16 14.5C16 13.1193 17.1193 12 18.5 12C19.8807 12 21 13.1193 21 14.5ZM23 19.875C23 21.4315 21.7143 23 18.5 23C15.2857 23 14 21.4374 14 19.875V19.772C14 18.7929 14.7937 18 15.7727 18H21.2273C22.2063 18 23 18.793 23 19.772V19.875Z", fill: "#222222" }) }));
8
+ export default IconChartPersonFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconFastAcceleration: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconFastAcceleration;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconFastAcceleration = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M13.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM13.4999 5.5C9.63386 5.5 6.49986 8.63401 6.49986 12.5C6.49986 16.366 9.63386 19.5 13.4999 19.5C17.3659 19.5 20.4999 16.366 20.4999 12.5C20.4999 8.63401 17.3659 5.5 13.4999 5.5ZM13.503 7.00169C16.5414 7.00169 19.0045 9.46479 19.0045 12.5032C19.0045 15.5416 16.5414 18.0047 13.503 18.0047C10.4646 18.0047 8.00155 15.5416 8.00155 12.5032C8.00155 9.46479 10.4646 7.00169 13.503 7.00169ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z", fill: "#222222" }) }));
8
+ export default IconFastAcceleration;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconFastAccelerationFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconFastAccelerationFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconFastAccelerationFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M13.4999 4C18.1943 4 21.9999 7.80558 21.9999 12.5C21.9999 17.1944 18.1943 21 13.4999 21C11.7092 21 10.0478 20.4463 8.67766 19.5007L1.75146 19.5C1.33725 19.5 1.00146 19.1642 1.00146 18.75C1.00146 18.3703 1.28362 18.0565 1.64969 18.0068L1.75146 18L7.01976 18.001C6.62837 17.5404 6.28521 17.0376 5.99809 16.5002L3.74693 16.5C3.33272 16.5 2.99693 16.1642 2.99693 15.75C2.99693 15.3703 3.27908 15.0565 3.64516 15.0068L3.74693 15L5.37379 15.0011C5.1307 14.2103 4.99986 13.3705 4.99986 12.5C4.99986 10.4025 5.7596 8.48241 7.01892 6.99997L2.74986 7C2.33564 7 1.99986 6.66421 1.99986 6.25C1.99986 5.8703 2.28201 5.55651 2.64809 5.50685L2.74986 5.5L8.67667 5.49999C10.047 4.554 11.7087 4 13.4999 4ZM14.6543 14.7161C14.309 14.8963 13.9163 14.9982 13.4999 14.9982C13.0878 14.9982 12.699 14.8984 12.3564 14.7218L11.2605 15.8177C11.9002 16.2513 12.672 16.5047 13.503 16.5047C14.3367 16.5047 15.1107 16.2497 15.7516 15.8136L14.6543 14.7161ZM9.50155 12.5032C9.50155 13.3394 9.75806 14.1157 10.1967 14.7577L11.2896 13.6665C11.1052 13.318 11.0008 12.9208 11.0008 12.4991C11.0008 12.0822 11.1028 11.6892 11.2833 11.3436L10.1926 10.2546C9.75646 10.8955 9.50155 11.6695 9.50155 12.5032ZM16.8175 10.2606L15.7226 11.3556C15.8992 11.6983 15.9989 12.087 15.9989 12.4991C15.9989 12.916 15.8969 13.309 15.7164 13.6545L16.8135 14.7517C17.2496 14.1109 17.5045 13.3368 17.5045 12.5032C17.5045 11.6722 17.2512 10.9003 16.8175 10.2606ZM13.4999 11.5C12.9481 11.5 12.5008 11.9473 12.5008 12.4991C12.5008 13.0509 12.9481 13.4982 13.4999 13.4982C14.0516 13.4982 14.4989 13.0509 14.4989 12.4991C14.4989 11.9473 14.0516 11.5 13.4999 11.5ZM13.503 8.50169C12.669 8.50169 11.8945 8.75687 11.2535 9.19342L12.3434 10.2831C12.6892 10.1023 13.0826 10 13.4999 10C13.9211 10 14.318 10.1042 14.6662 10.2883L15.7576 9.19684C15.1156 8.7582 14.3393 8.50169 13.503 8.50169Z", fill: "#222222" }) }));
8
+ export default IconFastAccelerationFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconFeed: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconFeed;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconFeed = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75ZM5.78125 15C5.36704 15 5.03125 15.3358 5.03125 15.75C5.03125 16.1642 5.36704 16.5 5.78125 16.5H10.7812C11.1955 16.5 11.5312 16.1642 11.5312 15.75C11.5312 15.3358 11.1955 15 10.7812 15H5.78125ZM5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75ZM15 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H12.25C12.6642 4.5 13 4.83579 13 5.25V19.0136C13 19.1814 13.0208 19.3444 13.06 19.5H5.25C4.2835 19.5 3.5 18.7165 3.5 17.75V5.25ZM14.5 8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609ZM18.9925 9.11188C19.0636 8.7561 19.376 8.5 19.7388 8.5C20.1592 8.5 20.5 8.84078 20.5 9.26115V15.25C20.5 15.3881 20.3881 15.5 20.25 15.5H17.7149L18.9925 9.11188Z", fill: "#222222" }) }));
8
+ export default IconFeed;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconFeedFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconFeedFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconFeedFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M15 21C15.9411 20.9936 16.7494 20.3272 16.9342 19.4032L17.4149 17H20.25C21.2165 17 22 16.2165 22 15.25V9.26115C22 8.01607 20.9937 7.00603 19.75 7.00003V6.99609H14.5V5.25C14.5 4.00736 13.4926 3 12.25 3H4.25C3.00736 3 2 4.00736 2 5.25V17.75C2 19.5449 3.45507 21 5.25 21H14.9864L15 21ZM17.5216 8.8177L15.4633 19.109C15.4179 19.3363 15.2183 19.5 14.9864 19.5C14.7178 19.5 14.5 19.2822 14.5 19.0136V8.49609H17.6109C17.5737 8.5997 17.5437 8.70708 17.5216 8.8177ZM5.77832 8.5C5.36411 8.5 5.02832 8.16421 5.02832 7.75C5.02832 7.33579 5.36411 7 5.77832 7C6.19253 7 6.52832 7.33579 6.52832 7.75C6.52832 8.16421 6.19253 8.5 5.77832 8.5ZM5.03125 15.75C5.03125 15.3358 5.36704 15 5.78125 15H10.7812C11.1955 15 11.5312 15.3358 11.5312 15.75C11.5312 16.1642 11.1955 16.5 10.7812 16.5H5.78125C5.36704 16.5 5.03125 16.1642 5.03125 15.75ZM5.78125 11H10.7812C11.1955 11 11.5312 11.3358 11.5312 11.75C11.5312 12.1642 11.1955 12.5 10.7812 12.5H5.78125C5.36704 12.5 5.03125 12.1642 5.03125 11.75C5.03125 11.3358 5.36704 11 5.78125 11Z", fill: "#222222" }) }));
8
+ export default IconFeedFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconLibrary: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLibrary;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconLibrary = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M4 3H5C6.05382 3 6.91812 3.8164 6.99451 4.85081L7 5V19C7 20.0538 6.1836 20.9181 5.14919 20.9945L5 21H4C2.94618 21 2.08188 20.1836 2.00549 19.1492L2 19V5C2 3.94618 2.8164 3.08188 3.85081 3.00549L4 3H5H4ZM10 3H11C12.0538 3 12.9181 3.8164 12.9945 4.85081L13 5V19C13 20.0538 12.1836 20.9181 11.1492 20.9945L11 21H10C8.94618 21 8.08188 20.1836 8.00549 19.1492L8 19V5C8 3.94618 8.8164 3.08188 9.85081 3.00549L10 3H11H10ZM16.9743 5.0005C17.8138 5.0005 18.5825 5.5311 18.8643 6.34636L18.9113 6.5025L21.9263 18.2485C22.1888 19.2689 21.613 20.3094 20.6295 20.6402L20.4863 20.6825L19.5173 20.9315C19.3513 20.9735 19.1833 20.9945 19.0193 20.9945C18.1807 20.9945 17.4112 20.463 17.1302 19.6476L17.0833 19.4915L14.0673 7.7465C13.8058 6.72514 14.3807 5.68555 15.3649 5.35484L15.5083 5.3125L16.4763 5.0635C16.6423 5.0205 16.8103 5.0005 16.9743 5.0005ZM5 4.5H4C3.75467 4.5 3.55042 4.67778 3.50806 4.91043L3.5 5V19C3.5 19.2444 3.67699 19.4494 3.91016 19.4919L4 19.5H5C5.24533 19.5 5.44958 19.3222 5.49194 19.0896L5.5 19V5C5.5 4.75556 5.32301 4.55062 5.08984 4.50809L5 4.5ZM11 4.5H10C9.75467 4.5 9.55042 4.67778 9.50806 4.91043L9.5 5V19C9.5 19.2444 9.67699 19.4494 9.91016 19.4919L10 19.5H11C11.2453 19.5 11.4496 19.3222 11.4919 19.0896L11.5 19V5C11.5 4.75556 11.323 4.55062 11.0898 4.50809L11 4.5ZM16.9753 6.5005L16.9119 6.50437L16.8493 6.5165L15.8813 6.7645C15.7063 6.8095 15.6143 6.9275 15.5743 6.9955C15.5431 7.0483 15.4985 7.14718 15.5049 7.27422L15.5203 7.3745L18.5363 19.1185C18.6023 19.3765 18.8333 19.4945 19.0193 19.4945L19.0818 19.4906L19.1443 19.4785L20.1133 19.2295C20.3515 19.1691 20.5052 18.9458 20.4879 18.7102L20.4733 18.6215L17.4583 6.8755C17.3913 6.6185 17.1613 6.5005 16.9753 6.5005Z", fill: "#222222" }) }));
8
+ export default IconLibrary;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconLibraryFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconLibraryFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconLibraryFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M5.5 3C6.328 3 7 3.672 7 4.5V19.5C7 20.328 6.328 21 5.5 21H3.5C2.672 21 2 20.328 2 19.5V4.5C2 3.672 2.672 3 3.5 3H5.5ZM11.5 3C12.328 3 13 3.672 13 4.5V19.5C13 20.328 12.328 21 11.5 21H9.5C8.672 21 8 20.328 8 19.5V4.5C8 3.672 8.672 3 9.5 3H11.5ZM18.781 6.1238L21.995 18.6428C22.201 19.4448 21.718 20.2628 20.915 20.4688L19.039 20.9498C18.236 21.1558 17.419 20.6728 17.213 19.8698L13.999 7.3528C13.793 6.5498 14.276 5.7328 15.079 5.5268L16.955 5.0438C17.758 4.8388 18.575 5.3228 18.781 6.1238Z", fill: "#222222" }) }));
8
+ export default IconLibraryFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleTeam: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleTeam;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconPeopleTeam = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM14.754 11.5H9.25193C9.11386 11.5 9.00193 11.6119 9.00193 11.75V16.499C9.00193 18.1564 10.3455 19.5 12.003 19.5C13.6604 19.5 15.004 18.1564 15.004 16.499V11.75C15.004 11.6119 14.8921 11.5 14.754 11.5ZM3.75 10L7.13128 9.99906C6.78791 10.4145 6.56424 10.9325 6.51312 11.5002L3.75 11.5C3.61193 11.5 3.5 11.6119 3.5 11.75V14.9988C3.5 16.3802 4.61984 17.5 6.00124 17.5C6.20123 17.5 6.39574 17.4765 6.58216 17.4322C6.66687 17.9361 6.82156 18.4167 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.7835 2.7835 10 3.75 10ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.184 18.4177 17.3388 17.9371 17.425 17.4331C17.6092 17.477 17.8019 17.5 18 17.5C19.3807 17.5 20.5 16.3807 20.5 15V11.75C20.5 11.6119 20.3881 11.5 20.25 11.5L17.4928 11.5002C17.4417 10.9325 17.218 10.4145 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4ZM12 4.5C11.1716 4.5 10.5 5.17157 10.5 6C10.5 6.82843 11.1716 7.5 12 7.5C12.8284 7.5 13.5 6.82843 13.5 6C13.5 5.17157 12.8284 4.5 12 4.5ZM18.5 5.5C17.9477 5.5 17.5 5.94772 17.5 6.5C17.5 7.05228 17.9477 7.5 18.5 7.5C19.0523 7.5 19.5 7.05228 19.5 6.5C19.5 5.94772 19.0523 5.5 18.5 5.5ZM5.5 5.5C4.94772 5.5 4.5 5.94772 4.5 6.5C4.5 7.05228 4.94772 7.5 5.5 7.5C6.05228 7.5 6.5 7.05228 6.5 6.5C6.5 5.94772 6.05228 5.5 5.5 5.5Z", fill: "#222222" }) }));
8
+ export default IconPeopleTeam;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconPeopleTeamFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconPeopleTeamFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconPeopleTeamFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M14.754 10C15.7205 10 16.504 10.7835 16.504 11.75V16.499C16.504 18.9848 14.4888 21 12.003 21C9.51712 21 7.50193 18.9848 7.50193 16.499V11.75C7.50193 10.7835 8.28543 10 9.25193 10H14.754ZM7.13128 9.99906C6.78183 10.4218 6.55636 10.9508 6.51057 11.5304L6.50193 11.75V16.499C6.50193 17.3456 6.69319 18.1476 7.03487 18.864C6.70577 18.953 6.35899 19 6.00124 19C3.79142 19 2 17.2086 2 14.9988V11.75C2 10.8318 2.70711 10.0788 3.60647 10.0058L3.75 10L7.13128 9.99906ZM16.8747 9.99906L20.25 10C21.2165 10 22 10.7835 22 11.75V15C22 17.2091 20.2091 19 18 19C17.6436 19 17.298 18.9534 16.9691 18.8659C17.2697 18.238 17.4538 17.5452 17.4951 16.8144L17.504 16.499V11.75C17.504 11.0847 17.2678 10.4747 16.8747 9.99906ZM12 3C13.6569 3 15 4.34315 15 6C15 7.65685 13.6569 9 12 9C10.3431 9 9 7.65685 9 6C9 4.34315 10.3431 3 12 3ZM18.5 4C19.8807 4 21 5.11929 21 6.5C21 7.88071 19.8807 9 18.5 9C17.1193 9 16 7.88071 16 6.5C16 5.11929 17.1193 4 18.5 4ZM5.5 4C6.88071 4 8 5.11929 8 6.5C8 7.88071 6.88071 9 5.5 9C4.11929 9 3 7.88071 3 6.5C3 5.11929 4.11929 4 5.5 4Z", fill: "#222222" }) }));
8
+ export default IconPeopleTeamFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconTrophy: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTrophy;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconTrophy = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M15.2536 2C16.4119 2 17.3657 2.87524 17.4899 4.00044L18.7576 4C19.6758 4 20.4288 4.70711 20.5018 5.60647L20.5076 5.75V8.75C20.5076 10.483 19.1512 11.8992 17.4421 11.9949L17.2318 12.0007C16.564 14.0909 14.7334 15.6615 12.5007 15.9517L12.5001 17.5H14.2536C15.9866 17.5 17.4028 18.8565 17.4984 20.5656L17.5036 20.75V21.25C17.5036 21.6297 17.2214 21.9435 16.8554 21.9932L16.7536 22H6.75056C6.37086 22 6.05707 21.7178 6.00741 21.3518L6.00056 21.25V20.75C6.00056 19.017 7.35702 17.6008 9.06614 17.5051L9.25056 17.5H11.0001L11.0004 15.9513C8.76915 15.6601 6.93987 14.09 6.27235 12.0007L6.24609 12C4.45117 12 2.99609 10.5449 2.99609 8.75V5.75C2.99609 4.7835 3.7796 4 4.74609 4L6.01424 4.00044C6.13841 2.87524 7.09227 2 8.25056 2H15.2536ZM14.2536 19H9.25056C8.4208 19 7.72592 19.5775 7.54591 20.3525L7.51828 20.5H15.9859C15.8717 19.7018 15.2189 19.0774 14.4075 19.0067L14.2536 19ZM15.2536 3.5H8.25056C7.83635 3.5 7.50056 3.83579 7.50056 4.25V10.2485C7.50056 12.5965 9.40403 14.5 11.7521 14.5C14.1001 14.5 16.0036 12.5965 16.0036 10.2485V4.25C16.0036 3.83579 15.6678 3.5 15.2536 3.5ZM18.7576 5.5H17.5036V10.4829C18.3036 10.3703 18.93 9.71683 19.0009 8.90415L19.0076 8.75V5.75C19.0076 5.63165 18.9254 5.53251 18.815 5.5066L18.7576 5.5ZM6.00056 5.5H4.74609C4.60802 5.5 4.49609 5.61193 4.49609 5.75V8.75C4.49609 9.63316 5.15031 10.3635 6.00056 10.4829V5.5Z", fill: "#222222" }) }));
8
+ export default IconTrophy;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconTrophyFilled: ({ size, type, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconTrophyFilled;
@@ -0,0 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconTrophyFilled = ({ size, type, className = '', onClick, refHandler, id, dataId }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [`svg-icon__type-${type}`]: type,
6
+ [className]: className
7
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: _jsx("path", { d: "M15.2536 2C16.4119 2 17.3657 2.87524 17.4899 4.00044L18.7576 4C19.6758 4 20.4288 4.70711 20.5018 5.60647L20.5076 5.75V8.75C20.5076 10.483 19.1512 11.8992 17.4421 11.9949L17.2318 12.0007C16.564 14.0909 14.7334 15.6615 12.5007 15.9517L12.5001 17.5H14.2536C15.9866 17.5 17.4028 18.8565 17.4984 20.5656L17.5036 20.75V21.25C17.5036 21.6297 17.2214 21.9435 16.8554 21.9932L16.7536 22H6.75056C6.37086 22 6.05707 21.7178 6.00741 21.3518L6.00056 21.25V20.75C6.00056 19.017 7.35702 17.6008 9.06614 17.5051L9.25056 17.5H11.0001L11.0004 15.9513C8.76915 15.6601 6.93987 14.09 6.27235 12.0007L6.24609 12C4.45117 12 2.99609 10.5449 2.99609 8.75V5.75C2.99609 4.7835 3.7796 4 4.74609 4L6.01424 4.00044C6.13841 2.87524 7.09227 2 8.25056 2H15.2536ZM18.7576 5.5H17.5036V10.4829C18.3036 10.3703 18.93 9.71683 19.0009 8.90415L19.0076 8.75V5.75C19.0076 5.63165 18.9254 5.53251 18.815 5.5066L18.7576 5.5ZM6.00056 5.5H4.74609C4.60802 5.5 4.49609 5.61193 4.49609 5.75V8.75C4.49609 9.63316 5.15031 10.3635 6.00056 10.4829V5.5Z", fill: "#222222" }) }));
8
+ export default IconTrophyFilled;
@@ -0,0 +1,4 @@
1
+ import { ReactElement } from 'react';
2
+ import { ISVGIconProps } from './types';
3
+ export declare const IconUs: ({ size, className, onClick, refHandler, id, dataId }: ISVGIconProps) => ReactElement;
4
+ export default IconUs;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import classNames from 'classnames';
3
+ export const IconUs = ({ size, className = '', onClick, refHandler, id, dataId }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", className: classNames('svg-icon', {
4
+ [`svg-icon__size-${size}`]: size,
5
+ [className]: className
6
+ }), viewBox: "0 0 24 24", fill: "none", onClick: onClick, ref: refHandler, id: id, "data-id": dataId ? `${dataId}-svg-icon` : '', children: [_jsx("rect", { y: "3.42999", width: "24", height: "17.1429", rx: "2", fill: "white" }), _jsx("mask", { id: "mask0_1993_2165", style: { maskType: 'luminance' }, maskUnits: "userSpaceOnUse", x: "0", y: "3", width: "24", height: "18", children: _jsx("rect", { y: "3.42999", width: "24", height: "17.1429", rx: "2", fill: "white" }) }), _jsxs("g", { mask: "url(#mask0_1993_2165)", children: [_jsx("rect", { y: "3.42999", width: "24", height: "17.1429", fill: "#0A17A7" }), _jsx("path", { d: "M-1.09929 1.78735L9.14287 8.69577V2.28718H14.8572V8.69573L25.0992 1.78736L26.3774 3.6823L18.2796 9.14432H24V14.8586H18.2796L26.3774 20.3206L25.0992 22.2155L14.8572 15.3072V21.7157H9.14287V15.3071L-1.09928 22.2156L-2.37744 20.3206L5.72032 14.8586H7.62939e-06V9.14432H5.72034L-2.37744 3.6823L-1.09929 1.78735Z", fill: "white" }), _jsx("path", { d: "M27.1356 1.53249C27.2368 1.68629 27.1942 1.89299 27.0404 1.99417L16.1843 9.13605C16.0305 9.23723 15.8238 9.19457 15.7227 9.04078C15.6215 8.88698 15.6641 8.68028 15.8179 8.5791L26.674 1.43722C26.8277 1.33604 27.0344 1.3787 27.1356 1.53249Z", fill: "#DB1F35" }), _jsx("path", { d: "M27.1621 21.9165C27.265 21.7639 27.2247 21.5567 27.072 21.4538L17.3401 14.8943C17.1875 14.7914 16.9803 14.8317 16.8774 14.9844C16.7745 15.137 16.8149 15.3442 16.9675 15.4471L26.6994 22.0066C26.852 22.1095 27.0592 22.0692 27.1621 21.9165Z", fill: "#DB1F35" }), _jsx("path", { d: "M-3.56564 1.81145C-3.46276 1.65878 -3.25559 1.61843 -3.10293 1.72132L7.04823 8.56255C7.20089 8.66544 7.24124 8.8726 7.13836 9.02526C7.03547 9.17792 6.82831 9.21828 6.67565 9.11539L-3.47551 2.27415C-3.62817 2.17127 -3.66853 1.96411 -3.56564 1.81145Z", fill: "#DB1F35" }), _jsx("path", { d: "M-3.56702 22.7375C-3.46528 22.8909 -3.25842 22.9328 -3.105 22.831L8.14717 15.3691C8.30059 15.2674 8.34249 15.0605 8.24074 14.9071C8.139 14.7537 7.93214 14.7118 7.77872 14.8135L-3.47344 22.2754C-3.62687 22.3772 -3.66876 22.584 -3.56702 22.7375Z", fill: "#DB1F35" }), _jsx("path", { d: "M0 13.7157H10.2857V20.5728H13.7143V13.7157H24V10.2871H13.7143V3.42999H10.2857V10.2871H0V13.7157Z", fill: "#E6273E" })] })] }));
7
+ export default IconUs;
@@ -0,0 +1,2 @@
1
+ export declare const ICON_NAMES: string[];
2
+ export type TIconName = (typeof ICON_NAMES)[number];
@@ -0,0 +1,321 @@
1
+ export const ICON_NAMES = [
2
+ 'add',
3
+ 'addCircle',
4
+ 'addCircleFilled',
5
+ 'addFilled',
6
+ 'airplaneTakeOff',
7
+ 'airplaneTakeOffFilled',
8
+ 'alert',
9
+ 'alertBadge',
10
+ 'alertBadgeFilled',
11
+ 'alertFilled',
12
+ 'am',
13
+ 'amd',
14
+ 'amdFilled',
15
+ 'apple',
16
+ 'arrowDown',
17
+ 'arrowDownFilled',
18
+ 'arrowDownLeft',
19
+ 'arrowDownLeftFilled',
20
+ 'arrowDownload',
21
+ 'arrowDownloadFilled',
22
+ 'arrowEnter',
23
+ 'arrowEnterFilled',
24
+ 'arrowExit',
25
+ 'arrowExitFilled',
26
+ 'arrowExportLeftToRight',
27
+ 'arrowExportLeftToRightFilled',
28
+ 'arrowExportRightToLeft',
29
+ 'arrowExportRightToLeftFilled',
30
+ 'arrowExportUp',
31
+ 'arrowExportUpFilled',
32
+ 'arrowImport',
33
+ 'arrowImportFilled',
34
+ 'arrowLeft',
35
+ 'arrowLeftFilled',
36
+ 'arrowRepeatAll',
37
+ 'arrowRepeatAllFilled',
38
+ 'arrowReset',
39
+ 'arrowResetFilled',
40
+ 'arrowRight',
41
+ 'arrowRightFilled',
42
+ 'arrowSort',
43
+ 'arrowSortFilled',
44
+ 'arrowSync',
45
+ 'arrowSyncFilled',
46
+ 'arrowUp',
47
+ 'arrowUpFilled',
48
+ 'arrowUpLeft',
49
+ 'arrowUpLeftFilled',
50
+ 'arrowUpRight',
51
+ 'arrowUpRightFilled',
52
+ 'attach',
53
+ 'attachFilled',
54
+ 'beach',
55
+ 'beachFilled',
56
+ 'book',
57
+ 'bookFilled',
58
+ 'bookmark',
59
+ 'bookmarkFilled',
60
+ 'briefcase',
61
+ 'briefcaseFilled',
62
+ 'building',
63
+ 'buildingBank',
64
+ 'buildingBankFilled',
65
+ 'buildingFilled',
66
+ 'bulletListAdd',
67
+ 'bulletListAddFilled',
68
+ 'calculator',
69
+ 'calculatorFilled',
70
+ 'calendarClock',
71
+ 'calendarClockFilled',
72
+ 'calendarDay',
73
+ 'calendarDayFilled',
74
+ 'calendarEmpty',
75
+ 'calendarLeft',
76
+ 'calendarLeftFilled',
77
+ 'calendarRight',
78
+ 'calendarRightFilled',
79
+ 'call',
80
+ 'callFilled',
81
+ 'card',
82
+ 'cardFilled',
83
+ 'caretDown',
84
+ 'caretDownFilled',
85
+ 'caretDownRight',
86
+ 'caretDownRightFilled',
87
+ 'caretLeft',
88
+ 'caretLeftFilled',
89
+ 'caretRight',
90
+ 'caretRightFilled',
91
+ 'caretUp',
92
+ 'caretUpFilled',
93
+ 'chartPerson',
94
+ 'chartPersonFilled',
95
+ 'chat',
96
+ 'chatFilled',
97
+ 'chatMultiple',
98
+ 'chatMultipleFilled',
99
+ 'checkboxArrowRight',
100
+ 'checkboxArrowRightFilled',
101
+ 'checkmark',
102
+ 'checkmarkCircle',
103
+ 'checkmarkCircleFilled',
104
+ 'checkmarkFilled',
105
+ 'chevronDoubleLeft',
106
+ 'chevronDoubleRight',
107
+ 'chevronDown',
108
+ 'chevronDownFilled',
109
+ 'chevronLeft',
110
+ 'chevronLeftFilled',
111
+ 'chevronRight',
112
+ 'chevronRightFilled',
113
+ 'chevronUp',
114
+ 'chevronUpDown',
115
+ 'chevronUpDownFilled',
116
+ 'chevronUpFilled',
117
+ 'clipboardDay',
118
+ 'clock',
119
+ 'clockDismiss',
120
+ 'clockDismissFilled',
121
+ 'clockFilled',
122
+ 'comment',
123
+ 'commentFilled',
124
+ 'contractCard',
125
+ 'contractCardFilled',
126
+ 'copy',
127
+ 'copyFilled',
128
+ 'cubeTree',
129
+ 'cubeTreeFilled',
130
+ 'database',
131
+ 'databaseFilled',
132
+ 'delete',
133
+ 'deleteFilled',
134
+ 'deviceMeetingRoom',
135
+ 'deviceMeetingRoomFilled',
136
+ 'dismiss',
137
+ 'dismissCircle',
138
+ 'dismissCircleFilled',
139
+ 'dismissFilled',
140
+ 'document',
141
+ 'documentBulletList',
142
+ 'documentBulletListFilled',
143
+ 'documentEdit',
144
+ 'documentEditFilled',
145
+ 'documentFilled',
146
+ 'documentPerson',
147
+ 'edit',
148
+ 'editFilled',
149
+ 'errorCircle',
150
+ 'errorCircleFilled',
151
+ 'eur',
152
+ 'eurFilled',
153
+ 'expandUpLeft',
154
+ 'expandUpLeftFilled',
155
+ 'expandUpRight',
156
+ 'expandUpRightFilled',
157
+ 'eyeOff',
158
+ 'eyeOffFilled',
159
+ 'eyeOn',
160
+ 'eyeOnFilled',
161
+ 'facebook',
162
+ 'fastAcceleration',
163
+ 'fastAccelerationFilled',
164
+ 'feed',
165
+ 'feedFilled',
166
+ 'filter',
167
+ 'filterFilled',
168
+ 'flag',
169
+ 'flagFilled',
170
+ 'folderLink',
171
+ 'folderLinkFilled',
172
+ 'food',
173
+ 'foodFilled',
174
+ 'gb',
175
+ 'globe',
176
+ 'globeFilled',
177
+ 'google',
178
+ 'handOpenHeart',
179
+ 'handOpenHeartFilled',
180
+ 'heart',
181
+ 'heartFilled',
182
+ 'history',
183
+ 'historyFilled',
184
+ 'home',
185
+ 'homeFilled',
186
+ 'image',
187
+ 'imageFilled',
188
+ 'info',
189
+ 'infoFilled',
190
+ 'instagram',
191
+ 'keyReset',
192
+ 'keyResetFilled',
193
+ 'library',
194
+ 'libraryFilled',
195
+ 'link',
196
+ 'linkFilled',
197
+ 'linkedin',
198
+ 'list',
199
+ 'listFilled',
200
+ 'location',
201
+ 'locationFilled',
202
+ 'lockClosed',
203
+ 'lockClosedFilled',
204
+ 'lockOpen',
205
+ 'lockOpenFilled',
206
+ 'mail',
207
+ 'mailAdd',
208
+ 'mailAddFilled',
209
+ 'mailArrowForward',
210
+ 'mailArrowForwardFilled',
211
+ 'mailFilled',
212
+ 'mailLink',
213
+ 'mailLinkFilled',
214
+ 'medium',
215
+ 'more',
216
+ 'moreFilled',
217
+ 'moreVertical',
218
+ 'moreVerticalFilled',
219
+ 'navigation',
220
+ 'navigationFilled',
221
+ 'notebook',
222
+ 'notebookAdd',
223
+ 'notebookAddFilled',
224
+ 'notebookFilled',
225
+ 'onlyEmployee',
226
+ 'open',
227
+ 'openFilled',
228
+ 'patient',
229
+ 'patientFilled',
230
+ 'people',
231
+ 'peopleAdd',
232
+ 'peopleAddFilled',
233
+ 'peopleFilled',
234
+ 'peopleList',
235
+ 'peopleListFilled',
236
+ 'peopleTeam',
237
+ 'peopleTeamFilled',
238
+ 'percent',
239
+ 'person',
240
+ 'personAccount',
241
+ 'personAccountFilled',
242
+ 'personAdd',
243
+ 'personAddFilled',
244
+ 'personArrowLeft',
245
+ 'personArrowLeftFilled',
246
+ 'personArrowRight',
247
+ 'personArrowRightFilled',
248
+ 'personBoard',
249
+ 'personFilled',
250
+ 'personMinus',
251
+ 'personStar',
252
+ 'personStarFilled',
253
+ 'personSubtract',
254
+ 'personSubtractFilled',
255
+ 'phone',
256
+ 'phoneFilled',
257
+ 'plugConnected',
258
+ 'pos',
259
+ 'posFilled',
260
+ 'prohibited',
261
+ 'prohibitedFilled',
262
+ 'projectProduct',
263
+ 'question',
264
+ 'questionFilled',
265
+ 'redo',
266
+ 'redoFilled',
267
+ 'ru',
268
+ 'rub',
269
+ 'rubFilled',
270
+ 'save',
271
+ 'saveFilled',
272
+ 'savings',
273
+ 'savingsFilled',
274
+ 'search',
275
+ 'searchFilled',
276
+ 'selectAllOff',
277
+ 'selectAllOffFilled',
278
+ 'selectAllOn',
279
+ 'selectAllOnFilled',
280
+ 'send',
281
+ 'sendFilled',
282
+ 'settings',
283
+ 'settingsFilled',
284
+ 'share',
285
+ 'shareAndroid',
286
+ 'shareAndroidFilled',
287
+ 'shareFilled',
288
+ 'signOut',
289
+ 'signOutFilled',
290
+ 'spinner',
291
+ 'spinnerFilled',
292
+ 'status',
293
+ 'statusFilled',
294
+ 'subtract',
295
+ 'subtractCircle',
296
+ 'subtractCircleFilled',
297
+ 'subtractFilled',
298
+ 'tableCellEdit',
299
+ 'tableCellEditFilled',
300
+ 'telegram',
301
+ 'timer',
302
+ 'timerFilled',
303
+ 'trophy',
304
+ 'trophyFilled',
305
+ 'twitter',
306
+ 'undo',
307
+ 'undoFilled',
308
+ 'unitsEmployee',
309
+ 'upload',
310
+ 'us',
311
+ 'usd',
312
+ 'usdFilled',
313
+ 'userMinus',
314
+ 'video',
315
+ 'videoFilled',
316
+ 'wallet',
317
+ 'walletFilled',
318
+ 'warning',
319
+ 'warningFilled',
320
+ 'youtube'
321
+ ];
@@ -2,6 +2,8 @@ export * from './IconAdd';
2
2
  export * from './IconAddCircle';
3
3
  export * from './IconAddCircleFilled';
4
4
  export * from './IconAddFilled';
5
+ export * from './IconAirplaneTakeOff';
6
+ export * from './IconAirplaneTakeOffFilled';
5
7
  export * from './IconAlert';
6
8
  export * from './IconAlertBadge';
7
9
  export * from './IconAlertBadgeFilled';
@@ -87,6 +89,8 @@ export * from './IconCaretRight';
87
89
  export * from './IconCaretRightFilled';
88
90
  export * from './IconCaretUp';
89
91
  export * from './IconCaretUpFilled';
92
+ export * from './IconChartPerson';
93
+ export * from './IconChartPersonFilled';
90
94
  export * from './IconChat';
91
95
  export * from './IconChatFilled';
92
96
  export * from './IconChatMultiple';
@@ -154,6 +158,10 @@ export * from './IconEyeOffFilled';
154
158
  export * from './IconEyeOn';
155
159
  export * from './IconEyeOnFilled';
156
160
  export * from './IconFacebook';
161
+ export * from './IconFastAcceleration';
162
+ export * from './IconFastAccelerationFilled';
163
+ export * from './IconFeed';
164
+ export * from './IconFeedFilled';
157
165
  export * from './IconFilter';
158
166
  export * from './IconFilterFilled';
159
167
  export * from './IconFlag';
@@ -181,6 +189,8 @@ export * from './IconInfoFilled';
181
189
  export * from './IconInstagram';
182
190
  export * from './IconKeyReset';
183
191
  export * from './IconKeyResetFilled';
192
+ export * from './IconLibrary';
193
+ export * from './IconLibraryFilled';
184
194
  export * from './IconLink';
185
195
  export * from './IconLinkFilled';
186
196
  export * from './IconLinkedin';
@@ -222,6 +232,8 @@ export * from './IconPeopleAddFilled';
222
232
  export * from './IconPeopleFilled';
223
233
  export * from './IconPeopleList';
224
234
  export * from './IconPeopleListFilled';
235
+ export * from './IconPeopleTeam';
236
+ export * from './IconPeopleTeamFilled';
225
237
  export * from './IconPercent';
226
238
  export * from './IconPerson';
227
239
  export * from './IconPersonAccount';
@@ -287,11 +299,14 @@ export * from './IconTableCellEditFilled';
287
299
  export * from './IconTelegram';
288
300
  export * from './IconTimer';
289
301
  export * from './IconTimerFilled';
302
+ export * from './IconTrophy';
303
+ export * from './IconTrophyFilled';
290
304
  export * from './IconTwitter';
291
305
  export * from './IconUndo';
292
306
  export * from './IconUndoFilled';
293
307
  export * from './IconUnitsEmployee';
294
308
  export * from './IconUpload';
309
+ export * from './IconUs';
295
310
  export * from './IconUsd';
296
311
  export * from './IconUsdFilled';
297
312
  export * from './IconUserMinus';
@@ -2,6 +2,8 @@ export * from './IconAdd';
2
2
  export * from './IconAddCircle';
3
3
  export * from './IconAddCircleFilled';
4
4
  export * from './IconAddFilled';
5
+ export * from './IconAirplaneTakeOff';
6
+ export * from './IconAirplaneTakeOffFilled';
5
7
  export * from './IconAlert';
6
8
  export * from './IconAlertBadge';
7
9
  export * from './IconAlertBadgeFilled';
@@ -87,6 +89,8 @@ export * from './IconCaretRight';
87
89
  export * from './IconCaretRightFilled';
88
90
  export * from './IconCaretUp';
89
91
  export * from './IconCaretUpFilled';
92
+ export * from './IconChartPerson';
93
+ export * from './IconChartPersonFilled';
90
94
  export * from './IconChat';
91
95
  export * from './IconChatFilled';
92
96
  export * from './IconChatMultiple';
@@ -154,6 +158,10 @@ export * from './IconEyeOffFilled';
154
158
  export * from './IconEyeOn';
155
159
  export * from './IconEyeOnFilled';
156
160
  export * from './IconFacebook';
161
+ export * from './IconFastAcceleration';
162
+ export * from './IconFastAccelerationFilled';
163
+ export * from './IconFeed';
164
+ export * from './IconFeedFilled';
157
165
  export * from './IconFilter';
158
166
  export * from './IconFilterFilled';
159
167
  export * from './IconFlag';
@@ -181,6 +189,8 @@ export * from './IconInfoFilled';
181
189
  export * from './IconInstagram';
182
190
  export * from './IconKeyReset';
183
191
  export * from './IconKeyResetFilled';
192
+ export * from './IconLibrary';
193
+ export * from './IconLibraryFilled';
184
194
  export * from './IconLink';
185
195
  export * from './IconLinkFilled';
186
196
  export * from './IconLinkedin';
@@ -222,6 +232,8 @@ export * from './IconPeopleAddFilled';
222
232
  export * from './IconPeopleFilled';
223
233
  export * from './IconPeopleList';
224
234
  export * from './IconPeopleListFilled';
235
+ export * from './IconPeopleTeam';
236
+ export * from './IconPeopleTeamFilled';
225
237
  export * from './IconPercent';
226
238
  export * from './IconPerson';
227
239
  export * from './IconPersonAccount';
@@ -287,11 +299,14 @@ export * from './IconTableCellEditFilled';
287
299
  export * from './IconTelegram';
288
300
  export * from './IconTimer';
289
301
  export * from './IconTimerFilled';
302
+ export * from './IconTrophy';
303
+ export * from './IconTrophyFilled';
290
304
  export * from './IconTwitter';
291
305
  export * from './IconUndo';
292
306
  export * from './IconUndoFilled';
293
307
  export * from './IconUnitsEmployee';
294
308
  export * from './IconUpload';
309
+ export * from './IconUs';
295
310
  export * from './IconUsd';
296
311
  export * from './IconUsdFilled';
297
312
  export * from './IconUserMinus';
@@ -3,7 +3,7 @@ import { ToastContainer, toast, Slide } from 'react-toastify';
3
3
  import { Text } from '../Text';
4
4
  import { Button } from '../Button';
5
5
  import { DEFAULT_DURATION, ICONS_MAPPING, TYPE_MAPPING } from './consts';
6
- import { IconDynamicComponent } from '../../helperComponents';
6
+ import { IconDynamicComponent } from '../IconDynamicComponent';
7
7
  import 'react-toastify/dist/ReactToastify.css';
8
8
  const CustomToast = ({ actionProps, toastId, type = 'information', text }) => {
9
9
  return (_jsxs("div", { "data-id": `${type}-toast-message`, className: "snackbar", children: [_jsxs("div", { className: "snackbar__content", children: [_jsx(IconDynamicComponent, { componentName: ICONS_MAPPING[type], type: TYPE_MAPPING[type], size: "medium" }), _jsx(Text, { className: "snackbar__text pl-16 pr-8", type: "primary", size: "standard", weight: "regular", lineHeight: "large", children: text })] }), actionProps ? (_jsx(Button, Object.assign({ size: "small", type: "tertiary" }, actionProps, { onClick: (e) => {
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Text } from '../../components/Text';
3
- import { IconDynamicComponent } from '../IconDynamicComponent';
3
+ import { IconDynamicComponent } from '../../components/IconDynamicComponent';
4
4
  import { generateDataTestId } from '../../utils/helpers';
5
5
  import classnames from 'classnames';
6
6
  export const ErrorMessage = ({ message, icon, dataId, className }) => {
@@ -2,5 +2,4 @@ export * from './Label';
2
2
  export * from './ErrorMessage';
3
3
  export * from './Loader';
4
4
  export * from './OptionItem';
5
- export * from './IconDynamicComponent';
6
5
  export * from './CodeBlock';
@@ -2,5 +2,4 @@ export * from './Label';
2
2
  export * from './ErrorMessage';
3
3
  export * from './Loader';
4
4
  export * from './OptionItem';
5
- export * from './IconDynamicComponent';
6
5
  export * from './CodeBlock';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hrm_ui_lib",
3
- "version": "2.4.39",
3
+ "version": "2.5.1",
4
4
  "description": "UI library for Dino",
5
5
  "main": "./index.js",
6
6
  "module": "./index.js",
@@ -1,9 +0,0 @@
1
- import { ReactElement } from 'react';
2
- interface IconDynamicComponentProps {
3
- componentName: string;
4
- size?: string;
5
- type?: string;
6
- className?: string;
7
- }
8
- export declare const IconDynamicComponent: ({ componentName, size, type, className }: IconDynamicComponentProps) => ReactElement | null;
9
- export default IconDynamicComponent;
@@ -1,12 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import { Suspense } from 'react';
3
- import { IconComponentMapping } from './constants';
4
- export const IconDynamicComponent = ({ componentName, size = 'small', type = 'inverse', className }) => {
5
- if (!componentName || !IconComponentMapping[componentName]) {
6
- return null;
7
- }
8
- // Dynamically load the component based on the componentName prop
9
- const Component = IconComponentMapping[componentName];
10
- return (_jsx(Suspense, { fallback: null, children: _jsx(Component, { type: type, size: size, className: className }) }));
11
- };
12
- export default IconDynamicComponent;
@@ -1,3 +0,0 @@
1
- export declare const IconComponentMapping: {
2
- [key: string]: any;
3
- };
@@ -1,12 +0,0 @@
1
- import { lazy } from 'react';
2
- export const IconComponentMapping = {
3
- warningFilled: lazy(() => import('../../components/SVGIcons/IconWarningFilled')),
4
- checkmarkCircleFilled: lazy(() => import('../../components/SVGIcons/IconCheckmarkCircleFilled')),
5
- errorCircleFilled: lazy(() => import('../../components/SVGIcons/IconErrorCircleFilled')),
6
- infoFilled: lazy(() => import('../../components/SVGIcons/IconInfoFilled')),
7
- checkmark: lazy(() => import('../../components/SVGIcons/IconCheckmark')),
8
- subtract: lazy(() => import('../../components/SVGIcons/IconSubtract')),
9
- am: lazy(() => import('../../components/SVGIcons/IconAm')),
10
- ru: lazy(() => import('../../components/SVGIcons/IconRu')),
11
- us: lazy(() => import('../../components/SVGIcons/IconGb'))
12
- };