odaptos_design_system 1.4.126 → 1.4.128

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.
@@ -2,6 +2,7 @@ import React, { HTMLAttributes } from 'react';
2
2
  export interface ButtonProps extends HTMLAttributes<HTMLButtonElement> {
3
3
  variant?: 'primary' | 'secondary' | 'tertiary' | 'tertiary-alt' | 'alert' | 'success';
4
4
  size?: 'sm' | 'base' | 'lg';
5
+ customBackground?: string;
5
6
  iconLeft?: JSX.Element;
6
7
  iconRight?: JSX.Element;
7
8
  disabled?: boolean;
@@ -9,4 +10,4 @@ export interface ButtonProps extends HTMLAttributes<HTMLButtonElement> {
9
10
  className?: string;
10
11
  }
11
12
  /** Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=131-253&mode=dev */
12
- export declare const Button: ({ variant, size, iconLeft, iconRight, text, disabled, className, ...props }: ButtonProps) => React.JSX.Element;
13
+ export declare const Button: ({ variant, size, customBackground, iconLeft, iconRight, text, disabled, className, ...props }: ButtonProps) => React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function NoCameraIcon({ stroke, strokeWidth, fill, ...rest }: SvgIconProps): React.JSX.Element;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ export default function NoMicrophoneIcon({ stroke, strokeWidth, fill, ...rest }: SvgIconProps): React.JSX.Element;
@@ -41,6 +41,7 @@ export { default as Faq } from './Illustrations/Faq';
41
41
  export { default as HappyMen } from './Illustrations/HappyMen';
42
42
  export { default as IntegratedUsabilityScore } from './Illustrations/IntegratedUsabilityScore';
43
43
  export { default as InterviewTranscript } from './Illustrations/InterviewTranscript';
44
+ export { default as InterviewTranscriptGreen } from './Illustrations/InterviewTranscriptGreen';
44
45
  export { default as MenShowingSomething } from './Illustrations/MenShowingSomething';
45
46
  export { default as MetaAnalyse } from './Illustrations/MetaAnalyse';
46
47
  export { default as MetaAnalyse2 } from './Illustrations/MetaAnalyse2';
@@ -54,7 +55,6 @@ export { default as UxGuide } from './Illustrations/UxGuide';
54
55
  export { default as VideoFlag } from './Illustrations/VideoFlag';
55
56
  export { default as VideoFlag2 } from './Illustrations/VideoFlag2';
56
57
  export { default as VideoFlagGreen } from './Illustrations/VideoFlagGreen';
57
- export { default as InterviewTranscriptGreen } from './Illustrations/InterviewTranscriptGreen';
58
58
  export { default as AccountIcon } from './Interaction/AccountIcon';
59
59
  export { default as AddIcon } from './Interaction/AddIcon';
60
60
  export { default as AgendaIcon } from './Interaction/AgendaIcon';
@@ -86,6 +86,8 @@ export { default as MeetingIcon } from './MediaControl/MeetingIcon';
86
86
  export { default as MicrophoneIcon } from './MediaControl/MicrophoneIcon';
87
87
  export { default as MoveInIcon } from './MediaControl/MoveInIcon';
88
88
  export { default as MuteIcon } from './MediaControl/MuteIcon';
89
+ export { default as NoCameraIcon } from './MediaControl/NoCameraIcon';
90
+ export { default as NoMicrophoneIcon } from './MediaControl/NoMicrophoneIcon';
89
91
  export { default as PauseIcon } from './MediaControl/PauseIcon';
90
92
  export { default as PlayIcon } from './MediaControl/PlayIcon';
91
93
  export { default as PreviousIcon } from './MediaControl/PreviousIcon';
@@ -5,10 +5,11 @@ interface BannerProps extends HTMLAttributes<HTMLDivElement> {
5
5
  textLink?: string;
6
6
  link?: string;
7
7
  className?: string;
8
+ onClose?: () => void;
8
9
  type: 'error' | 'warning' | 'success' | 'info';
9
10
  }
10
11
  /**
11
12
  * Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=2527-33150&mode=dev
12
13
  */
13
- export declare const Banner: ({ title, content, textLink, link, className, type, ...props }: BannerProps) => React.JSX.Element;
14
+ export declare const Banner: ({ title, content, textLink, link, className, type, onClose, ...props }: BannerProps) => React.JSX.Element;
14
15
  export {};
@@ -0,0 +1,25 @@
1
+ import React from 'react';
2
+ interface Feature {
3
+ featureName: string;
4
+ tooltipText: string;
5
+ }
6
+ interface PricingCardProps {
7
+ cardInfo: {
8
+ title: string;
9
+ description: string;
10
+ monthlyPrice: number;
11
+ yearlyPrice: number;
12
+ };
13
+ cmsContent: any;
14
+ isYearlyOrMonthly: 'yearly' | 'monthly';
15
+ interviewsNumber?: number;
16
+ featuresList: Feature[];
17
+ isDark?: boolean;
18
+ isHighlighted: boolean;
19
+ highlightMessage?: string;
20
+ onClick: () => void;
21
+ currency?: string;
22
+ tier: 1 | 2 | 3 | 4;
23
+ }
24
+ declare const PricingCard: React.FC<PricingCardProps>;
25
+ export default PricingCard;
@@ -2408,6 +2408,145 @@ function InterviewTranscript({
2408
2408
  })));
2409
2409
  }
2410
2410
 
2411
+ function InterviewTranscriptGreen({
2412
+ ...rest
2413
+ }) {
2414
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
2415
+ strokeWidth: 0.1,
2416
+ stroke: 'currentColor'
2417
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
2418
+ width: "64",
2419
+ height: "64",
2420
+ viewBox: "0 0 64 64",
2421
+ fill: "none",
2422
+ xmlns: "http://www.w3.org/2000/svg"
2423
+ }, /*#__PURE__*/React__default.createElement("path", {
2424
+ d: "M10.2163 51.2225C18.9571 51.1656 27.4375 51.1087 36.1783 51.0518",
2425
+ stroke: "#BCC4D1",
2426
+ "stroke-width": "1.92",
2427
+ "stroke-linecap": "round",
2428
+ "stroke-linejoin": "round"
2429
+ }), /*#__PURE__*/React__default.createElement("path", {
2430
+ d: "M16.36 45.1875C16.2727 40.2801 16.2012 35.3717 16.2594 30.4638C16.2674 29.7876 16.2824 29.0901 16.5561 28.4717C16.8299 27.8533 17.4317 27.3288 18.1073 27.36C18.7828 27.3912 19.3756 28.1688 19.0688 28.7715C18.6302 27.6554 19.4926 26.2381 20.6854 26.1147C21.8783 25.9912 23.0126 27.2019 22.8118 28.3842C22.8778 27.3297 24.2926 26.8137 25.2579 27.2433C26.2232 27.6729 26.791 28.6698 27.2438 29.6244C29.5253 34.4344 30.5634 39.8279 30.2306 45.1411",
2431
+ fill: "#8AEB8A"
2432
+ }), /*#__PURE__*/React__default.createElement("path", {
2433
+ d: "M16.36 45.1875C16.2727 40.2801 16.2012 35.3717 16.2594 30.4638C16.2674 29.7876 16.2824 29.0901 16.5561 28.4717C16.8299 27.8533 17.4317 27.3288 18.1073 27.36C18.7828 27.3912 19.3756 28.1688 19.0688 28.7715C18.6302 27.6554 19.4926 26.2381 20.6854 26.1147C21.8783 25.9912 23.0126 27.2019 22.8118 28.3842C22.8778 27.3297 24.2926 26.8137 25.2579 27.2433C26.2232 27.6729 26.791 28.6698 27.2438 29.6244C29.5253 34.4344 30.5634 39.8279 30.2306 45.1411",
2434
+ stroke: "#8AEB8A",
2435
+ "stroke-width": "1.92",
2436
+ "stroke-linecap": "round",
2437
+ "stroke-linejoin": "round"
2438
+ }), /*#__PURE__*/React__default.createElement("path", {
2439
+ d: "M37.5432 55.3663C34.2369 40.2817 33.0419 24.5548 34.3736 8.63354C41.0017 8.71386 48.2918 8.79418 55.2449 8.81287C54.9336 24.1632 55.4011 40.3074 57.8318 55.3663L37.5432 55.3663Z",
2440
+ stroke: "#004799",
2441
+ "stroke-width": "1.92",
2442
+ "stroke-linecap": "round",
2443
+ "stroke-linejoin": "round"
2444
+ }), /*#__PURE__*/React__default.createElement("path", {
2445
+ d: "M37.2275 16.8589L43.9519 16.9034",
2446
+ stroke: "#004799",
2447
+ "stroke-width": "1.92",
2448
+ "stroke-linecap": "round",
2449
+ "stroke-linejoin": "round"
2450
+ }), /*#__PURE__*/React__default.createElement("path", {
2451
+ d: "M46.2549 20.3215C48.1269 20.2924 49.999 20.2633 51.871 20.2341",
2452
+ stroke: "#004799",
2453
+ "stroke-width": "1.92",
2454
+ "stroke-linecap": "round",
2455
+ "stroke-linejoin": "round"
2456
+ }), /*#__PURE__*/React__default.createElement("path", {
2457
+ d: "M37.3062 24.6091C39.8662 24.6129 42.4263 24.6167 44.9864 24.6204",
2458
+ stroke: "#8AEB8A",
2459
+ "stroke-width": "1.92",
2460
+ "stroke-linecap": "round",
2461
+ "stroke-linejoin": "round"
2462
+ }), /*#__PURE__*/React__default.createElement("path", {
2463
+ d: "M37.6143 27.3146C39.598 27.3079 41.5818 27.3013 43.5656 27.2947",
2464
+ stroke: "#8AEB8A",
2465
+ "stroke-width": "1.92",
2466
+ "stroke-linecap": "round",
2467
+ "stroke-linejoin": "round"
2468
+ }), /*#__PURE__*/React__default.createElement("path", {
2469
+ d: "M46.2549 31.3879C48.1424 31.3659 50.0299 31.3438 51.9173 31.3218",
2470
+ stroke: "#004799",
2471
+ "stroke-width": "1.92",
2472
+ "stroke-linecap": "round",
2473
+ "stroke-linejoin": "round"
2474
+ }), /*#__PURE__*/React__default.createElement("path", {
2475
+ d: "M38.7026 35.9875C41.4695 35.9615 44.2364 35.9355 47.0033 35.9094",
2476
+ stroke: "#004799",
2477
+ "stroke-width": "1.92",
2478
+ "stroke-linecap": "round",
2479
+ "stroke-linejoin": "round"
2480
+ }), /*#__PURE__*/React__default.createElement("path", {
2481
+ d: "M38.5981 38.7406C41.6487 38.6925 44.6992 38.6443 47.7497 38.5962",
2482
+ stroke: "#004799",
2483
+ "stroke-width": "1.92",
2484
+ "stroke-linecap": "round",
2485
+ "stroke-linejoin": "round"
2486
+ }), /*#__PURE__*/React__default.createElement("path", {
2487
+ d: "M47.2422 41.3511L50.5184 41.3301",
2488
+ stroke: "#004799",
2489
+ "stroke-width": "1.92",
2490
+ "stroke-linecap": "round",
2491
+ "stroke-linejoin": "round"
2492
+ }), /*#__PURE__*/React__default.createElement("path", {
2493
+ d: "M38.7876 41.4053L40.6896 41.3931",
2494
+ stroke: "#004799",
2495
+ "stroke-width": "1.92",
2496
+ "stroke-linecap": "round",
2497
+ "stroke-linejoin": "round"
2498
+ }), /*#__PURE__*/React__default.createElement("path", {
2499
+ d: "M39.4736 44.0701C40.6002 44.0514 41.7267 44.0326 42.8533 44.0139",
2500
+ stroke: "#004799",
2501
+ "stroke-width": "1.92",
2502
+ "stroke-linecap": "round",
2503
+ "stroke-linejoin": "round"
2504
+ }), /*#__PURE__*/React__default.createElement("path", {
2505
+ d: "M42.853 48.6124C46.4836 48.6017 50.1142 48.591 53.7448 48.5803",
2506
+ stroke: "#004799",
2507
+ "stroke-width": "1.92",
2508
+ "stroke-linecap": "round",
2509
+ "stroke-linejoin": "round"
2510
+ }), /*#__PURE__*/React__default.createElement("path", {
2511
+ d: "M48.2515 51.1883C50.1791 51.1785 52.1067 51.1687 54.0343 51.1589",
2512
+ stroke: "#004799",
2513
+ "stroke-width": "1.92",
2514
+ "stroke-linecap": "round",
2515
+ "stroke-linejoin": "round"
2516
+ }), /*#__PURE__*/React__default.createElement("path", {
2517
+ d: "M42.4941 11.4961H47.1895",
2518
+ stroke: "#004799",
2519
+ "stroke-width": "1.92",
2520
+ "stroke-linecap": "round",
2521
+ "stroke-linejoin": "round"
2522
+ }), /*#__PURE__*/React__default.createElement("path", {
2523
+ d: "M43.0674 41.3491H44.5928",
2524
+ stroke: "#F5836C",
2525
+ "stroke-width": "1.92",
2526
+ "stroke-linecap": "round",
2527
+ "stroke-linejoin": "round"
2528
+ }), /*#__PURE__*/React__default.createElement("path", {
2529
+ d: "M33.4421 20.234C26.3111 20.1185 13.5022 20.1846 8.34991 20.2182C7.11989 20.2262 6.13854 21.2375 6.16864 22.4672C6.33495 29.2607 6.51024 36.9149 6.77524 43.5771C6.82224 44.7587 7.79508 45.6877 8.97762 45.6853L35.2376 45.6317",
2530
+ stroke: "#004799",
2531
+ "stroke-width": "1.92",
2532
+ "stroke-linecap": "round",
2533
+ "stroke-linejoin": "round"
2534
+ }), /*#__PURE__*/React__default.createElement("path", {
2535
+ d: "M18.9699 52.1847C18.477 51.6523 18.49 50.7306 18.9977 50.2122C19.5053 49.6938 20.4265 49.6616 20.9692 50.1433C21.5118 50.625 21.5891 51.5435 21.1346 52.1091C20.68 52.6747 19.6523 52.9219 18.9699 52.1847Z",
2536
+ fill: "#004799",
2537
+ stroke: "#004799",
2538
+ "stroke-width": "1.92",
2539
+ "stroke-linecap": "round",
2540
+ "stroke-linejoin": "round"
2541
+ }), /*#__PURE__*/React__default.createElement("path", {
2542
+ d: "M21.2476 37.2805C22.3954 37.974 23.9631 37.8909 25.0311 37.0798",
2543
+ stroke: "#004799",
2544
+ "stroke-width": "1.92",
2545
+ "stroke-linecap": "round",
2546
+ "stroke-linejoin": "round"
2547
+ })));
2548
+ }
2549
+
2411
2550
  function MenShowingSomething({
2412
2551
  stroke,
2413
2552
  strokeWidth,
@@ -3715,145 +3854,6 @@ function VideoFlagGreen({
3715
3854
  })));
3716
3855
  }
3717
3856
 
3718
- function InterviewTranscriptGreen({
3719
- ...rest
3720
- }) {
3721
- return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
3722
- strokeWidth: 0.1,
3723
- stroke: 'currentColor'
3724
- }, rest), /*#__PURE__*/React__default.createElement("svg", {
3725
- width: "64",
3726
- height: "64",
3727
- viewBox: "0 0 64 64",
3728
- fill: "none",
3729
- xmlns: "http://www.w3.org/2000/svg"
3730
- }, /*#__PURE__*/React__default.createElement("path", {
3731
- d: "M10.2163 51.2225C18.9571 51.1656 27.4375 51.1087 36.1783 51.0518",
3732
- stroke: "#BCC4D1",
3733
- "stroke-width": "1.92",
3734
- "stroke-linecap": "round",
3735
- "stroke-linejoin": "round"
3736
- }), /*#__PURE__*/React__default.createElement("path", {
3737
- d: "M16.36 45.1875C16.2727 40.2801 16.2012 35.3717 16.2594 30.4638C16.2674 29.7876 16.2824 29.0901 16.5561 28.4717C16.8299 27.8533 17.4317 27.3288 18.1073 27.36C18.7828 27.3912 19.3756 28.1688 19.0688 28.7715C18.6302 27.6554 19.4926 26.2381 20.6854 26.1147C21.8783 25.9912 23.0126 27.2019 22.8118 28.3842C22.8778 27.3297 24.2926 26.8137 25.2579 27.2433C26.2232 27.6729 26.791 28.6698 27.2438 29.6244C29.5253 34.4344 30.5634 39.8279 30.2306 45.1411",
3738
- fill: "#8AEB8A"
3739
- }), /*#__PURE__*/React__default.createElement("path", {
3740
- d: "M16.36 45.1875C16.2727 40.2801 16.2012 35.3717 16.2594 30.4638C16.2674 29.7876 16.2824 29.0901 16.5561 28.4717C16.8299 27.8533 17.4317 27.3288 18.1073 27.36C18.7828 27.3912 19.3756 28.1688 19.0688 28.7715C18.6302 27.6554 19.4926 26.2381 20.6854 26.1147C21.8783 25.9912 23.0126 27.2019 22.8118 28.3842C22.8778 27.3297 24.2926 26.8137 25.2579 27.2433C26.2232 27.6729 26.791 28.6698 27.2438 29.6244C29.5253 34.4344 30.5634 39.8279 30.2306 45.1411",
3741
- stroke: "#8AEB8A",
3742
- "stroke-width": "1.92",
3743
- "stroke-linecap": "round",
3744
- "stroke-linejoin": "round"
3745
- }), /*#__PURE__*/React__default.createElement("path", {
3746
- d: "M37.5432 55.3663C34.2369 40.2817 33.0419 24.5548 34.3736 8.63354C41.0017 8.71386 48.2918 8.79418 55.2449 8.81287C54.9336 24.1632 55.4011 40.3074 57.8318 55.3663L37.5432 55.3663Z",
3747
- stroke: "#004799",
3748
- "stroke-width": "1.92",
3749
- "stroke-linecap": "round",
3750
- "stroke-linejoin": "round"
3751
- }), /*#__PURE__*/React__default.createElement("path", {
3752
- d: "M37.2275 16.8589L43.9519 16.9034",
3753
- stroke: "#004799",
3754
- "stroke-width": "1.92",
3755
- "stroke-linecap": "round",
3756
- "stroke-linejoin": "round"
3757
- }), /*#__PURE__*/React__default.createElement("path", {
3758
- d: "M46.2549 20.3215C48.1269 20.2924 49.999 20.2633 51.871 20.2341",
3759
- stroke: "#004799",
3760
- "stroke-width": "1.92",
3761
- "stroke-linecap": "round",
3762
- "stroke-linejoin": "round"
3763
- }), /*#__PURE__*/React__default.createElement("path", {
3764
- d: "M37.3062 24.6091C39.8662 24.6129 42.4263 24.6167 44.9864 24.6204",
3765
- stroke: "#8AEB8A",
3766
- "stroke-width": "1.92",
3767
- "stroke-linecap": "round",
3768
- "stroke-linejoin": "round"
3769
- }), /*#__PURE__*/React__default.createElement("path", {
3770
- d: "M37.6143 27.3146C39.598 27.3079 41.5818 27.3013 43.5656 27.2947",
3771
- stroke: "#8AEB8A",
3772
- "stroke-width": "1.92",
3773
- "stroke-linecap": "round",
3774
- "stroke-linejoin": "round"
3775
- }), /*#__PURE__*/React__default.createElement("path", {
3776
- d: "M46.2549 31.3879C48.1424 31.3659 50.0299 31.3438 51.9173 31.3218",
3777
- stroke: "#004799",
3778
- "stroke-width": "1.92",
3779
- "stroke-linecap": "round",
3780
- "stroke-linejoin": "round"
3781
- }), /*#__PURE__*/React__default.createElement("path", {
3782
- d: "M38.7026 35.9875C41.4695 35.9615 44.2364 35.9355 47.0033 35.9094",
3783
- stroke: "#004799",
3784
- "stroke-width": "1.92",
3785
- "stroke-linecap": "round",
3786
- "stroke-linejoin": "round"
3787
- }), /*#__PURE__*/React__default.createElement("path", {
3788
- d: "M38.5981 38.7406C41.6487 38.6925 44.6992 38.6443 47.7497 38.5962",
3789
- stroke: "#004799",
3790
- "stroke-width": "1.92",
3791
- "stroke-linecap": "round",
3792
- "stroke-linejoin": "round"
3793
- }), /*#__PURE__*/React__default.createElement("path", {
3794
- d: "M47.2422 41.3511L50.5184 41.3301",
3795
- stroke: "#004799",
3796
- "stroke-width": "1.92",
3797
- "stroke-linecap": "round",
3798
- "stroke-linejoin": "round"
3799
- }), /*#__PURE__*/React__default.createElement("path", {
3800
- d: "M38.7876 41.4053L40.6896 41.3931",
3801
- stroke: "#004799",
3802
- "stroke-width": "1.92",
3803
- "stroke-linecap": "round",
3804
- "stroke-linejoin": "round"
3805
- }), /*#__PURE__*/React__default.createElement("path", {
3806
- d: "M39.4736 44.0701C40.6002 44.0514 41.7267 44.0326 42.8533 44.0139",
3807
- stroke: "#004799",
3808
- "stroke-width": "1.92",
3809
- "stroke-linecap": "round",
3810
- "stroke-linejoin": "round"
3811
- }), /*#__PURE__*/React__default.createElement("path", {
3812
- d: "M42.853 48.6124C46.4836 48.6017 50.1142 48.591 53.7448 48.5803",
3813
- stroke: "#004799",
3814
- "stroke-width": "1.92",
3815
- "stroke-linecap": "round",
3816
- "stroke-linejoin": "round"
3817
- }), /*#__PURE__*/React__default.createElement("path", {
3818
- d: "M48.2515 51.1883C50.1791 51.1785 52.1067 51.1687 54.0343 51.1589",
3819
- stroke: "#004799",
3820
- "stroke-width": "1.92",
3821
- "stroke-linecap": "round",
3822
- "stroke-linejoin": "round"
3823
- }), /*#__PURE__*/React__default.createElement("path", {
3824
- d: "M42.4941 11.4961H47.1895",
3825
- stroke: "#004799",
3826
- "stroke-width": "1.92",
3827
- "stroke-linecap": "round",
3828
- "stroke-linejoin": "round"
3829
- }), /*#__PURE__*/React__default.createElement("path", {
3830
- d: "M43.0674 41.3491H44.5928",
3831
- stroke: "#F5836C",
3832
- "stroke-width": "1.92",
3833
- "stroke-linecap": "round",
3834
- "stroke-linejoin": "round"
3835
- }), /*#__PURE__*/React__default.createElement("path", {
3836
- d: "M33.4421 20.234C26.3111 20.1185 13.5022 20.1846 8.34991 20.2182C7.11989 20.2262 6.13854 21.2375 6.16864 22.4672C6.33495 29.2607 6.51024 36.9149 6.77524 43.5771C6.82224 44.7587 7.79508 45.6877 8.97762 45.6853L35.2376 45.6317",
3837
- stroke: "#004799",
3838
- "stroke-width": "1.92",
3839
- "stroke-linecap": "round",
3840
- "stroke-linejoin": "round"
3841
- }), /*#__PURE__*/React__default.createElement("path", {
3842
- d: "M18.9699 52.1847C18.477 51.6523 18.49 50.7306 18.9977 50.2122C19.5053 49.6938 20.4265 49.6616 20.9692 50.1433C21.5118 50.625 21.5891 51.5435 21.1346 52.1091C20.68 52.6747 19.6523 52.9219 18.9699 52.1847Z",
3843
- fill: "#004799",
3844
- stroke: "#004799",
3845
- "stroke-width": "1.92",
3846
- "stroke-linecap": "round",
3847
- "stroke-linejoin": "round"
3848
- }), /*#__PURE__*/React__default.createElement("path", {
3849
- d: "M21.2476 37.2805C22.3954 37.974 23.9631 37.8909 25.0311 37.0798",
3850
- stroke: "#004799",
3851
- "stroke-width": "1.92",
3852
- "stroke-linecap": "round",
3853
- "stroke-linejoin": "round"
3854
- })));
3855
- }
3856
-
3857
3857
  function AccountIcon({
3858
3858
  stroke,
3859
3859
  strokeWidth,
@@ -5172,6 +5172,77 @@ function MuteIcon({
5172
5172
  })));
5173
5173
  }
5174
5174
 
5175
+ function NoCameraIcon({
5176
+ stroke,
5177
+ strokeWidth,
5178
+ fill,
5179
+ ...rest
5180
+ }) {
5181
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
5182
+ strokeWidth: strokeWidth ?? 0.1,
5183
+ stroke: stroke ? stroke : 'currentColor'
5184
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
5185
+ xmlns: "http://www.w3.org/2000/svg",
5186
+ width: "24",
5187
+ height: "24",
5188
+ viewBox: "0 0 24 24",
5189
+ fill: "none"
5190
+ }, /*#__PURE__*/React__default.createElement("g", {
5191
+ "clip-path": "url(#clip0_296_1941)"
5192
+ }, /*#__PURE__*/React__default.createElement("path", {
5193
+ fillRule: "evenodd",
5194
+ clipRule: "evenodd",
5195
+ d: "M18.6457 15.7973L21.83 17.389C22.0587 17.5032 22.3128 17.557 22.5681 17.5454C22.8234 17.5338 23.0716 17.4571 23.289 17.3227C23.5064 17.1883 23.6858 17.0005 23.8102 16.7772C23.9347 16.554 24 16.3026 24 16.047V7.97458C24.0002 7.71877 23.9349 7.46716 23.8104 7.2437C23.6859 7.02024 23.5062 6.83237 23.2886 6.69797C23.0709 6.56356 22.8225 6.4871 22.5669 6.47584C22.3116 6.4646 22.0576 6.51883 21.8292 6.63337L18.4147 8.34013C18.0442 8.52532 17.8939 8.97581 18.0791 9.34632C18.2643 9.71682 18.7148 9.86704 19.0853 9.68185L22.5 7.97501V16.047L19.0853 14.3401C18.7148 14.1549 18.2643 14.3051 18.0791 14.6757C17.9925 14.8489 17.9793 15.0396 18.0276 15.2126C18.2566 15.4324 18.4637 15.6285 18.6457 15.7973ZM15.6449 18.1449L14.576 17.0759C14.1674 17.6423 13.5017 18.011 12.75 18.011H3.75C2.50736 18.011 1.5 17.0036 1.5 15.761V8.26099C1.5 7.09518 2.38663 6.13646 3.52237 6.02236L2.30114 4.80113C0.949459 5.36783 0 6.70353 0 8.26099V15.761C0 17.8321 1.67893 19.511 3.75 19.511H12.75C13.9157 19.511 14.9571 18.9791 15.6449 18.1449ZM7.45841 4.51099H12.75C14.8211 4.51099 16.5 6.18992 16.5 8.26099V13.7177C16.0334 13.255 15.5293 12.751 15 12.2188V8.26099C15 7.01835 13.9926 6.01099 12.75 6.01099H8.91209C8.4083 5.49214 7.92057 4.98881 7.45841 4.51099ZM22.5 7.97501L22.5002 7.97399L22.5014 7.97429L22.5 7.97501Z",
5196
+ fill: fill
5197
+ }), /*#__PURE__*/React__default.createElement("path", {
5198
+ d: "M2 2L22 22Z",
5199
+ fill: fill
5200
+ }), /*#__PURE__*/React__default.createElement("path", {
5201
+ d: "M2 2L22 22",
5202
+ stroke: fill,
5203
+ strokeWidth: "1.5",
5204
+ strokeLinecap: "round",
5205
+ strokeLinejoin: "round"
5206
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
5207
+ id: "clip0_296_1941"
5208
+ }, /*#__PURE__*/React__default.createElement("rect", {
5209
+ width: "24",
5210
+ height: "24",
5211
+ fill: fill
5212
+ })))));
5213
+ }
5214
+
5215
+ function NoMicrophoneIcon({
5216
+ stroke,
5217
+ strokeWidth,
5218
+ fill,
5219
+ ...rest
5220
+ }) {
5221
+ return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
5222
+ strokeWidth: strokeWidth ?? 0.1,
5223
+ stroke: stroke ? stroke : 'currentColor'
5224
+ }, rest), /*#__PURE__*/React__default.createElement("svg", {
5225
+ xmlns: "http://www.w3.org/2000/svg",
5226
+ width: "24",
5227
+ height: "24",
5228
+ viewBox: "0 0 24 24",
5229
+ fill: "none"
5230
+ }, /*#__PURE__*/React__default.createElement("g", {
5231
+ "clip-path": "url(#clip0_296_1932)"
5232
+ }, /*#__PURE__*/React__default.createElement("path", {
5233
+ fillRule: "evenodd",
5234
+ clipRule: "evenodd",
5235
+ d: "M6.61787 5.07627C6.63779 4.4461 6.77477 3.82379 7.02254 3.24001C7.29229 2.60201 7.68921 2.02301 8.18973 1.53501C8.69025 1.04701 9.2841 0.660006 9.93847 0.397006C10.5918 0.133006 11.2923 -0.000994444 12 5.55581e-06C12.7077 -0.000994444 13.4083 0.133006 14.0616 0.397006C14.716 0.660006 15.3098 1.04701 15.8103 1.53501C16.3109 2.02301 16.7078 2.60201 16.9775 3.24001C17.2483 3.87801 17.3868 4.56201 17.3847 5.25001V11.22C17.4728 12.5559 17.1208 13.8793 16.3893 15.0002L17.5399 16.1688C17.8996 15.7251 18.1968 15.2352 18.4227 14.712C18.7499 13.954 18.9191 13.14 18.9232 12.318V9.75001C18.9232 9.33601 19.2678 9.00001 19.6924 9.00001C20.1171 9.00001 20.4617 9.33601 20.4617 9.75001V12.32V12.323C20.4576 13.343 20.2463 14.352 19.8412 15.293C19.5342 16.0053 19.12 16.6682 18.6134 17.2591L21.7858 20.481C22.0802 20.779 22.0699 21.254 21.7632 21.541C21.4576 21.828 20.9704 21.818 20.676 21.519L6.86937 7.49678C6.842 7.47269 6.81642 7.44671 6.79284 7.41905L2.21427 2.769C1.91991 2.471 1.93017 1.996 2.23684 1.709C2.54248 1.422 3.02967 1.432 3.32403 1.731L6.61787 5.07627ZM15.282 13.8757C15.7109 13.0909 15.9102 12.1994 15.8483 11.301C15.8473 11.284 15.8462 11.267 15.8462 11.25V5.25001V5.24801C15.8473 4.75601 15.7488 4.26801 15.556 3.81301C15.3632 3.35701 15.0801 2.94401 14.7231 2.59501C14.3652 2.24701 13.9416 1.97101 13.4739 1.78301C13.0072 1.59501 12.5067 1.49901 12.0021 1.50001H11.998C11.4934 1.49901 10.9928 1.59501 10.5262 1.78301C10.0585 1.97101 9.63488 2.24701 9.27693 2.59501C8.92 2.94401 8.63692 3.35701 8.44409 3.81301C8.25127 4.26801 8.15281 4.75601 8.15384 5.24801V5.25001V6.63622L15.282 13.8757ZM14.9006 18.153C15.2893 17.987 15.7437 18.159 15.9149 18.538C16.0852 18.917 15.9088 19.36 15.5201 19.527C14.6463 19.9012 13.7169 20.134 12.7693 20.2164V23.25C12.7693 23.664 12.4246 24 12 24C11.5754 24 11.2308 23.664 11.2308 23.25V20.2287C9.31627 20.0887 7.50103 19.3054 6.10252 18C4.51378 16.517 3.59172 14.482 3.53839 12.338V12.32V9.75001C3.53839 9.33601 3.88301 9.00001 4.30763 9.00001C4.73225 9.00001 5.07687 9.33601 5.07687 9.75001V12.316C5.12405 14.058 5.87483 15.711 7.16612 16.916C8.4605 18.125 10.1928 18.784 11.9857 18.75H11.999C12.998 18.749 13.9857 18.546 14.9006 18.153ZM13.3385 16.387C13.2924 15.976 12.9118 15.679 12.4893 15.725C12.2113 15.755 10.7026 15.849 9.54154 14.915C8.74563 14.275 8.15383 13.152 8.15383 11.25C8.15383 10.836 7.80921 10.5 7.38459 10.5C6.95997 10.5 6.61535 10.836 6.61535 11.25C6.61535 13.773 7.50664 15.223 8.56204 16.072C10.1774 17.372 12.2729 17.257 12.6595 17.215C13.0811 17.17 13.3857 16.799 13.3385 16.387Z",
5236
+ fill: fill
5237
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
5238
+ id: "clip0_296_1932"
5239
+ }, /*#__PURE__*/React__default.createElement("rect", {
5240
+ width: "24",
5241
+ height: "24",
5242
+ fill: fill
5243
+ })))));
5244
+ }
5245
+
5175
5246
  function PauseIcon({
5176
5247
  stroke,
5177
5248
  strokeWidth,
@@ -7618,6 +7689,7 @@ styleInject(css_248z$5);
7618
7689
  const Button = ({
7619
7690
  variant = 'primary',
7620
7691
  size = 'base',
7692
+ customBackground,
7621
7693
  iconLeft,
7622
7694
  iconRight,
7623
7695
  text,
@@ -7633,6 +7705,10 @@ const Button = ({
7633
7705
  };
7634
7706
  return /*#__PURE__*/React__default.createElement("button", Object.assign({
7635
7707
  className: `${styles$5.button} ${getStylesByVariant()} ${getStylesBySize()} ${className ?? ''}`,
7708
+ style: {
7709
+ background: customBackground,
7710
+ border: customBackground ? 'none' : ''
7711
+ },
7636
7712
  disabled: disabled
7637
7713
  }, props), iconLeft && iconLeft, /*#__PURE__*/React__default.createElement(TextForButton, {
7638
7714
  text: text,
@@ -8083,14 +8159,14 @@ const ControlsBar = ({
8083
8159
  return /*#__PURE__*/React__default.createElement("div", Object.assign({
8084
8160
  className: `${styles$a.control_bar} ${className ?? ''}`
8085
8161
  }, props), enableMicrophone && /*#__PURE__*/React__default.createElement(CircledIconButton, {
8086
- icon: isMicrophoneActive ? /*#__PURE__*/React__default.createElement(MicrophoneIcon, null) : /*#__PURE__*/React__default.createElement(MicrophoneIcon, null),
8162
+ icon: isMicrophoneActive ? /*#__PURE__*/React__default.createElement(MicrophoneIcon, null) : /*#__PURE__*/React__default.createElement(NoMicrophoneIcon, null),
8087
8163
  onClick: () => {
8088
8164
  if (isMicrophoneActive) enableMicrophone();else {
8089
8165
  if (muteMicrophone) muteMicrophone();
8090
8166
  }
8091
8167
  }
8092
8168
  }), enableCamera && /*#__PURE__*/React__default.createElement(CircledIconButton, {
8093
- icon: isCameraActive ? /*#__PURE__*/React__default.createElement(MeetingIcon, null) : /*#__PURE__*/React__default.createElement(MeetingIcon, null),
8169
+ icon: isCameraActive ? /*#__PURE__*/React__default.createElement(MeetingIcon, null) : /*#__PURE__*/React__default.createElement(NoCameraIcon, null),
8094
8170
  onClick: () => {
8095
8171
  if (isCameraActive) enableCamera();else {
8096
8172
  if (muteCamera) muteCamera();
@@ -8153,7 +8229,7 @@ const ControlsBar = ({
8153
8229
  }));
8154
8230
  };
8155
8231
 
8156
- var css_248z$b = ".Chat-modules_chatContainer__xzg50{align-items:flex-start;background:#fff;border-radius:.5rem;display:flex;flex-direction:column;gap:.5rem;height:100%;min-width:25rem;padding:1rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP{display:flex;flex-direction:column;gap:1rem;max-width:100%;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh{display:flex;flex-direction:column;gap:1rem;max-height:70%;overflow-x:hidden;overflow-y:scroll}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_message_container__-ocjf{animation:Chat-modules_floatup__aU0gp .5s forwards;display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end;margin:2rem 0;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_message_container__-ocjf .Chat-modules_message__6y4CT p{margin-left:auto}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M{align-items:flex-end;background:#fafafa;border:1px solid #d5d5d6;border-radius:0 .5rem .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;margin-left:auto;max-width:100%;padding:1rem;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M .Chat-modules_blue__JjGi-{color:#004799}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS{align-items:flex-end;background:var(--color-primary-100,#e5f1ff);border:1px solid var(--color-primary-200,#99c9ff);border-radius:.5rem 0 .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;margin-left:auto;max-width:100%;padding:1rem;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS .Chat-modules_blue__JjGi-{color:#004799}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message_username_left__nX27N{display:flex;margin-left:auto;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message_username__CpwdY{display:flex;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_indicator__p0Ehc{align-items:center;background:var(--color-gradients-003,linear-gradient(135deg,#07f 0,#9024f6 100%));border-radius:.5rem .5rem .5rem 0;display:flex;height:2.75rem;justify-content:center;padding:.625rem .5625rem;width:2.75rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_indicator__p0Ehc p{padding:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_container_chatbot__s2mU6{animation:Chat-modules_floatup__aU0gp .5s forwards;display:flex;flex-direction:row;gap:.5rem;margin:auto 0 .5rem;width:100%}@keyframes Chat-modules_floatup__aU0gp{0%{opacity:0;transform:translateY(.875rem)}to{opacity:1;transform:translateY(0)}}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_bot_indicator__5-WNz{align-items:center;background:var(--color-gradients-003,linear-gradient(135deg,#07f 0,#9024f6 100%));border-radius:.5rem .5rem 0 .5rem;display:flex;height:2.75rem;justify-content:center;padding:.625rem .5625rem;width:2.75rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_bot_indicator__5-WNz p{padding:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_chatbot__X-4XW{display:flex;flex-direction:column;gap:.25rem;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_chatbot__X-4XW .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_text_message__suuTz{align-items:flex-start;background:var(--color-neutral-basics-white,#fff);border:1px solid var(--color-neutral-clear-shades-200,#e1e1e2);border-radius:0 .5rem .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;max-width:100%;padding:1rem;position:relative;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_no_scrollbar__Ia2bX{-ms-overflow-style:none;scrollbar-width:none}.Chat-modules_no_scrollbar__Ia2bX::-webkit-scrollbar{display:none}";
8232
+ var css_248z$b = ".Chat-modules_chatContainer__xzg50{align-items:flex-start;background:#fff;border-radius:.5rem;display:flex;flex-direction:column;gap:.5rem;height:100%;min-width:25rem;padding:1rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP{display:flex;flex-direction:column;gap:1rem;max-width:100%;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh{display:flex;flex-direction:column;gap:1rem;max-height:70%;overflow-x:hidden;overflow-y:scroll}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_message_container__-ocjf{animation:Chat-modules_floatup__aU0gp .5s forwards;display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end;margin:2rem 0;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_message_container__-ocjf .Chat-modules_message__6y4CT p{margin-left:auto}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M{align-items:flex-end;background:#fafafa;border:1px solid #d5d5d6;border-radius:0 .5rem .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;max-width:100%;padding:1rem;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_not_user_text_message__0Kz7M .Chat-modules_blue__JjGi-{color:#004799}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS{align-items:flex-end;background:var(--color-primary-100,#e5f1ff);border:1px solid var(--color-primary-200,#99c9ff);border-radius:.5rem 0 .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;margin-left:auto;max-width:100%;padding:1rem;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message__T2wQS .Chat-modules_blue__JjGi-{color:#004799}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message_username_left__nX27N{display:flex;margin-left:auto;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_text_message_username__CpwdY{display:flex;width:-moz-fit-content;width:fit-content}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_indicator__p0Ehc{align-items:center;background:var(--color-gradients-003,linear-gradient(135deg,#07f 0,#9024f6 100%));border-radius:.5rem .5rem .5rem 0;display:flex;height:2.75rem;justify-content:center;padding:.625rem .5625rem;width:2.75rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_user_indicator__p0Ehc p{padding:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_container_chatbot__s2mU6{animation:Chat-modules_floatup__aU0gp .5s forwards;display:flex;flex-direction:row;gap:.5rem;margin:auto 0 .5rem;width:100%}@keyframes Chat-modules_floatup__aU0gp{0%{opacity:0;transform:translateY(.875rem)}to{opacity:1;transform:translateY(0)}}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_bot_indicator__5-WNz{align-items:center;background:var(--color-gradients-003,linear-gradient(135deg,#07f 0,#9024f6 100%));border-radius:.5rem .5rem 0 .5rem;display:flex;height:2.75rem;justify-content:center;padding:.625rem .5625rem;width:2.75rem}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_bot_indicator__5-WNz p{padding:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_chatbot__X-4XW{display:flex;flex-direction:column;gap:.25rem;width:100%}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_message_chatbot__X-4XW .Chat-modules_user_text__Mi5Mo{color:var(--Color-Neutral-Dark-Shades-950,#26292e);font-family:OpenSans;font-size:.875rem;font-style:normal;font-weight:400;line-height:1.225rem;margin:0}.Chat-modules_chatContainer__xzg50 .Chat-modules_scrolling_content__urvdP .Chat-modules_tasks_container__Mg9Oh .Chat-modules_text_message__suuTz{align-items:flex-start;background:var(--color-neutral-basics-white,#fff);border:1px solid var(--color-neutral-clear-shades-200,#e1e1e2);border-radius:0 .5rem .5rem .5rem;display:flex;flex-direction:column;gap:.5rem;max-width:100%;padding:1rem;position:relative;white-space:break-spaces;width:-moz-fit-content;width:fit-content}.Chat-modules_no_scrollbar__Ia2bX{-ms-overflow-style:none;scrollbar-width:none}.Chat-modules_no_scrollbar__Ia2bX::-webkit-scrollbar{display:none}";
8157
8233
  var styles$b = {"chatContainer":"Chat-modules_chatContainer__xzg50","scrolling_content":"Chat-modules_scrolling_content__urvdP","tasks_container":"Chat-modules_tasks_container__Mg9Oh","message_chatbot":"Chat-modules_message_chatbot__X-4XW","user_message_container":"Chat-modules_user_message_container__-ocjf","floatup":"Chat-modules_floatup__aU0gp","message":"Chat-modules_message__6y4CT","not_user_text_message":"Chat-modules_not_user_text_message__0Kz7M","user_text":"Chat-modules_user_text__Mi5Mo","blue":"Chat-modules_blue__JjGi-","user_text_message":"Chat-modules_user_text_message__T2wQS","user_text_message_username_left":"Chat-modules_user_text_message_username_left__nX27N","user_text_message_username":"Chat-modules_user_text_message_username__CpwdY","user_indicator":"Chat-modules_user_indicator__p0Ehc","message_container_chatbot":"Chat-modules_message_container_chatbot__s2mU6","bot_indicator":"Chat-modules_bot_indicator__5-WNz","text_message":"Chat-modules_text_message__suuTz","no_scrollbar":"Chat-modules_no_scrollbar__Ia2bX"};
8158
8234
  styleInject(css_248z$b);
8159
8235
 
@@ -9354,8 +9430,8 @@ const TextWithLink = ({
9354
9430
  }, textLink));
9355
9431
  };
9356
9432
 
9357
- var css_248z$q = ".Banner-modules_notification_banner__JKUGY{align-items:flex-start;display:flex;flex-direction:column;gap:1rem;max-width:87.5rem;padding:1.5rem}.Banner-modules_notification_banner__JKUGY h2,.Banner-modules_notification_banner__JKUGY p{white-space:break-spaces}.Banner-modules_notification_banner_header__L3uAa{align-items:center;display:flex;gap:.5rem}.Banner-modules_notification_banner_error__ThRKH{background:var(--color-extended-red-100,#fddbdb);border:1px solid var(--color-extended-red-500,#f54c4c);border-radius:.5rem}.Banner-modules_notification_banner_warning__cbz4c{background:var(--color-extended-yellow-100,#fff3d6);border:1px solid var(--color-extended-yellow-500,#ffb800);border-radius:.5rem}.Banner-modules_notification_banner_info__-ByX7{background:var(--color-primary-100,#e5f1ff);border:1px solid var(--color-primary-500,#07f);border-radius:.5rem}.Banner-modules_notification_banner_success__QCOL-{background:var(--color-extended-green-100,#e8f5ea);border:1px solid var(--color-extended-green-500,#5cbb65);border-radius:.5rem}";
9358
- var styles$q = {"notification_banner":"Banner-modules_notification_banner__JKUGY","notification_banner_header":"Banner-modules_notification_banner_header__L3uAa","notification_banner_error":"Banner-modules_notification_banner_error__ThRKH","notification_banner_warning":"Banner-modules_notification_banner_warning__cbz4c","notification_banner_info":"Banner-modules_notification_banner_info__-ByX7","notification_banner_success":"Banner-modules_notification_banner_success__QCOL-"};
9433
+ var css_248z$q = ".Banner-modules_notification_banner__JKUGY{align-items:flex-start;display:flex;flex-direction:column;gap:1rem;max-width:87.5rem;padding:1.5rem}.Banner-modules_notification_banner__JKUGY h2,.Banner-modules_notification_banner__JKUGY p{white-space:break-spaces}.Banner-modules_notification_banner_header__L3uAa{align-items:center;display:flex;gap:.5rem;width:100%}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_btn_custom__s-jml{margin-left:auto}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_error__qw-kh:hover{background:#fbb7b7;border:1px solid #fbb7b7}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_error__qw-kh svg{stroke:#98312e!important;fill:#98312e!important}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_warning__-sNU6:hover{background:#ffe299;border:1px solid #ffe299}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_warning__-sNU6 svg{stroke:#9e7200!important;fill:#9e7200!important}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_success__nt032:hover{background:#d5edd8;border:1px solid #d5edd8}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_success__nt032 svg{stroke:#3c743d!important;fill:#3c743d!important}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_info__cGQHW:hover{background:#99c9ff;border:1px solid #99c9ff}.Banner-modules_notification_banner_header__L3uAa .Banner-modules_icon_button_info__cGQHW svg{stroke:#004799!important;fill:#004799!important}.Banner-modules_notification_banner_error__ThRKH{background:var(--color-extended-red-100,#fddbdb);border:1px solid var(--color-extended-red-500,#f54c4c);border-radius:.5rem}.Banner-modules_notification_banner_warning__cbz4c{background:var(--color-extended-yellow-100,#fff3d6);border:1px solid var(--color-extended-yellow-500,#ffb800);border-radius:.5rem}.Banner-modules_notification_banner_info__-ByX7{background:var(--color-primary-100,#e5f1ff);border:1px solid var(--color-primary-500,#07f);border-radius:.5rem}.Banner-modules_notification_banner_success__QCOL-{background:var(--color-extended-green-100,#e8f5ea);border:1px solid var(--color-extended-green-500,#5cbb65);border-radius:.5rem}";
9434
+ var styles$q = {"notification_banner":"Banner-modules_notification_banner__JKUGY","notification_banner_header":"Banner-modules_notification_banner_header__L3uAa","icon_btn_custom":"Banner-modules_icon_btn_custom__s-jml","icon_button_error":"Banner-modules_icon_button_error__qw-kh","icon_button_warning":"Banner-modules_icon_button_warning__-sNU6","icon_button_success":"Banner-modules_icon_button_success__nt032","icon_button_info":"Banner-modules_icon_button_info__cGQHW","notification_banner_error":"Banner-modules_notification_banner_error__ThRKH","notification_banner_warning":"Banner-modules_notification_banner_warning__cbz4c","notification_banner_info":"Banner-modules_notification_banner_info__-ByX7","notification_banner_success":"Banner-modules_notification_banner_success__QCOL-"};
9359
9435
  styleInject(css_248z$q);
9360
9436
 
9361
9437
  /**
@@ -9368,6 +9444,7 @@ const Banner = ({
9368
9444
  link,
9369
9445
  className,
9370
9446
  type,
9447
+ onClose,
9371
9448
  ...props
9372
9449
  }) => {
9373
9450
  const getBannerIcon = () => {
@@ -9415,6 +9492,17 @@ const Banner = ({
9415
9492
  return styles$q.notification_banner_info;
9416
9493
  }
9417
9494
  };
9495
+ const getIconButtonColor = () => {
9496
+ if (type === 'error') {
9497
+ return styles$q.icon_button_error;
9498
+ } else if (type === 'warning') {
9499
+ return styles$q.icon_button_warning;
9500
+ } else if (type === 'success') {
9501
+ return styles$q.icon_button_success;
9502
+ } else {
9503
+ return styles$q.icon_button_info;
9504
+ }
9505
+ };
9418
9506
  return /*#__PURE__*/React__default.createElement("div", Object.assign({}, props, {
9419
9507
  className: `${styles$q.notification_banner} ${getBannerColor()} ${className}`
9420
9508
  }), /*#__PURE__*/React__default.createElement("div", {
@@ -9424,6 +9512,14 @@ const Banner = ({
9424
9512
  weight: "semi-bold",
9425
9513
  size: "base",
9426
9514
  color: getTextColor()
9515
+ }), /*#__PURE__*/React__default.createElement(IconButton, {
9516
+ icon: /*#__PURE__*/React__default.createElement(RemoveCircledIcon, null),
9517
+ onClick: () => {
9518
+ if (onClose) onClose();
9519
+ },
9520
+ size: "xs",
9521
+ variant: "tertiary",
9522
+ className: `${styles$q.icon_btn_custom} ${getIconButtonColor()}`
9427
9523
  })), content && textLink && link && /*#__PURE__*/React__default.createElement(TextWithLink, {
9428
9524
  text: content,
9429
9525
  weight: "regular",
@@ -11307,6 +11403,8 @@ exports.MuteIcon = MuteIcon;
11307
11403
  exports.NavigationCircledIcon = NavigationCircledIcon;
11308
11404
  exports.NbOfUsersIcon = NbOfUsersIcon;
11309
11405
  exports.NeutralBackgroudIcon = NeutralBackgroudIcon;
11406
+ exports.NoCameraIcon = NoCameraIcon;
11407
+ exports.NoMicrophoneIcon = NoMicrophoneIcon;
11310
11408
  exports.NotifAlertIcon = NotifAlertIcon;
11311
11409
  exports.NotificationIcon = NotificationIcon;
11312
11410
  exports.NumbersCode = NumbersCode;