odaptos_design_system 1.4.310 → 1.4.312

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 (30) hide show
  1. package/dist/Icons/Interaction/LockIcon.d.ts +7 -0
  2. package/dist/Icons/Interaction/SettingsSliderIcon.d.ts +7 -0
  3. package/dist/Icons/Interaction/TagAddIcon.d.ts +7 -0
  4. package/dist/Icons/Interaction/TagEditIcon.d.ts +7 -0
  5. package/dist/Icons/Interaction/TagRemoveIcon.d.ts +7 -0
  6. package/dist/Icons/Interaction/UnLockIcon.d.ts +7 -0
  7. package/dist/Icons/Interaction/UndoIcon.d.ts +7 -0
  8. package/dist/Icons/MediaControl/CutClipIcon.d.ts +7 -0
  9. package/dist/Icons/MediaControl/TagIcon.d.ts +7 -0
  10. package/dist/Icons/index.d.ts +10 -1
  11. package/dist/Modal/Modal.d.ts +2 -1
  12. package/dist/odaptos_design_system.cjs.development.js +347 -26
  13. package/dist/odaptos_design_system.cjs.development.js.map +1 -1
  14. package/dist/odaptos_design_system.cjs.production.min.js +1 -1
  15. package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
  16. package/dist/odaptos_design_system.esm.js +339 -27
  17. package/dist/odaptos_design_system.esm.js.map +1 -1
  18. package/package.json +1 -1
  19. package/src/Icons/Interaction/LockIcon.tsx +39 -0
  20. package/src/Icons/Interaction/SettingsSliderIcon.tsx +45 -0
  21. package/src/Icons/Interaction/TagAddIcon.tsx +46 -0
  22. package/src/Icons/Interaction/TagEditIcon.tsx +46 -0
  23. package/src/Icons/Interaction/TagRemoveIcon.tsx +46 -0
  24. package/src/Icons/Interaction/UnLockIcon.tsx +46 -0
  25. package/src/Icons/Interaction/UndoIcon.tsx +46 -0
  26. package/src/Icons/MediaControl/CutClipIcon.tsx +39 -0
  27. package/src/Icons/MediaControl/PreviousIcon.tsx +2 -0
  28. package/src/Icons/MediaControl/TagIcon.tsx +46 -0
  29. package/src/Icons/index.ts +10 -1
  30. package/src/Modal/Modal.tsx +3 -1
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function LockIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function SettingsSliderIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function TagAddIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function TagEditIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function TagRemoveIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function UnLockIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function UndoIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function CutClipIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function TagIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -61,6 +61,13 @@ export { default as AccountIcon } from './Interaction/AccountIcon';
61
61
  export { default as AddIcon } from './Interaction/AddIcon';
62
62
  export { default as AddTagIcon } from './Interaction/AddTagIcon';
63
63
  export { default as AgendaIcon } from './Interaction/AgendaIcon';
64
+ export { default as UndoIcon } from './Interaction/UndoIcon';
65
+ export { default as SettingsSliderIcon } from './Interaction/SettingsSliderIcon';
66
+ export { default as TagRemoveIcon } from './Interaction/TagRemoveIcon';
67
+ export { default as TagAddIcon } from './Interaction/TagAddIcon';
68
+ export { default as TagEditIcon } from './Interaction/TagEditIcon';
69
+ export { default as UnLockIcon } from './Interaction/UnLockIcon';
70
+ export { default as LockIcon } from './Interaction/LockIcon';
64
71
  export { default as BillingIcon } from './Interaction/BillingIcon';
65
72
  export { default as BinIcon } from './Interaction/BinIcon';
66
73
  export { default as CheckedIcon } from './Interaction/CheckedIcon';
@@ -92,20 +99,22 @@ export { default as LogoSmall } from './Logos/LogoSmall';
92
99
  export { default as LogoSquare } from './Logos/LogoSquare';
93
100
  export { default as LogoText } from './Logos/LogoText';
94
101
  export { default as LogoWhite } from './Logos/LogoWhite';
102
+ export { default as CutClipIcon } from './MediaControl/CutClipIcon';
95
103
  export { default as HangUpIcon } from './MediaControl/HangUpIcon';
96
104
  export { default as MeetingIcon } from './MediaControl/MeetingIcon';
97
105
  export { default as MicrophoneIcon } from './MediaControl/MicrophoneIcon';
106
+ export { default as MoveBackIcon } from './MediaControl/MoveBackIcon';
98
107
  export { default as MoveInIcon } from './MediaControl/MoveInIcon';
99
108
  export { default as MuteIcon } from './MediaControl/MuteIcon';
100
109
  export { default as NoCameraIcon } from './MediaControl/NoCameraIcon';
101
110
  export { default as NoMicrophoneIcon } from './MediaControl/NoMicrophoneIcon';
102
- export { default as MoveBackIcon } from './MediaControl/MoveBackIcon';
103
111
  export { default as PauseIcon } from './MediaControl/PauseIcon';
104
112
  export { default as PlayIcon } from './MediaControl/PlayIcon';
105
113
  export { default as PreviousIcon } from './MediaControl/PreviousIcon';
106
114
  export { default as RecordIcon } from './MediaControl/RecordIcon';
107
115
  export { default as RecordingIcon } from './MediaControl/RecordingIcon';
108
116
  export { default as StopRecordIcon } from './MediaControl/StopRecordIcon';
117
+ export { default as TagIcon } from './MediaControl/TagIcon';
109
118
  export { default as VolumeIcon } from './MediaControl/VolumeIcon';
110
119
  export { default as AddSeatIcon } from './Miscellaneous/AddSeatIcon';
111
120
  export { default as AddUsersIcon } from './Miscellaneous/AddUsersIcon';
@@ -13,9 +13,10 @@ interface ModalProps {
13
13
  onPressEnter?: () => void;
14
14
  onConfirm?: () => void;
15
15
  width?: string;
16
+ height?: string;
16
17
  }
17
18
  /** Figma link full-height : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=997-7695&mode=dev
18
19
  * Figma link overlay : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=2447-42540&mode=dev
19
20
  */
20
- export declare const Modal: ({ className, type, onClose, open, children, title, hideCloseButton, cancelText, disabled, validationText, onPressEnter, onConfirm, width, }: ModalProps) => React.JSX.Element;
21
+ export declare const Modal: ({ className, type, onClose, open, children, title, hideCloseButton, cancelText, disabled, validationText, onPressEnter, onConfirm, width, height, }: ModalProps) => React.JSX.Element;
21
22
  export {};
@@ -4531,6 +4531,250 @@ function AgendaIcon({
4531
4531
  })))));
4532
4532
  }
4533
4533
 
4534
+ function UndoIcon({
4535
+ stroke,
4536
+ strokeWidth,
4537
+ fill,
4538
+ size = 'base',
4539
+ ...rest
4540
+ }) {
4541
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4542
+ strokeWidth: strokeWidth ?? 0.1,
4543
+ stroke: stroke ? stroke : 'currentColor',
4544
+ sx: {
4545
+ height: getIconSize(size),
4546
+ width: getIconSize(size)
4547
+ }
4548
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4549
+ xmlns: "http://www.w3.org/2000/svg",
4550
+ width: "24",
4551
+ height: "24",
4552
+ viewBox: "0 0 24 24",
4553
+ fill: "none"
4554
+ }, /*#__PURE__*/React__default.createElement("g", {
4555
+ clipPath: "url(#clip0_7311_8)"
4556
+ }, /*#__PURE__*/React__default.createElement("path", {
4557
+ fillRule: "evenodd",
4558
+ clipRule: "evenodd",
4559
+ d: "M2.20312 1.45117C2.20312 1.03696 1.86734 0.701172 1.45312 0.701172C1.03891 0.701172 0.703125 1.03696 0.703125 1.45117V8.48242C0.703125 8.89664 1.03891 9.23242 1.45312 9.23242H2.04509C2.05686 9.2327 2.0686 9.2327 2.08032 9.23242H8.48438C8.89859 9.23242 9.23438 8.89664 9.23438 8.48242C9.23438 8.06821 8.89859 7.73242 8.48438 7.73242H3.18691C3.8074 6.44951 4.7024 5.31328 5.81336 4.40693C7.20524 3.2714 8.88254 2.5404 10.6619 2.29388C12.4412 2.04735 14.2541 2.29478 15.9022 3.00911C17.5504 3.72344 18.9705 4.87717 20.0072 6.34417C21.0438 7.81117 21.6572 9.53495 21.7803 11.3271C21.9033 13.1192 21.5312 14.9106 20.7048 16.5055C19.8783 18.1004 18.6292 19.4374 17.0941 20.3703C15.559 21.3031 13.797 21.796 12.0006 21.7949C11.5864 21.7947 11.2504 22.1303 11.2502 22.5445C11.25 22.9587 11.5856 23.2947 11.9998 23.2949C14.0711 23.2961 16.1029 22.7278 17.8731 21.6521C19.6432 20.5764 21.0835 19.0348 22.0366 17.1957C22.9896 15.3565 23.4186 13.2908 23.2767 11.2243C23.1349 9.15783 22.4276 7.17012 21.2322 5.47851C20.0368 3.7869 18.3993 2.45651 16.4987 1.63281C14.5982 0.809108 12.5078 0.523796 10.456 0.80807C8.40425 1.09234 6.47014 1.93526 4.86514 3.24466C3.78858 4.12295 2.88788 5.18844 2.20312 6.38419V1.45117Z",
4560
+ fill: fill
4561
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4562
+ id: "clip0_7311_8"
4563
+ }, /*#__PURE__*/React__default.createElement("rect", {
4564
+ width: "24",
4565
+ height: "24",
4566
+ fill: "white"
4567
+ })))));
4568
+ }
4569
+
4570
+ function SettingsSliderIcon({
4571
+ stroke,
4572
+ strokeWidth,
4573
+ fill,
4574
+ size = 'base',
4575
+ ...rest
4576
+ }) {
4577
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4578
+ strokeWidth: strokeWidth ?? 0.1,
4579
+ stroke: stroke ? stroke : 'currentColor',
4580
+ sx: {
4581
+ height: getIconSize(size),
4582
+ width: getIconSize(size)
4583
+ }
4584
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4585
+ xmlns: "http://www.w3.org/2000/svg",
4586
+ width: "24",
4587
+ height: "24",
4588
+ viewBox: "0 0 24 24",
4589
+ fill: "none"
4590
+ }, /*#__PURE__*/React__default.createElement("g", {
4591
+ clipPath: "url(#clip0_7309_18142)"
4592
+ }, /*#__PURE__*/React__default.createElement("path", {
4593
+ fillRule: "evenodd",
4594
+ clipRule: "evenodd",
4595
+ d: "M2.20312 21.1406V2.86667L2.20397 2.85239C2.20529 2.83387 2.2083 2.80253 2.21489 2.76295C2.22868 2.68023 2.25485 2.58141 2.29973 2.49166C2.34313 2.40485 2.39646 2.34086 2.46241 2.29689C2.52367 2.25605 2.63905 2.20312 2.85938 2.20312H21.1333L21.1476 2.20397C21.1661 2.20529 21.1975 2.2083 21.2371 2.21489C21.3198 2.22868 21.4186 2.25485 21.5083 2.29973C21.5951 2.34313 21.6591 2.39646 21.7031 2.46241C21.7439 2.52367 21.7969 2.63905 21.7969 2.85938V21.1333L21.7968 21.136L21.796 21.1476C21.7947 21.1661 21.7917 21.1975 21.7851 21.2371C21.7713 21.3198 21.7451 21.4186 21.7003 21.5083C21.6569 21.5951 21.6035 21.6591 21.5376 21.7031C21.4763 21.7439 21.361 21.7969 21.1406 21.7969H2.86666L2.85239 21.796C2.83387 21.7947 2.80253 21.7917 2.76295 21.7851C2.68023 21.7713 2.58141 21.7451 2.49166 21.7003C2.40485 21.6569 2.34086 21.6035 2.29689 21.5376C2.25605 21.4763 2.20312 21.361 2.20312 21.1406ZM21.1406 0.703125V1.45312C21.1406 0.703125 21.141 0.703125 21.1414 0.703125H21.1422L21.1438 0.703131L21.1476 0.703154L21.1568 0.703265L21.1814 0.703885C21.2006 0.704523 21.2252 0.705683 21.2545 0.707778C21.3129 0.711948 21.3914 0.719926 21.4837 0.735302C21.6646 0.765461 21.9173 0.827177 22.1792 0.958086C22.4439 1.09046 22.7315 1.30081 22.9512 1.63036C23.174 1.96461 23.2969 2.37657 23.2969 2.85938V21.1406H22.5469C23.2969 21.1406 23.2969 21.141 23.2969 21.1414V21.1422L23.2969 21.1438L23.2968 21.1476L23.2967 21.1568L23.2961 21.1814C23.2955 21.2006 23.2943 21.2252 23.2922 21.2545C23.2881 21.3129 23.2801 21.3914 23.2647 21.4837C23.2345 21.6646 23.1728 21.9173 23.0419 22.1792C22.9095 22.4439 22.6992 22.7315 22.3696 22.9512C22.0354 23.174 21.6234 23.2969 21.1406 23.2969H2.85938V22.5469C2.85938 23.2969 2.859 23.2969 2.85863 23.2969H2.85784L2.85617 23.2969L2.8524 23.2968L2.84325 23.2967L2.8186 23.2961C2.79945 23.2955 2.77484 23.2943 2.74551 23.2922C2.68712 23.2881 2.6086 23.2801 2.51635 23.2647C2.33539 23.2345 2.08266 23.1728 1.82084 23.0419C1.55609 22.9095 1.26852 22.6992 1.04881 22.3696C0.82598 22.0354 0.703125 21.6234 0.703125 21.1406V2.85938H1.45312C0.703125 2.85938 0.703125 2.859 0.703125 2.85863V2.85784L0.703131 2.85617L0.703154 2.8524L0.703265 2.84325L0.703885 2.8186C0.704523 2.79945 0.705683 2.77484 0.707778 2.74551C0.711948 2.68712 0.719926 2.6086 0.735302 2.51635C0.765461 2.33539 0.827177 2.08266 0.958086 1.82084C1.09046 1.55609 1.30081 1.26852 1.63036 1.04881C1.96461 0.82598 2.37657 0.703125 2.85938 0.703125H21.1406ZM12.1875 15.5142C12.1871 15.092 12.0193 14.6872 11.7207 14.3887C11.4218 14.0898 11.0164 13.9219 10.5938 13.9219C10.2785 13.9219 9.9704 14.0153 9.70831 14.1905C9.44622 14.3656 9.24195 14.6145 9.12132 14.9057C9.00069 15.1969 8.96913 15.5174 9.03062 15.8265C9.09212 16.1357 9.24391 16.4197 9.4668 16.6426C9.68969 16.8655 9.97367 17.0173 10.2828 17.0788C10.592 17.1402 10.9124 17.1087 11.2037 16.9881C11.4949 16.8674 11.7438 16.6632 11.9189 16.4011C12.094 16.139 12.1875 15.8308 12.1875 15.5156L12.1875 15.5142ZM13.5952 16.2656C13.5094 16.609 13.3648 16.937 13.1661 17.2344C12.8262 17.7432 12.343 18.1397 11.7777 18.3739C11.2124 18.608 10.5903 18.6693 9.99019 18.5499C9.39006 18.4306 8.83881 18.1359 8.40614 17.7032C8.00891 17.306 7.72801 16.8088 7.59229 16.2656H5.67188C5.25766 16.2656 4.92188 15.9298 4.92188 15.5156C4.92188 15.1014 5.25766 14.7656 5.67188 14.7656H7.59228C7.62911 14.6182 7.67689 14.4732 7.7355 14.3317C7.96966 13.7664 8.36619 13.2832 8.87496 12.9433C9.38372 12.6033 9.98187 12.4219 10.5938 12.4219C11.4143 12.4219 12.2012 12.7478 12.7814 13.328C13.1813 13.7279 13.4604 14.226 13.5952 14.7656H18.3281C18.7423 14.7656 19.0781 15.1014 19.0781 15.5156C19.0781 15.9298 18.7423 16.2656 18.3281 16.2656H13.5952ZM4.92188 8.48438C4.92188 8.07016 5.25766 7.73438 5.67188 7.73438H13.2173C13.353 7.19118 13.6339 6.694 14.0311 6.29677C14.4638 5.8641 15.0151 5.56945 15.6152 5.45007C16.2153 5.3307 16.8374 5.39197 17.4027 5.62612C17.968 5.86028 18.4512 6.25682 18.7911 6.76558C19.1311 7.27435 19.3125 7.87249 19.3125 8.48438C19.3125 9.30489 18.9866 10.0918 18.4064 10.672C17.8262 11.2522 17.0393 11.5781 16.2188 11.5781C15.6069 11.5781 15.0087 11.3967 14.5 11.0567C13.9912 10.7168 13.5947 10.2336 13.3605 9.6683C13.3019 9.5268 13.2541 9.38175 13.2173 9.23438H5.67188C5.25766 9.23438 4.92188 8.89859 4.92188 8.48438ZM15.9078 6.92125C16.217 6.85975 16.5374 6.89132 16.8287 7.01194C17.1199 7.13257 17.3688 7.33685 17.5439 7.59894C17.719 7.86103 17.8125 8.16916 17.8125 8.48438C17.8125 8.90707 17.6446 9.31244 17.3457 9.61133C17.0468 9.91021 16.6414 10.0781 16.2188 10.0781C15.9035 10.0781 15.5954 9.98466 15.3333 9.80953C15.0712 9.63441 14.8669 9.3855 14.7463 9.09428C14.6257 8.80306 14.5941 8.48261 14.6556 8.17345C14.7171 7.86429 14.8689 7.58032 15.0918 7.35743C15.3147 7.13454 15.5987 6.98275 15.9078 6.92125Z",
4596
+ fill: fill
4597
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4598
+ id: "clip0_7309_18142"
4599
+ }, /*#__PURE__*/React__default.createElement("rect", {
4600
+ width: "24",
4601
+ height: "24",
4602
+ fill: "white"
4603
+ })))));
4604
+ }
4605
+
4606
+ function TagRemoveIcon({
4607
+ stroke,
4608
+ strokeWidth,
4609
+ fill,
4610
+ size = 'base',
4611
+ ...rest
4612
+ }) {
4613
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4614
+ strokeWidth: strokeWidth ?? 0.1,
4615
+ stroke: stroke ? stroke : 'currentColor',
4616
+ sx: {
4617
+ height: getIconSize(size),
4618
+ width: getIconSize(size)
4619
+ }
4620
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4621
+ xmlns: "http://www.w3.org/2000/svg",
4622
+ width: "24",
4623
+ height: "24",
4624
+ viewBox: "0 0 24 24",
4625
+ fill: "none"
4626
+ }, /*#__PURE__*/React__default.createElement("g", {
4627
+ clipPath: "url(#clip0_6604_24077)"
4628
+ }, /*#__PURE__*/React__default.createElement("path", {
4629
+ fillRule: "evenodd",
4630
+ clipRule: "evenodd",
4631
+ d: "M6.4 19.7C6.5 19.8 6.7 19.9 6.9 19.9C7.1 19.9 7.3 19.9 7.4 19.7C7.7 19.4 7.7 18.9 7.4 18.6L2 13.2C1.9 13.2 1.8 13.1 1.8 13C1.7 12.9 1.7 12.8 1.7 12.7C1.7 12.65 1.725 12.6 1.75 12.55C1.775 12.5 1.8 12.45 1.8 12.4C1.86181 12.4 1.88541 12.3618 1.91804 12.309C1.9382 12.2764 1.96181 12.2382 2 12.2L12.6 1.8C12.6 1.7 12.7 1.6 12.8 1.6C12.9 1.5 13 1.5 13.1 1.5H18.5C18.7 1.5 18.9 1.6 19 1.7C19.1 1.8 19.2 2 19.2 2.2V7.6C19.2 8 19.4 8.5 19.9 8.5C20.4 8.5 20.7 8.1 20.7 7.7V2.3C20.7 1.7 20.4 1.1 20 0.7C19.6 0.2 19 0 18.5 0H13.1C12.8 0 12.5 0.1 12.2 0.2C12 0.3 11.7 0.5 11.5 0.7L1 11.1C0.800003 11.3 0.600003 11.5 0.500003 11.8C0.400003 12.1 0.300003 12.4 0.300003 12.7C0.300003 13 0.400003 13.3 0.500003 13.6C0.600003 13.8 0.800003 14.1 1 14.3L6.4 19.7ZM16.1 8.35C15.9 8.45 15.6 8.55 15.3 8.55C15 8.55 14.7 8.45 14.4 8.35001L14.4 8.35C14.2 8.25 13.9 8.05 13.7 7.85C13.5 7.65 13.3 7.35 13.2 7.15C13.1 6.85 13 6.55 13 6.25C13 5.95 13.1 5.65 13.2 5.35C13.3 5.15 13.5 4.85 13.7 4.65C13.9 4.45 14.1 4.25 14.4 4.15C15 3.95 15.6 3.95 16.1 4.15C16.3 4.25 16.6 4.45 16.8 4.65C17 4.85 17.2 5.05 17.3 5.35C17.4 5.65 17.5 5.95 17.5 6.25C17.5 6.55 17.5 6.85 17.4 7.15C17.3 7.35 17.1 7.65 16.9 7.85C16.7 8.05 16.4 8.25 16.1 8.35ZM15.6 5.65C15.5 5.55 15.4 5.55 15.3 5.55H15C14.9618 5.5882 14.9236 5.6118 14.891 5.63197C14.8382 5.66459 14.8 5.6882 14.8 5.75C14.7 5.75 14.6 5.85 14.6 5.95C14.6 6 14.575 6.05 14.55 6.1C14.525 6.15 14.5 6.2 14.5 6.25C14.5 6.3 14.525 6.35 14.55 6.4C14.575 6.45 14.6 6.5 14.6 6.55C14.6 6.65 14.7 6.75 14.8 6.75C14.8 6.85 14.9 6.95 15 6.95C15.2 7.05 15.4 7.05 15.6 6.95C15.6618 6.95 15.6854 6.9118 15.718 6.85902C15.7382 6.82639 15.7618 6.7882 15.8 6.75C15.9 6.75 16 6.65 16 6.55C16.1 6.45 16.1 6.35 16.1 6.25C16.1 6.2 16.075 6.15 16.05 6.1C16.025 6.05 16 6 16 5.95C15.9425 5.8925 15.9181 5.86806 15.8887 5.85767C15.8669 5.85 15.8425 5.85 15.8 5.85C15.8 5.75 15.7 5.65 15.6 5.65ZM14.4592 14.4597C14.8316 14.0873 15.4354 14.0873 15.8077 14.4597L18.7295 17.3815L21.6513 14.4597C22.0236 14.0873 22.6274 14.0873 22.9998 14.4597C23.3721 14.8321 23.3721 15.4358 22.9998 15.8082L20.078 18.73L22.9998 21.6517C23.3721 22.0241 23.3721 22.6279 22.9998 23.0002C22.6274 23.3726 22.0236 23.3726 21.6513 23.0002L18.7295 20.0785L15.8077 23.0002C15.4354 23.3726 14.8316 23.3726 14.4592 23.0002C14.0869 22.6279 14.0869 22.0241 14.4592 21.6517L17.381 18.73L14.4592 15.8082C14.0869 15.4358 14.0869 14.8321 14.4592 14.4597Z",
4632
+ fill: fill
4633
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4634
+ id: "clip0_6604_24077"
4635
+ }, /*#__PURE__*/React__default.createElement("rect", {
4636
+ width: "24",
4637
+ height: "24",
4638
+ fill: "white"
4639
+ })))));
4640
+ }
4641
+
4642
+ function TagAddIcon({
4643
+ stroke,
4644
+ strokeWidth,
4645
+ fill,
4646
+ size = 'base',
4647
+ ...rest
4648
+ }) {
4649
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4650
+ strokeWidth: strokeWidth ?? 0.1,
4651
+ stroke: stroke ? stroke : 'currentColor',
4652
+ sx: {
4653
+ height: getIconSize(size),
4654
+ width: getIconSize(size)
4655
+ }
4656
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4657
+ xmlns: "http://www.w3.org/2000/svg",
4658
+ width: "24",
4659
+ height: "24",
4660
+ viewBox: "0 0 24 24",
4661
+ fill: "none"
4662
+ }, /*#__PURE__*/React__default.createElement("g", {
4663
+ clipPath: "url(#clip0_6604_24076)"
4664
+ }, /*#__PURE__*/React__default.createElement("path", {
4665
+ fillRule: "evenodd",
4666
+ clipRule: "evenodd",
4667
+ d: "M6.4 19.7C6.5 19.8 6.7 19.9 6.9 19.9C7.1 19.9 7.3 19.9 7.4 19.7C7.7 19.4 7.7 18.9 7.4 18.6L2 13.2C1.9 13.2 1.8 13.1 1.8 13C1.7 12.9 1.7 12.8 1.7 12.7C1.7 12.65 1.725 12.6 1.75 12.55C1.775 12.5 1.8 12.45 1.8 12.4C1.86181 12.4 1.88541 12.3618 1.91804 12.309C1.9382 12.2764 1.96181 12.2382 2 12.2L12.6 1.8C12.6 1.7 12.7 1.6 12.8 1.6C12.9 1.5 13 1.5 13.1 1.5H18.5C18.7 1.5 18.9 1.6 19 1.7C19.1 1.8 19.2 2 19.2 2.2V7.6C19.2 8 19.4 8.5 19.9 8.5C20.4 8.5 20.7 8.1 20.7 7.7V2.3C20.7 1.7 20.4 1.1 20 0.7C19.6 0.2 19 0 18.5 0H13.1C12.8 0 12.5 0.1 12.2 0.2C12 0.3 11.7 0.5 11.5 0.7L1 11.1C0.800003 11.3 0.600003 11.5 0.500003 11.8C0.400003 12.1 0.300003 12.4 0.300003 12.7C0.300003 13 0.400003 13.3 0.500003 13.6C0.600003 13.8 0.800003 14.1 1 14.3L6.4 19.7ZM16.1 8.35C15.9 8.45 15.6 8.55 15.3 8.55C15 8.55 14.7 8.45 14.4 8.35001L14.4 8.35C14.2 8.25 13.9 8.05 13.7 7.85C13.5 7.65 13.3 7.35 13.2 7.15C13.1 6.85 13 6.55 13 6.25C13 5.95 13.1 5.65 13.2 5.35C13.3 5.15 13.5 4.85 13.7 4.65C13.9 4.45 14.1 4.25 14.4 4.15C15 3.95 15.6 3.95 16.1 4.15C16.3 4.25 16.6 4.45 16.8 4.65C17 4.85 17.2 5.05 17.3 5.35C17.4 5.65 17.5 5.95 17.5 6.25C17.5 6.55 17.5 6.85 17.4 7.15C17.3 7.35 17.1 7.65 16.9 7.85C16.7 8.05 16.4 8.25 16.1 8.35ZM15.6 5.65C15.5 5.55 15.4 5.55 15.3 5.55H15C14.9618 5.5882 14.9236 5.6118 14.891 5.63197C14.8382 5.66459 14.8 5.6882 14.8 5.75C14.7 5.75 14.6 5.85 14.6 5.95C14.6 6 14.575 6.05 14.55 6.1C14.525 6.15 14.5 6.2 14.5 6.25C14.5 6.3 14.525 6.35 14.55 6.4C14.575 6.45 14.6 6.5 14.6 6.55C14.6 6.65 14.7 6.75 14.8 6.75C14.8 6.85 14.9 6.95 15 6.95C15.2 7.05 15.4 7.05 15.6 6.95C15.6618 6.95 15.6854 6.9118 15.718 6.85902C15.7382 6.82639 15.7618 6.7882 15.8 6.75C15.9 6.75 16 6.65 16 6.55C16.1 6.45 16.1 6.35 16.1 6.25C16.1 6.2 16.075 6.15 16.05 6.1C16.025 6.05 16 6 16 5.95C15.9425 5.8925 15.9181 5.86806 15.8887 5.85767C15.8669 5.85 15.8425 5.85 15.8 5.85C15.8 5.75 15.7 5.65 15.6 5.65ZM18 12C18.5232 12 18.9474 12.4242 18.9474 12.9474V17.0526H23.0526C23.5758 17.0526 24 17.4768 24 18C24 18.5232 23.5758 18.9473 23.0526 18.9473H18.9474V23.0526C18.9474 23.5758 18.5232 24 18 24C17.4768 24 17.0526 23.5758 17.0526 23.0526V18.9473H12.9474C12.4242 18.9473 12 18.5232 12 18C12 17.4768 12.4242 17.0526 12.9474 17.0526H17.0526V12.9474C17.0526 12.4242 17.4768 12 18 12Z",
4668
+ fill: fill
4669
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4670
+ id: "clip0_6604_24076"
4671
+ }, /*#__PURE__*/React__default.createElement("rect", {
4672
+ width: "24",
4673
+ height: "24",
4674
+ fill: "white"
4675
+ })))));
4676
+ }
4677
+
4678
+ function TagEditIcon({
4679
+ stroke,
4680
+ strokeWidth,
4681
+ fill,
4682
+ size = 'base',
4683
+ ...rest
4684
+ }) {
4685
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4686
+ strokeWidth: strokeWidth ?? 0.1,
4687
+ stroke: stroke ? stroke : 'currentColor',
4688
+ sx: {
4689
+ height: getIconSize(size),
4690
+ width: getIconSize(size)
4691
+ }
4692
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4693
+ xmlns: "http://www.w3.org/2000/svg",
4694
+ width: "24",
4695
+ height: "24",
4696
+ viewBox: "0 0 24 24",
4697
+ fill: "none"
4698
+ }, /*#__PURE__*/React__default.createElement("g", {
4699
+ clipPath: "url(#clip0_6604_24015)"
4700
+ }, /*#__PURE__*/React__default.createElement("path", {
4701
+ fillRule: "evenodd",
4702
+ clipRule: "evenodd",
4703
+ d: "M6.9 19.9C6.7 19.9 6.5 19.8 6.4 19.7L1 14.3C0.800003 14.1 0.600003 13.8 0.500003 13.6C0.400003 13.3 0.300003 13 0.300003 12.7C0.300003 12.4 0.400003 12.1 0.500003 11.8C0.600003 11.5 0.800003 11.3 1 11.1L11.5 0.7C11.7 0.5 12 0.3 12.2 0.2C12.5 0.1 12.8 0 13.1 0H18.5C19 0 19.6 0.2 20 0.7C20.4 1.1 20.7 1.7 20.7 2.3V7.7C20.7 8.1 20.4 8.5 19.9 8.5C19.4 8.5 19.2 8 19.2 7.6V2.2C19.2 2 19.1 1.8 19 1.7C18.9 1.6 18.7 1.5 18.5 1.5H13.1C13 1.5 12.9 1.5 12.8 1.6C12.7 1.6 12.6 1.7 12.6 1.8L2 12.2C1.96181 12.2382 1.9382 12.2764 1.91804 12.309C1.88541 12.3618 1.86181 12.4 1.8 12.4C1.8 12.45 1.775 12.5 1.75 12.55C1.725 12.6 1.7 12.65 1.7 12.7C1.7 12.8 1.7 12.9 1.8 13C1.8 13.1 1.9 13.2 2 13.2L7.4 18.6C7.7 18.9 7.7 19.4 7.4 19.7C7.3 19.9 7.1 19.9 6.9 19.9ZM10.9 24C10.7 24 10.5 23.9 10.4 23.8C10.2 23.6 10.1 23.4 10.2 23.1L11 19.3C11 19.2 11.1 19 11.2 18.9L18.8 11.3C19.9 10.2 21.8 10.2 22.9 11.3C23.4 11.8 23.7 12.6 23.7 13.3C23.7 14.1 23.4 14.8 22.9 15.3L15.2 23C15.1 23.1 15 23.2 14.8 23.2L11.1 24H10.9ZM12.4 19.9L11.9 22.3L14.3 21.8L21.8 14.3C22.1 14 22.2 13.7 22.2 13.3C22.2 12.9 22.1 12.6 21.8 12.3C21.3 11.8 20.4 11.8 19.9 12.3L12.4 19.9ZM16.1 8.35C15.9 8.45 15.6 8.55 15.3 8.55C15 8.55 14.7 8.45 14.4 8.35001L14.4 8.35C14.2 8.25 13.9 8.05 13.7 7.85C13.5 7.65 13.3 7.35 13.2 7.15C13.1 6.85 13 6.55 13 6.25C13 5.95 13.1 5.65 13.2 5.35C13.3 5.15 13.5 4.85 13.7 4.65C13.9 4.45 14.1 4.25 14.4 4.15C15 3.95 15.6 3.95 16.1 4.15C16.3 4.25 16.6 4.45 16.8 4.65C17 4.85 17.2 5.05 17.3 5.35C17.4 5.65 17.5 5.95 17.5 6.25C17.5 6.55 17.5 6.85 17.4 7.15C17.3 7.35 17.1 7.65 16.9 7.85C16.7 8.05 16.4 8.25 16.1 8.35ZM15.6 5.65C15.5 5.55 15.4 5.55 15.3 5.55H15C14.9618 5.5882 14.9236 5.6118 14.891 5.63197C14.8382 5.66459 14.8 5.6882 14.8 5.75C14.7 5.75 14.6 5.85 14.6 5.95C14.6 6 14.575 6.05 14.55 6.1C14.525 6.15 14.5 6.2 14.5 6.25C14.5 6.3 14.525 6.35 14.55 6.4C14.575 6.45 14.6 6.5 14.6 6.55C14.6 6.65 14.7 6.75 14.8 6.75C14.8 6.85 14.9 6.95 15 6.95C15.2 7.05 15.4 7.05 15.6 6.95C15.6618 6.95 15.6854 6.9118 15.718 6.85902C15.7382 6.82639 15.7618 6.7882 15.8 6.75C15.9 6.75 16 6.65 16 6.55C16.1 6.45 16.1 6.35 16.1 6.25C16.1 6.2 16.075 6.15 16.05 6.1C16.025 6.05 16 6 16 5.95C15.9425 5.8925 15.9181 5.86806 15.8887 5.85767C15.8669 5.85 15.8425 5.85 15.8 5.85C15.8 5.75 15.7 5.65 15.6 5.65Z",
4704
+ fill: fill
4705
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4706
+ id: "clip0_6604_24015"
4707
+ }, /*#__PURE__*/React__default.createElement("rect", {
4708
+ width: "24",
4709
+ height: "24",
4710
+ fill: "white"
4711
+ })))));
4712
+ }
4713
+
4714
+ function UnLockIcon({
4715
+ stroke,
4716
+ strokeWidth,
4717
+ fill,
4718
+ size = 'base',
4719
+ ...rest
4720
+ }) {
4721
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4722
+ strokeWidth: strokeWidth ?? 0.1,
4723
+ stroke: stroke ? stroke : 'currentColor',
4724
+ sx: {
4725
+ height: getIconSize(size),
4726
+ width: getIconSize(size)
4727
+ }
4728
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4729
+ xmlns: "http://www.w3.org/2000/svg",
4730
+ width: "24",
4731
+ height: "24",
4732
+ viewBox: "0 0 24 24",
4733
+ fill: "none"
4734
+ }, /*#__PURE__*/React__default.createElement("g", {
4735
+ clipPath: "url(#clip0_6596_7915)"
4736
+ }, /*#__PURE__*/React__default.createElement("path", {
4737
+ fillRule: "evenodd",
4738
+ clipRule: "evenodd",
4739
+ d: "M12 9H21.8C22.7 9 24 9.6 23.9 11.2V21.8C23.9 22.7 23.4 24 21.7 24H8.2C7.3 24 6 23.4 6 21.7V11.2C6 10.3 6.6 9 8.2 9H10.5V6C10.5 4.8 10 3.7 9.2 2.8C8.3 2 7.2 1.5 6 1.5C4.8 1.5 3.7 2 2.9 2.8C2.1 3.7 1.6 4.8 1.6 6V9.8C1.6 10.3 1.3 10.6 0.8 10.6C0.3 10.6 0 10.2 0 9.8V6C0 4.4 0.6 2.9 1.8 1.8C2.9 0.6 4.4 0 6 0C7.6 0 9.1 0.6 10.2 1.8C11.4 2.9 12 4.4 12 6V9ZM21.7 22.5C22.4 22.5 22.5 22 22.5 21.7H22.6V11.3C22.6 10.6 22.1 10.5 21.8 10.5H8.3C7.6 10.5 7.5 11 7.5 11.3V21.7C7.5 22.4 8 22.5 8.3 22.5H21.7ZM14.2 18C14.2 18.5 14.6 18.8 15 18.8C15.4 18.8 15.8 18.4 15.8 18V15C15.8 14.5 15.5 14.2 15 14.2C14.5 14.2 14.2 14.6 14.2 15V18Z",
4740
+ fill: fill
4741
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
4742
+ id: "clip0_6596_7915"
4743
+ }, /*#__PURE__*/React__default.createElement("rect", {
4744
+ width: "24",
4745
+ height: "24",
4746
+ fill: "white"
4747
+ })))));
4748
+ }
4749
+
4750
+ function LockIcon({
4751
+ stroke,
4752
+ strokeWidth,
4753
+ fill,
4754
+ size = 'base',
4755
+ ...rest
4756
+ }) {
4757
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
4758
+ strokeWidth: strokeWidth ?? 0.1,
4759
+ stroke: stroke ? stroke : 'currentColor',
4760
+ sx: {
4761
+ height: getIconSize(size),
4762
+ width: getIconSize(size)
4763
+ }
4764
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
4765
+ xmlns: "http://www.w3.org/2000/svg",
4766
+ width: "24",
4767
+ height: "24",
4768
+ viewBox: "0 0 24 24",
4769
+ fill: "none"
4770
+ }, /*#__PURE__*/React__default.createElement("path", {
4771
+ fillRule: "evenodd",
4772
+ clipRule: "evenodd",
4773
+ d: "M18 9H18.8C19.7 9 21 9.6 20.9 11.2V21.8C20.9 22.7 20.4 24 18.7 24H5.2C4.3 24 3 23.4 3 21.7V11.2C3 10.3 3.6 9 5.2 9H6V6C6 4.4 6.6 2.9 7.8 1.8C8.9 0.6 10.4 0 12 0C13.6 0 15.1 0.6 16.2 1.8C17.4 2.9 18 4.4 18 6V9ZM8.8 2.8C8 3.7 7.5 4.8 7.5 6V9H16.5V6C16.5 4.8 16.1 3.7 15.2 2.8C14.3 2 13.2 1.5 12 1.5C10.8 1.5 9.7 2 8.8 2.8ZM18.7 22.5C19.4 22.5 19.5 22 19.5 21.7H19.6V11.3C19.6 10.6 19.1 10.5 18.8 10.5H5.3C4.6 10.5 4.5 11 4.5 11.3V21.7C4.5 22.4 5 22.5 5.3 22.5H18.7ZM11.2 15C11.2 14.5 11.6 14.2 12 14.2C12.4 14.2 12.8 14.6 12.8 15V18C12.8 18.5 12.5 18.8 12 18.8C11.5 18.8 11.2 18.4 11.2 18V15Z",
4774
+ fill: fill
4775
+ })));
4776
+ }
4777
+
4534
4778
  function BillingIcon({
4535
4779
  stroke,
4536
4780
  strokeWidth,
@@ -5817,6 +6061,34 @@ function LogoWhite({
5817
6061
  })));
5818
6062
  }
5819
6063
 
6064
+ function CutClipIcon({
6065
+ stroke,
6066
+ strokeWidth,
6067
+ fill,
6068
+ size = 'base',
6069
+ ...rest
6070
+ }) {
6071
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
6072
+ strokeWidth: strokeWidth ?? 0.1,
6073
+ stroke: stroke ? stroke : 'currentColor',
6074
+ sx: {
6075
+ height: getIconSize(size),
6076
+ width: getIconSize(size)
6077
+ }
6078
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
6079
+ xmlns: "http://www.w3.org/2000/svg",
6080
+ width: "24",
6081
+ height: "24",
6082
+ viewBox: "0 0 24 24",
6083
+ fill: "none"
6084
+ }, /*#__PURE__*/React__default.createElement("path", {
6085
+ fillRule: "evenodd",
6086
+ clipRule: "evenodd",
6087
+ d: "M2.20818 2.20818C2.98176 1.43459 4.03097 1 5.12498 1C6.21899 1 7.2682 1.43459 8.04178 2.20818C8.81537 2.98176 9.24996 4.03097 9.24996 5.12498C9.24996 6.21899 8.81537 7.2682 8.04178 8.04178C7.56404 8.51952 6.98119 8.86797 6.34757 9.06462L9.8568 11.1953L21.9556 3.84981C22.2802 3.65276 22.703 3.75613 22.9001 4.08069C23.0971 4.40525 22.9938 4.8281 22.6692 5.02515L11.1815 11.9997L13.2698 13.2676C13.5943 13.4647 13.6977 13.8875 13.5006 14.2121C13.3035 14.5366 12.8807 14.64 12.5561 14.4429L9.85678 12.8039L6.34671 14.935C6.98065 15.1316 7.56382 15.4802 8.04178 15.9581C8.81537 16.7317 9.24996 17.7809 9.24996 18.8749C9.24996 19.9689 8.81537 21.0181 8.04178 21.7917C7.2682 22.5653 6.21899 22.9999 5.12498 22.9999C4.03097 22.9999 2.98176 22.5653 2.20818 21.7917C1.43459 21.0181 1 19.9689 1 18.8749C1 17.7809 1.43459 16.7317 2.20818 15.9581C2.53131 15.635 2.90254 15.371 3.30503 15.1731L8.53209 11.9996L3.31285 8.83061C2.90735 8.63232 2.5334 8.36701 2.20818 8.04178C1.43459 7.2682 1 6.21899 1 5.12498C1 4.03097 1.43459 2.98176 2.20818 2.20818ZM3.94372 7.60834L3.93201 7.60273C3.65585 7.46978 3.4013 7.29037 3.18045 7.06951C2.66472 6.55379 2.37499 5.85432 2.37499 5.12498C2.37499 4.39564 2.66472 3.69617 3.18045 3.18045C3.69617 2.66472 4.39564 2.37499 5.12498 2.37499C5.85432 2.37499 6.55379 2.66472 7.06951 3.18045C7.58524 3.69617 7.87497 4.39564 7.87497 5.12498C7.87497 5.85432 7.58524 6.55379 7.06951 7.06951C6.55379 7.58524 5.85432 7.87497 5.12498 7.87497C4.71238 7.87497 4.30934 7.78224 3.94372 7.60834ZM5.12498 16.1249C4.39564 16.1249 3.69617 16.4147 3.18045 16.9304C2.66472 17.4461 2.37499 18.1456 2.37499 18.8749C2.37499 19.6043 2.66472 20.3037 3.18045 20.8194C3.69617 21.3352 4.39564 21.6249 5.12498 21.6249C5.85432 21.6249 6.55379 21.3352 7.06951 20.8194C7.58524 20.3037 7.87497 19.6043 7.87497 18.8749C7.87497 18.1456 7.58524 17.4461 7.06951 16.9304C6.55379 16.4147 5.85432 16.1249 5.12498 16.1249ZM20.9374 16.1249C20.5577 16.1249 20.2499 16.4327 20.2499 16.8124C20.2499 17.1921 20.5577 17.4999 20.9374 17.4999H22.3124C22.6921 17.4999 22.9999 17.1921 22.9999 16.8124C22.9999 16.4327 22.6921 16.1249 22.3124 16.1249H20.9374ZM16.1249 16.8124C16.1249 16.4327 16.4327 16.1249 16.8124 16.1249H18.1874C18.5671 16.1249 18.8749 16.4327 18.8749 16.8124C18.8749 17.1921 18.5671 17.4999 18.1874 17.4999H16.8124C16.4327 17.4999 16.1249 17.1921 16.1249 16.8124ZM12.6874 16.1249C12.3077 16.1249 11.9999 16.4327 11.9999 16.8124C11.9999 17.1921 12.3077 17.4999 12.6874 17.4999H14.0624C14.4421 17.4999 14.7499 17.1921 14.7499 16.8124C14.7499 16.4327 14.4421 16.1249 14.0624 16.1249H12.6874Z",
6088
+ fill: fill
6089
+ })));
6090
+ }
6091
+
5820
6092
  function HangUpIcon({
5821
6093
  stroke,
5822
6094
  strokeWidth,
@@ -5934,6 +6206,30 @@ function MicrophoneIcon({
5934
6206
  })));
5935
6207
  }
5936
6208
 
6209
+ function MoveBackIcon({
6210
+ stroke,
6211
+ strokeWidth,
6212
+ fill,
6213
+ size = 'base',
6214
+ ...rest
6215
+ }) {
6216
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
6217
+ strokeWidth: strokeWidth ?? 0.1,
6218
+ stroke: stroke ? stroke : 'currentColor',
6219
+ sx: {
6220
+ height: getIconSize(size),
6221
+ width: getIconSize(size)
6222
+ }
6223
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
6224
+ viewBox: "0 0 16 18",
6225
+ xmlns: "http://www.w3.org/2000/svg"
6226
+ }, /*#__PURE__*/React__default.createElement("path", {
6227
+ d: "M7.735.686a.547.547 0 0 1 .733.052l.05.059a.585.585 0 0 1-.05.752L7.184 2.863h.329l.184.003c3.928.1 7.082 3.398 7.082 7.451 0 4.117-3.253 7.454-7.266 7.454-.198 0-.402-.01-.604-.026a.569.569 0 0 1-.512-.618.563.563 0 0 1 .602-.525c.173.014.346.022.514.022 3.396 0 6.15-2.824 6.15-6.307 0-3.483-2.754-6.307-6.15-6.307h-.329l1.282 1.314.05.06a.585.585 0 0 1-.05.751.548.548 0 0 1-.789 0L5.442 3.843l-.05-.058a.572.572 0 0 1-.114-.347l.005.077a.591.591 0 0 1-.004-.044v-.033a.6.6 0 0 1 .086-.307.569.569 0 0 1 .077-.099l-.063.077a.573.573 0 0 1 .063-.077L7.678.738zM2.031 14.322a.548.548 0 0 1 .787.068 6.216 6.216 0 0 0 1.571 1.36c.266.162.354.513.198.786a.55.55 0 0 1-.764.203 7.278 7.278 0 0 1-1.857-1.609.584.584 0 0 1 .065-.808zM8.88 8.353c.472 0 .828.184 1.07.55.24.368.361.905.361 1.612 0 .732-.117 1.274-.35 1.625-.234.352-.594.528-1.08.528-.472 0-.828-.182-1.067-.545-.24-.363-.36-.9-.36-1.608 0-.74.117-1.285.35-1.636.233-.35.592-.526 1.076-.526zm-2.535.066v4.191H5.48v-2.425l.009-.398.014-.436-.081.082c-.1.102-.174.17-.218.207l-.47.387-.416-.533L5.634 8.42h.71zm-5.47.753a.569.569 0 0 1 .511.618 6.44 6.44 0 0 0 .173 2.104.575.575 0 0 1-.401.698.557.557 0 0 1-.68-.412 7.614 7.614 0 0 1-.205-2.483.563.563 0 0 1 .602-.525zm8.005-.102c-.203 0-.348.112-.436.337-.087.224-.131.594-.131 1.108 0 .514.043.882.13 1.105.086.223.232.334.437.334.201 0 .347-.113.436-.338.09-.226.134-.593.134-1.101 0-.514-.045-.884-.135-1.108-.09-.225-.235-.337-.435-.337zM1.95 5.525a.548.548 0 0 1 .786-.069.584.584 0 0 1 .067.808 6.303 6.303 0 0 0-.84 1.335.552.552 0 0 1-.744.27.58.58 0 0 1-.262-.765 7.454 7.454 0 0 1 .992-1.579z",
6228
+ fill: fill,
6229
+ fillRule: "evenodd"
6230
+ })));
6231
+ }
6232
+
5937
6233
  function MoveInIcon({
5938
6234
  stroke,
5939
6235
  strokeWidth,
@@ -6096,30 +6392,6 @@ function NoMicrophoneIcon({
6096
6392
  })))));
6097
6393
  }
6098
6394
 
6099
- function MoveBackIcon({
6100
- stroke,
6101
- strokeWidth,
6102
- fill,
6103
- size = 'base',
6104
- ...rest
6105
- }) {
6106
- return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
6107
- strokeWidth: strokeWidth ?? 0.1,
6108
- stroke: stroke ? stroke : 'currentColor',
6109
- sx: {
6110
- height: getIconSize(size),
6111
- width: getIconSize(size)
6112
- }
6113
- }, rest), /*#__PURE__*/React__default.createElement("svg", {
6114
- viewBox: "0 0 16 18",
6115
- xmlns: "http://www.w3.org/2000/svg"
6116
- }, /*#__PURE__*/React__default.createElement("path", {
6117
- d: "M7.735.686a.547.547 0 0 1 .733.052l.05.059a.585.585 0 0 1-.05.752L7.184 2.863h.329l.184.003c3.928.1 7.082 3.398 7.082 7.451 0 4.117-3.253 7.454-7.266 7.454-.198 0-.402-.01-.604-.026a.569.569 0 0 1-.512-.618.563.563 0 0 1 .602-.525c.173.014.346.022.514.022 3.396 0 6.15-2.824 6.15-6.307 0-3.483-2.754-6.307-6.15-6.307h-.329l1.282 1.314.05.06a.585.585 0 0 1-.05.751.548.548 0 0 1-.789 0L5.442 3.843l-.05-.058a.572.572 0 0 1-.114-.347l.005.077a.591.591 0 0 1-.004-.044v-.033a.6.6 0 0 1 .086-.307.569.569 0 0 1 .077-.099l-.063.077a.573.573 0 0 1 .063-.077L7.678.738zM2.031 14.322a.548.548 0 0 1 .787.068 6.216 6.216 0 0 0 1.571 1.36c.266.162.354.513.198.786a.55.55 0 0 1-.764.203 7.278 7.278 0 0 1-1.857-1.609.584.584 0 0 1 .065-.808zM8.88 8.353c.472 0 .828.184 1.07.55.24.368.361.905.361 1.612 0 .732-.117 1.274-.35 1.625-.234.352-.594.528-1.08.528-.472 0-.828-.182-1.067-.545-.24-.363-.36-.9-.36-1.608 0-.74.117-1.285.35-1.636.233-.35.592-.526 1.076-.526zm-2.535.066v4.191H5.48v-2.425l.009-.398.014-.436-.081.082c-.1.102-.174.17-.218.207l-.47.387-.416-.533L5.634 8.42h.71zm-5.47.753a.569.569 0 0 1 .511.618 6.44 6.44 0 0 0 .173 2.104.575.575 0 0 1-.401.698.557.557 0 0 1-.68-.412 7.614 7.614 0 0 1-.205-2.483.563.563 0 0 1 .602-.525zm8.005-.102c-.203 0-.348.112-.436.337-.087.224-.131.594-.131 1.108 0 .514.043.882.13 1.105.086.223.232.334.437.334.201 0 .347-.113.436-.338.09-.226.134-.593.134-1.101 0-.514-.045-.884-.135-1.108-.09-.225-.235-.337-.435-.337zM1.95 5.525a.548.548 0 0 1 .786-.069.584.584 0 0 1 .067.808 6.303 6.303 0 0 0-.84 1.335.552.552 0 0 1-.744.27.58.58 0 0 1-.262-.765 7.454 7.454 0 0 1 .992-1.579z",
6118
- fill: fill,
6119
- fillRule: "evenodd"
6120
- })));
6121
- }
6122
-
6123
6395
  function PauseIcon({
6124
6396
  stroke,
6125
6397
  strokeWidth,
@@ -6204,12 +6476,14 @@ function PreviousIcon({
6204
6476
  }, /*#__PURE__*/React__default.createElement("path", {
6205
6477
  d: "M23.25 3.62901V20.371C23.25 20.5077 23.2127 20.6418 23.142 20.7588C23.0714 20.8757 22.9701 20.9712 22.8491 21.0348C22.7282 21.0985 22.5921 21.1278 22.4557 21.1197C22.3193 21.1117 22.1876 21.0665 22.075 20.989L9.90001 12.618C9.79957 12.5492 9.71741 12.457 9.66063 12.3493C9.60386 12.2416 9.57419 12.1217 9.57419 12C9.57419 11.8783 9.60386 11.7584 9.66063 11.6507C9.71741 11.543 9.79957 11.4508 9.90001 11.382L22.075 3.01101C22.1876 2.93356 22.3193 2.88835 22.4557 2.88028C22.5921 2.8722 22.7282 2.90156 22.8491 2.96518C22.9701 3.0288 23.0714 3.12427 23.142 3.24126C23.2127 3.35826 23.25 3.49233 23.25 3.62901Z",
6206
6478
  stroke: stroke,
6479
+ fill: fill,
6207
6480
  strokeWidth: "1.5",
6208
6481
  strokeLinecap: "round",
6209
6482
  strokeLinejoin: "round"
6210
6483
  }), /*#__PURE__*/React__default.createElement("path", {
6211
6484
  d: "M3.75 2.25H2.25C1.42157 2.25 0.75 2.92157 0.75 3.75V20.25C0.75 21.0784 1.42157 21.75 2.25 21.75H3.75C4.57843 21.75 5.25 21.0784 5.25 20.25V3.75C5.25 2.92157 4.57843 2.25 3.75 2.25Z",
6212
6485
  stroke: stroke,
6486
+ fill: fill,
6213
6487
  strokeWidth: "1.5",
6214
6488
  strokeLinecap: "round",
6215
6489
  strokeLinejoin: "round"
@@ -6338,6 +6612,42 @@ function StopRecordingIcon({
6338
6612
  })));
6339
6613
  }
6340
6614
 
6615
+ function TagIcon({
6616
+ stroke,
6617
+ strokeWidth,
6618
+ fill,
6619
+ size = 'base',
6620
+ ...rest
6621
+ }) {
6622
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
6623
+ strokeWidth: strokeWidth ?? 0.1,
6624
+ stroke: stroke ? stroke : 'currentColor',
6625
+ sx: {
6626
+ height: getIconSize(size),
6627
+ width: getIconSize(size)
6628
+ }
6629
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
6630
+ xmlns: "http://www.w3.org/2000/svg",
6631
+ width: "24",
6632
+ height: "24",
6633
+ viewBox: "0 0 24 24",
6634
+ fill: "none"
6635
+ }, /*#__PURE__*/React__default.createElement("g", {
6636
+ clipPath: "url(#clip0_6604_24014)"
6637
+ }, /*#__PURE__*/React__default.createElement("path", {
6638
+ fillRule: "evenodd",
6639
+ clipRule: "evenodd",
6640
+ d: "M11 23C10.6 23.5 10 23.7 9.4 23.7C8.8 23.7 8.3 23.4 7.8 23L1 16.2C0.500004 15.8 0.300003 15.2 0.300003 14.6C0.300003 14 0.600004 13.4 1 13L12.4 1.39999C13.2 0.699988 14.1 0.299988 15.1 0.299988H21.4C22 0.299988 22.6 0.599988 23 0.999988C23.5 1.39999 23.7 1.99999 23.7 2.59999V8.79999C23.7 9.89999 23.3 10.8 22.6 11.5L11 23ZM22 1.99999C21.8 1.89999 21.6 1.79999 21.4 1.79999H15.2C14.6 1.79999 14 1.99999 13.6 2.49999L2 14C1.9 14.2 1.8 14.4 1.8 14.6C1.8 14.8 1.9 15 2 15.1L8.9 22C9.2 22.3 9.7 22.3 10 22L21.5 10.5C22 10.1 22.2 9.49999 22.2 8.89999V2.59999C22.2 2.39999 22.2 2.09999 22 1.99999ZM18.5 8.39999C18.3 8.49999 18 8.59999 17.7 8.59999C17.4 8.59999 17.1 8.49999 16.8 8.4L16.8 8.39999C16.6 8.29999 16.3 8.09999 16.1 7.89999C15.9 7.69999 15.7 7.39999 15.6 7.19999C15.5 6.89999 15.4 6.59999 15.4 6.29999C15.4 5.99999 15.5 5.69999 15.6 5.39999C15.7 5.19999 15.9 4.89999 16.1 4.69999C16.3 4.49999 16.5 4.29999 16.8 4.19999C17.4 3.99999 18 3.99999 18.5 4.19999C18.7 4.29999 19 4.49999 19.2 4.69999C19.4 4.89999 19.6 5.09999 19.7 5.39999C19.8 5.69999 19.9 5.99999 19.9 6.29999C19.9 6.59999 19.9 6.89999 19.8 7.19999C19.7 7.39999 19.5 7.69999 19.3 7.89999C19.1 8.09999 18.8 8.29999 18.5 8.39999ZM18 5.69999C17.9 5.59999 17.8 5.59999 17.7 5.59999H17.4C17.3618 5.63818 17.3236 5.66179 17.291 5.68195C17.2382 5.71458 17.2 5.73818 17.2 5.79999C17.1 5.79999 17 5.89999 17 5.99999C17 6.04999 16.975 6.09999 16.95 6.14999C16.925 6.19999 16.9 6.24999 16.9 6.29999C16.9 6.34999 16.925 6.39999 16.95 6.44999C16.975 6.49999 17 6.54999 17 6.59999C17 6.69999 17.1 6.79999 17.2 6.79999C17.2 6.89999 17.3 6.99999 17.4 6.99999C17.6 7.09999 17.8 7.09999 18 6.99999C18.0618 6.99999 18.0854 6.96179 18.118 6.90901C18.1382 6.87638 18.1618 6.83819 18.2 6.79999C18.3 6.79999 18.4 6.69999 18.4 6.59999C18.5 6.49999 18.5 6.39999 18.5 6.29999C18.5 6.24999 18.475 6.19999 18.45 6.14999C18.425 6.09999 18.4 6.04999 18.4 5.99999C18.3425 5.94248 18.3181 5.91805 18.2887 5.90766C18.2669 5.89999 18.2425 5.89999 18.2 5.89999C18.2 5.79999 18.1 5.69999 18 5.69999Z",
6641
+ fill: fill
6642
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
6643
+ id: "clip0_6604_24014"
6644
+ }, /*#__PURE__*/React__default.createElement("rect", {
6645
+ width: "24",
6646
+ height: "24",
6647
+ fill: "white"
6648
+ })))));
6649
+ }
6650
+
6341
6651
  function VolumeIcon({
6342
6652
  stroke,
6343
6653
  strokeWidth,
@@ -11451,7 +11761,8 @@ const Modal = ({
11451
11761
  validationText,
11452
11762
  onPressEnter,
11453
11763
  onConfirm,
11454
- width
11764
+ width,
11765
+ height
11455
11766
  }) => {
11456
11767
  React.useEffect(() => {
11457
11768
  const handleKeyDown = e => {
@@ -11479,7 +11790,8 @@ const Modal = ({
11479
11790
  }, /*#__PURE__*/React__default.createElement("div", {
11480
11791
  className: styles$w.modal_content,
11481
11792
  style: {
11482
- width: width ?? '21rem'
11793
+ width: width ?? '21rem',
11794
+ height: height ?? 'fit-content'
11483
11795
  }
11484
11796
  }, /*#__PURE__*/React__default.createElement("div", {
11485
11797
  className: `${styles$w.modal_header}`
@@ -15195,6 +15507,7 @@ exports.ConversationIdleIcon = ConversationIdleIcon;
15195
15507
  exports.ConversationStatusIcon = ConversationStatusIcon;
15196
15508
  exports.CopyPasteIcon = CopyPasteIcon;
15197
15509
  exports.CreditCardIcon = CreditCardIcon;
15510
+ exports.CutClipIcon = CutClipIcon;
15198
15511
  exports.DashedArrow = DashedArrow;
15199
15512
  exports.DatePicker = DatePicker;
15200
15513
  exports.DownloadIcon = DownloadIcon;
@@ -15238,6 +15551,7 @@ exports.LayoutRightIcon = LayoutRightIcon;
15238
15551
  exports.Link = Link;
15239
15552
  exports.LinkIcon = LinkIcon;
15240
15553
  exports.ListToDoIcon = ListToDoIcon;
15554
+ exports.LockIcon = LockIcon;
15241
15555
  exports.LogoBeta = LogoBeta;
15242
15556
  exports.LogoNormal = LogoNormal;
15243
15557
  exports.LogoSlider = LogoSlider;
@@ -15319,6 +15633,7 @@ exports.SendEmailIcon = SendEmailIcon;
15319
15633
  exports.SendIcon = SendIcon;
15320
15634
  exports.Sentiment = Sentiment;
15321
15635
  exports.SettingsCircledIcon = SettingsCircledIcon;
15636
+ exports.SettingsSliderIcon = SettingsSliderIcon;
15322
15637
  exports.ShareIcon = ShareIcon;
15323
15638
  exports.SingleSelect = SingleSelect;
15324
15639
  exports.SmartBrainIcon = SmartBrainIcon;
@@ -15336,6 +15651,10 @@ exports.TableRows = TableRows;
15336
15651
  exports.Tabs = Tabs;
15337
15652
  exports.TabsUnderline = TabsUnderline;
15338
15653
  exports.Tag = Tag;
15654
+ exports.TagAddIcon = TagAddIcon;
15655
+ exports.TagEditIcon = TagEditIcon;
15656
+ exports.TagIcon = TagIcon;
15657
+ exports.TagRemoveIcon = TagRemoveIcon;
15339
15658
  exports.Task = Task;
15340
15659
  exports.TaskIcon = TaskIcon;
15341
15660
  exports.TeamIcon = TeamIcon;
@@ -15356,6 +15675,8 @@ exports.ToggleTab = ToggleTab;
15356
15675
  exports.Tooltip = Tooltip;
15357
15676
  exports.TvFlatScreenIcon = TvFlatScreenIcon;
15358
15677
  exports.TvIcon = TvIcon;
15678
+ exports.UnLockIcon = UnLockIcon;
15679
+ exports.UndoIcon = UndoIcon;
15359
15680
  exports.UnlockedIcon = UnlockedIcon;
15360
15681
  exports.UnmoderatedIcon = UnmoderatedIcon;
15361
15682
  exports.UsabilityBrowser = UsabilityBrowser;