odaptos_design_system 2.0.342 → 2.0.343
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +118 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +298 -280
- package/dist/index.d.ts +298 -280
- package/dist/index.js +118 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -528,6 +528,8 @@ interface TextProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
|
528
528
|
className?: string;
|
|
529
529
|
required?: boolean;
|
|
530
530
|
id?: string;
|
|
531
|
+
/** When true, renders a small subset of inline markdown from `text` (bold/italic/inline code/line breaks). */
|
|
532
|
+
isMarkdown?: boolean;
|
|
531
533
|
}
|
|
532
534
|
/** This text should be use to display basic text
|
|
533
535
|
* Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-751&mode=dev
|
|
@@ -542,6 +544,7 @@ declare const Text: ({
|
|
|
542
544
|
className,
|
|
543
545
|
required,
|
|
544
546
|
id,
|
|
547
|
+
isMarkdown,
|
|
545
548
|
...props
|
|
546
549
|
}: TextProps) => JSX.Element;
|
|
547
550
|
//#endregion
|
|
@@ -630,6 +633,8 @@ interface TitleProps extends HTMLAttributes<HTMLParagraphElement> {
|
|
|
630
633
|
type?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
631
634
|
className?: string;
|
|
632
635
|
required?: boolean;
|
|
636
|
+
/** When true, renders a small subset of inline markdown from `text` (bold/italic/inline code/line breaks). */
|
|
637
|
+
isMarkdown?: boolean;
|
|
633
638
|
}
|
|
634
639
|
/** This text should only be used to display titles
|
|
635
640
|
* Figma link: https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=52-357&mode=dev
|
|
@@ -644,6 +649,7 @@ declare const Title: ({
|
|
|
644
649
|
className,
|
|
645
650
|
type,
|
|
646
651
|
required,
|
|
652
|
+
isMarkdown,
|
|
647
653
|
...props
|
|
648
654
|
}: TitleProps) => JSX.Element;
|
|
649
655
|
//#endregion
|
|
@@ -655,7 +661,7 @@ declare const colors: ColorPalette;
|
|
|
655
661
|
declare const getColor: (colorName: string, shade: string) => string | undefined;
|
|
656
662
|
//#endregion
|
|
657
663
|
//#region src/DesignTokens/Icons/Arrows/ArrowDoubleLineDownIcon.d.ts
|
|
658
|
-
interface CustomSvgProps$
|
|
664
|
+
interface CustomSvgProps$185 {
|
|
659
665
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
660
666
|
}
|
|
661
667
|
declare function ArrowDoubleLineDownIcon({
|
|
@@ -664,10 +670,10 @@ declare function ArrowDoubleLineDownIcon({
|
|
|
664
670
|
fill,
|
|
665
671
|
size,
|
|
666
672
|
...rest
|
|
667
|
-
}: SvgIconProps & CustomSvgProps$
|
|
673
|
+
}: SvgIconProps & CustomSvgProps$185): JSX.Element;
|
|
668
674
|
//#endregion
|
|
669
675
|
//#region src/DesignTokens/Icons/Arrows/ArrowDoubleLineLeftIcon.d.ts
|
|
670
|
-
interface CustomSvgProps$
|
|
676
|
+
interface CustomSvgProps$184 {
|
|
671
677
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
672
678
|
}
|
|
673
679
|
declare function ArrowDoubleLineLeftIcon({
|
|
@@ -676,10 +682,10 @@ declare function ArrowDoubleLineLeftIcon({
|
|
|
676
682
|
fill,
|
|
677
683
|
size,
|
|
678
684
|
...rest
|
|
679
|
-
}: SvgIconProps & CustomSvgProps$
|
|
685
|
+
}: SvgIconProps & CustomSvgProps$184): JSX.Element;
|
|
680
686
|
//#endregion
|
|
681
687
|
//#region src/DesignTokens/Icons/Arrows/ArrowDoubleLineRightIcon.d.ts
|
|
682
|
-
interface CustomSvgProps$
|
|
688
|
+
interface CustomSvgProps$183 {
|
|
683
689
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
684
690
|
}
|
|
685
691
|
declare function ArrowDoubleLineRightIcon({
|
|
@@ -688,10 +694,10 @@ declare function ArrowDoubleLineRightIcon({
|
|
|
688
694
|
fill,
|
|
689
695
|
size,
|
|
690
696
|
...rest
|
|
691
|
-
}: SvgIconProps & CustomSvgProps$
|
|
697
|
+
}: SvgIconProps & CustomSvgProps$183): JSX.Element;
|
|
692
698
|
//#endregion
|
|
693
699
|
//#region src/DesignTokens/Icons/Arrows/ArrowDoubleLineUpIcon.d.ts
|
|
694
|
-
interface CustomSvgProps$
|
|
700
|
+
interface CustomSvgProps$182 {
|
|
695
701
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
696
702
|
}
|
|
697
703
|
declare function ArrowDoubleLineUpIcon({
|
|
@@ -700,10 +706,10 @@ declare function ArrowDoubleLineUpIcon({
|
|
|
700
706
|
fill,
|
|
701
707
|
size,
|
|
702
708
|
...rest
|
|
703
|
-
}: SvgIconProps & CustomSvgProps$
|
|
709
|
+
}: SvgIconProps & CustomSvgProps$182): JSX.Element;
|
|
704
710
|
//#endregion
|
|
705
711
|
//#region src/DesignTokens/Icons/Arrows/ArrowFilledDownIcon.d.ts
|
|
706
|
-
interface CustomSvgProps$
|
|
712
|
+
interface CustomSvgProps$181 {
|
|
707
713
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
708
714
|
}
|
|
709
715
|
declare function ArrowFilledDownIcon({
|
|
@@ -712,10 +718,10 @@ declare function ArrowFilledDownIcon({
|
|
|
712
718
|
fill,
|
|
713
719
|
size,
|
|
714
720
|
...rest
|
|
715
|
-
}: SvgIconProps & CustomSvgProps$
|
|
721
|
+
}: SvgIconProps & CustomSvgProps$181): JSX.Element;
|
|
716
722
|
//#endregion
|
|
717
723
|
//#region src/DesignTokens/Icons/Arrows/ArrowFilledLeftIcon.d.ts
|
|
718
|
-
interface CustomSvgProps$
|
|
724
|
+
interface CustomSvgProps$180 {
|
|
719
725
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
720
726
|
}
|
|
721
727
|
declare function ArrowFilledLeftIcon({
|
|
@@ -724,10 +730,10 @@ declare function ArrowFilledLeftIcon({
|
|
|
724
730
|
fill,
|
|
725
731
|
size,
|
|
726
732
|
...rest
|
|
727
|
-
}: SvgIconProps & CustomSvgProps$
|
|
733
|
+
}: SvgIconProps & CustomSvgProps$180): JSX.Element;
|
|
728
734
|
//#endregion
|
|
729
735
|
//#region src/DesignTokens/Icons/Arrows/ArrowFilledRightIcon.d.ts
|
|
730
|
-
interface CustomSvgProps$
|
|
736
|
+
interface CustomSvgProps$179 {
|
|
731
737
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
732
738
|
}
|
|
733
739
|
declare function ArrowFilledRightIcon({
|
|
@@ -736,10 +742,10 @@ declare function ArrowFilledRightIcon({
|
|
|
736
742
|
fill,
|
|
737
743
|
size,
|
|
738
744
|
...rest
|
|
739
|
-
}: SvgIconProps & CustomSvgProps$
|
|
745
|
+
}: SvgIconProps & CustomSvgProps$179): JSX.Element;
|
|
740
746
|
//#endregion
|
|
741
747
|
//#region src/DesignTokens/Icons/Arrows/ArrowFilledUpIcon.d.ts
|
|
742
|
-
interface CustomSvgProps$
|
|
748
|
+
interface CustomSvgProps$178 {
|
|
743
749
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
744
750
|
}
|
|
745
751
|
declare function ArrowFilledUpIcon({
|
|
@@ -748,10 +754,10 @@ declare function ArrowFilledUpIcon({
|
|
|
748
754
|
fill,
|
|
749
755
|
size,
|
|
750
756
|
...rest
|
|
751
|
-
}: SvgIconProps & CustomSvgProps$
|
|
757
|
+
}: SvgIconProps & CustomSvgProps$178): JSX.Element;
|
|
752
758
|
//#endregion
|
|
753
759
|
//#region src/DesignTokens/Icons/Arrows/ArrowLineDownIcon.d.ts
|
|
754
|
-
interface CustomSvgProps$
|
|
760
|
+
interface CustomSvgProps$177 {
|
|
755
761
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
756
762
|
}
|
|
757
763
|
declare function ArrowLineDowIcon({
|
|
@@ -760,10 +766,10 @@ declare function ArrowLineDowIcon({
|
|
|
760
766
|
fill,
|
|
761
767
|
size,
|
|
762
768
|
...rest
|
|
763
|
-
}: SvgIconProps & CustomSvgProps$
|
|
769
|
+
}: SvgIconProps & CustomSvgProps$177): JSX.Element;
|
|
764
770
|
//#endregion
|
|
765
771
|
//#region src/DesignTokens/Icons/Arrows/ArrowLineLeftIcon.d.ts
|
|
766
|
-
interface CustomSvgProps$
|
|
772
|
+
interface CustomSvgProps$176 {
|
|
767
773
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
768
774
|
}
|
|
769
775
|
declare function ArrowLineLeftIcon({
|
|
@@ -772,10 +778,10 @@ declare function ArrowLineLeftIcon({
|
|
|
772
778
|
fill,
|
|
773
779
|
size,
|
|
774
780
|
...rest
|
|
775
|
-
}: SvgIconProps & CustomSvgProps$
|
|
781
|
+
}: SvgIconProps & CustomSvgProps$176): JSX.Element;
|
|
776
782
|
//#endregion
|
|
777
783
|
//#region src/DesignTokens/Icons/Arrows/ArrowLineRightIcon.d.ts
|
|
778
|
-
interface CustomSvgProps$
|
|
784
|
+
interface CustomSvgProps$175 {
|
|
779
785
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
780
786
|
}
|
|
781
787
|
declare function ArrowLineRightIcon({
|
|
@@ -784,10 +790,10 @@ declare function ArrowLineRightIcon({
|
|
|
784
790
|
fill,
|
|
785
791
|
size,
|
|
786
792
|
...rest
|
|
787
|
-
}: SvgIconProps & CustomSvgProps$
|
|
793
|
+
}: SvgIconProps & CustomSvgProps$175): JSX.Element;
|
|
788
794
|
//#endregion
|
|
789
795
|
//#region src/DesignTokens/Icons/Arrows/ArrowLineUpIcon.d.ts
|
|
790
|
-
interface CustomSvgProps$
|
|
796
|
+
interface CustomSvgProps$174 {
|
|
791
797
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
792
798
|
}
|
|
793
799
|
declare function ArrowLineUpIcon({
|
|
@@ -796,10 +802,10 @@ declare function ArrowLineUpIcon({
|
|
|
796
802
|
fill,
|
|
797
803
|
size,
|
|
798
804
|
...rest
|
|
799
|
-
}: SvgIconProps & CustomSvgProps$
|
|
805
|
+
}: SvgIconProps & CustomSvgProps$174): JSX.Element;
|
|
800
806
|
//#endregion
|
|
801
807
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerDown.d.ts
|
|
802
|
-
interface CustomSvgProps$
|
|
808
|
+
interface CustomSvgProps$173 {
|
|
803
809
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
804
810
|
}
|
|
805
811
|
declare function ArrowPointerDown({
|
|
@@ -808,10 +814,10 @@ declare function ArrowPointerDown({
|
|
|
808
814
|
fill,
|
|
809
815
|
size,
|
|
810
816
|
...rest
|
|
811
|
-
}: SvgIconProps & CustomSvgProps$
|
|
817
|
+
}: SvgIconProps & CustomSvgProps$173): JSX.Element;
|
|
812
818
|
//#endregion
|
|
813
819
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerDownLeft.d.ts
|
|
814
|
-
interface CustomSvgProps$
|
|
820
|
+
interface CustomSvgProps$172 {
|
|
815
821
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
816
822
|
}
|
|
817
823
|
declare function ArrowPointerDownLeft({
|
|
@@ -820,10 +826,10 @@ declare function ArrowPointerDownLeft({
|
|
|
820
826
|
fill,
|
|
821
827
|
size,
|
|
822
828
|
...rest
|
|
823
|
-
}: SvgIconProps & CustomSvgProps$
|
|
829
|
+
}: SvgIconProps & CustomSvgProps$172): JSX.Element;
|
|
824
830
|
//#endregion
|
|
825
831
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerDownRight.d.ts
|
|
826
|
-
interface CustomSvgProps$
|
|
832
|
+
interface CustomSvgProps$171 {
|
|
827
833
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
828
834
|
}
|
|
829
835
|
declare function ArrowPointerDownRight({
|
|
@@ -832,10 +838,10 @@ declare function ArrowPointerDownRight({
|
|
|
832
838
|
fill,
|
|
833
839
|
size,
|
|
834
840
|
...rest
|
|
835
|
-
}: SvgIconProps & CustomSvgProps$
|
|
841
|
+
}: SvgIconProps & CustomSvgProps$171): JSX.Element;
|
|
836
842
|
//#endregion
|
|
837
843
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerLeft.d.ts
|
|
838
|
-
interface CustomSvgProps$
|
|
844
|
+
interface CustomSvgProps$170 {
|
|
839
845
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
840
846
|
}
|
|
841
847
|
declare function ArrowPointerLeft({
|
|
@@ -844,10 +850,10 @@ declare function ArrowPointerLeft({
|
|
|
844
850
|
fill,
|
|
845
851
|
size,
|
|
846
852
|
...rest
|
|
847
|
-
}: SvgIconProps & CustomSvgProps$
|
|
853
|
+
}: SvgIconProps & CustomSvgProps$170): JSX.Element;
|
|
848
854
|
//#endregion
|
|
849
855
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerRight.d.ts
|
|
850
|
-
interface CustomSvgProps$
|
|
856
|
+
interface CustomSvgProps$169 {
|
|
851
857
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
852
858
|
}
|
|
853
859
|
declare function ArrowPointerRight({
|
|
@@ -856,10 +862,10 @@ declare function ArrowPointerRight({
|
|
|
856
862
|
fill,
|
|
857
863
|
size,
|
|
858
864
|
...rest
|
|
859
|
-
}: SvgIconProps & CustomSvgProps$
|
|
865
|
+
}: SvgIconProps & CustomSvgProps$169): JSX.Element;
|
|
860
866
|
//#endregion
|
|
861
867
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerUp.d.ts
|
|
862
|
-
interface CustomSvgProps$
|
|
868
|
+
interface CustomSvgProps$168 {
|
|
863
869
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
864
870
|
}
|
|
865
871
|
declare function ArrowPointerUp({
|
|
@@ -868,10 +874,10 @@ declare function ArrowPointerUp({
|
|
|
868
874
|
fill,
|
|
869
875
|
size,
|
|
870
876
|
...rest
|
|
871
|
-
}: SvgIconProps & CustomSvgProps$
|
|
877
|
+
}: SvgIconProps & CustomSvgProps$168): JSX.Element;
|
|
872
878
|
//#endregion
|
|
873
879
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerUpLeft.d.ts
|
|
874
|
-
interface CustomSvgProps$
|
|
880
|
+
interface CustomSvgProps$167 {
|
|
875
881
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
876
882
|
}
|
|
877
883
|
declare function ArrowPointerUpLeft({
|
|
@@ -880,10 +886,10 @@ declare function ArrowPointerUpLeft({
|
|
|
880
886
|
fill,
|
|
881
887
|
size,
|
|
882
888
|
...rest
|
|
883
|
-
}: SvgIconProps & CustomSvgProps$
|
|
889
|
+
}: SvgIconProps & CustomSvgProps$167): JSX.Element;
|
|
884
890
|
//#endregion
|
|
885
891
|
//#region src/DesignTokens/Icons/Arrows/ArrowPointerUpRight.d.ts
|
|
886
|
-
interface CustomSvgProps$
|
|
892
|
+
interface CustomSvgProps$166 {
|
|
887
893
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
888
894
|
}
|
|
889
895
|
declare function ArrowPointerUpRight({
|
|
@@ -892,10 +898,10 @@ declare function ArrowPointerUpRight({
|
|
|
892
898
|
fill,
|
|
893
899
|
size,
|
|
894
900
|
...rest
|
|
895
|
-
}: SvgIconProps & CustomSvgProps$
|
|
901
|
+
}: SvgIconProps & CustomSvgProps$166): JSX.Element;
|
|
896
902
|
//#endregion
|
|
897
903
|
//#region src/DesignTokens/Icons/Circled/AddCircledIcon.d.ts
|
|
898
|
-
interface CustomSvgProps$
|
|
904
|
+
interface CustomSvgProps$165 {
|
|
899
905
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
900
906
|
}
|
|
901
907
|
declare function AddCircledIcon({
|
|
@@ -904,10 +910,10 @@ declare function AddCircledIcon({
|
|
|
904
910
|
fill,
|
|
905
911
|
size,
|
|
906
912
|
...rest
|
|
907
|
-
}: SvgIconProps & CustomSvgProps$
|
|
913
|
+
}: SvgIconProps & CustomSvgProps$165): JSX.Element;
|
|
908
914
|
//#endregion
|
|
909
915
|
//#region src/DesignTokens/Icons/Circled/AlertCircledIcon.d.ts
|
|
910
|
-
interface CustomSvgProps$
|
|
916
|
+
interface CustomSvgProps$164 {
|
|
911
917
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
912
918
|
}
|
|
913
919
|
declare function AlertCircledIcon({
|
|
@@ -916,10 +922,10 @@ declare function AlertCircledIcon({
|
|
|
916
922
|
fill,
|
|
917
923
|
size,
|
|
918
924
|
...rest
|
|
919
|
-
}: SvgIconProps & CustomSvgProps$
|
|
925
|
+
}: SvgIconProps & CustomSvgProps$164): JSX.Element;
|
|
920
926
|
//#endregion
|
|
921
927
|
//#region src/DesignTokens/Icons/Circled/CheckedCircled.d.ts
|
|
922
|
-
interface CustomSvgProps$
|
|
928
|
+
interface CustomSvgProps$163 {
|
|
923
929
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
924
930
|
}
|
|
925
931
|
declare function CheckedCircled({
|
|
@@ -928,10 +934,10 @@ declare function CheckedCircled({
|
|
|
928
934
|
fill,
|
|
929
935
|
size,
|
|
930
936
|
...rest
|
|
931
|
-
}: SvgIconProps & CustomSvgProps$
|
|
937
|
+
}: SvgIconProps & CustomSvgProps$163): JSX.Element;
|
|
932
938
|
//#endregion
|
|
933
939
|
//#region src/DesignTokens/Icons/Circled/InfoCircledIcon.d.ts
|
|
934
|
-
interface CustomSvgProps$
|
|
940
|
+
interface CustomSvgProps$162 {
|
|
935
941
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
936
942
|
}
|
|
937
943
|
declare function InfoCircledIcon({
|
|
@@ -940,10 +946,10 @@ declare function InfoCircledIcon({
|
|
|
940
946
|
fill,
|
|
941
947
|
size,
|
|
942
948
|
...rest
|
|
943
|
-
}: SvgIconProps & CustomSvgProps$
|
|
949
|
+
}: SvgIconProps & CustomSvgProps$162): JSX.Element;
|
|
944
950
|
//#endregion
|
|
945
951
|
//#region src/DesignTokens/Icons/Circled/MinusCircledIcon.d.ts
|
|
946
|
-
interface CustomSvgProps$
|
|
952
|
+
interface CustomSvgProps$161 {
|
|
947
953
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
948
954
|
}
|
|
949
955
|
declare function MinusCircledIcon({
|
|
@@ -952,10 +958,10 @@ declare function MinusCircledIcon({
|
|
|
952
958
|
fill,
|
|
953
959
|
size,
|
|
954
960
|
...rest
|
|
955
|
-
}: SvgIconProps & CustomSvgProps$
|
|
961
|
+
}: SvgIconProps & CustomSvgProps$161): JSX.Element;
|
|
956
962
|
//#endregion
|
|
957
963
|
//#region src/DesignTokens/Icons/Circled/NavigationCircledIcon.d.ts
|
|
958
|
-
interface CustomSvgProps$
|
|
964
|
+
interface CustomSvgProps$160 {
|
|
959
965
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
960
966
|
}
|
|
961
967
|
declare function NavigationCircledIcon({
|
|
@@ -964,10 +970,10 @@ declare function NavigationCircledIcon({
|
|
|
964
970
|
fill,
|
|
965
971
|
size,
|
|
966
972
|
...rest
|
|
967
|
-
}: SvgIconProps & CustomSvgProps$
|
|
973
|
+
}: SvgIconProps & CustomSvgProps$160): JSX.Element;
|
|
968
974
|
//#endregion
|
|
969
975
|
//#region src/DesignTokens/Icons/Circled/QuestionCircledIcon.d.ts
|
|
970
|
-
interface CustomSvgProps$
|
|
976
|
+
interface CustomSvgProps$159 {
|
|
971
977
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
972
978
|
}
|
|
973
979
|
declare function QuestionCircledIcon({
|
|
@@ -976,10 +982,10 @@ declare function QuestionCircledIcon({
|
|
|
976
982
|
fill,
|
|
977
983
|
size,
|
|
978
984
|
...rest
|
|
979
|
-
}: SvgIconProps & CustomSvgProps$
|
|
985
|
+
}: SvgIconProps & CustomSvgProps$159): JSX.Element;
|
|
980
986
|
//#endregion
|
|
981
987
|
//#region src/DesignTokens/Icons/Circled/RemoveCircledIcon.d.ts
|
|
982
|
-
interface CustomSvgProps$
|
|
988
|
+
interface CustomSvgProps$158 {
|
|
983
989
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
984
990
|
}
|
|
985
991
|
declare function RemoveCircledIcon({
|
|
@@ -988,10 +994,10 @@ declare function RemoveCircledIcon({
|
|
|
988
994
|
fill,
|
|
989
995
|
size,
|
|
990
996
|
...rest
|
|
991
|
-
}: SvgIconProps & CustomSvgProps$
|
|
997
|
+
}: SvgIconProps & CustomSvgProps$158): JSX.Element;
|
|
992
998
|
//#endregion
|
|
993
999
|
//#region src/DesignTokens/Icons/Circled/SearchCircledIcon.d.ts
|
|
994
|
-
interface CustomSvgProps$
|
|
1000
|
+
interface CustomSvgProps$157 {
|
|
995
1001
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
996
1002
|
}
|
|
997
1003
|
declare function SearchCircledIcon({
|
|
@@ -1000,10 +1006,10 @@ declare function SearchCircledIcon({
|
|
|
1000
1006
|
fill,
|
|
1001
1007
|
size,
|
|
1002
1008
|
...rest
|
|
1003
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1009
|
+
}: SvgIconProps & CustomSvgProps$157): JSX.Element;
|
|
1004
1010
|
//#endregion
|
|
1005
1011
|
//#region src/DesignTokens/Icons/Circled/SettingsCircledIcon.d.ts
|
|
1006
|
-
interface CustomSvgProps$
|
|
1012
|
+
interface CustomSvgProps$156 {
|
|
1007
1013
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1008
1014
|
}
|
|
1009
1015
|
declare function SettingsCircledIcon({
|
|
@@ -1012,10 +1018,10 @@ declare function SettingsCircledIcon({
|
|
|
1012
1018
|
fill,
|
|
1013
1019
|
size,
|
|
1014
1020
|
...rest
|
|
1015
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1021
|
+
}: SvgIconProps & CustomSvgProps$156): JSX.Element;
|
|
1016
1022
|
//#endregion
|
|
1017
1023
|
//#region src/DesignTokens/Icons/Equipment/CameraIcon.d.ts
|
|
1018
|
-
interface CustomSvgProps$
|
|
1024
|
+
interface CustomSvgProps$155 {
|
|
1019
1025
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1020
1026
|
}
|
|
1021
1027
|
declare function CameraIcon({
|
|
@@ -1024,10 +1030,10 @@ declare function CameraIcon({
|
|
|
1024
1030
|
fill,
|
|
1025
1031
|
size,
|
|
1026
1032
|
...rest
|
|
1027
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1033
|
+
}: SvgIconProps & CustomSvgProps$155): JSX.Element;
|
|
1028
1034
|
//#endregion
|
|
1029
1035
|
//#region src/DesignTokens/Icons/Equipment/LaptopIcon.d.ts
|
|
1030
|
-
interface CustomSvgProps$
|
|
1036
|
+
interface CustomSvgProps$154 {
|
|
1031
1037
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1032
1038
|
}
|
|
1033
1039
|
declare function LaptopIcon({
|
|
@@ -1036,10 +1042,10 @@ declare function LaptopIcon({
|
|
|
1036
1042
|
fill,
|
|
1037
1043
|
size,
|
|
1038
1044
|
...rest
|
|
1039
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1045
|
+
}: SvgIconProps & CustomSvgProps$154): JSX.Element;
|
|
1040
1046
|
//#endregion
|
|
1041
1047
|
//#region src/DesignTokens/Icons/Equipment/MicrophonePodcastIcon.d.ts
|
|
1042
|
-
interface CustomSvgProps$
|
|
1048
|
+
interface CustomSvgProps$153 {
|
|
1043
1049
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1044
1050
|
}
|
|
1045
1051
|
declare function MicrophonePodcastIcon({
|
|
@@ -1048,10 +1054,10 @@ declare function MicrophonePodcastIcon({
|
|
|
1048
1054
|
fill,
|
|
1049
1055
|
size,
|
|
1050
1056
|
...rest
|
|
1051
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1057
|
+
}: SvgIconProps & CustomSvgProps$153): JSX.Element;
|
|
1052
1058
|
//#endregion
|
|
1053
1059
|
//#region src/DesignTokens/Icons/Equipment/MobileIcon.d.ts
|
|
1054
|
-
interface CustomSvgProps$
|
|
1060
|
+
interface CustomSvgProps$152 {
|
|
1055
1061
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1056
1062
|
}
|
|
1057
1063
|
declare function MobileIcon({
|
|
@@ -1060,10 +1066,10 @@ declare function MobileIcon({
|
|
|
1060
1066
|
fill,
|
|
1061
1067
|
size,
|
|
1062
1068
|
...rest
|
|
1063
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1069
|
+
}: SvgIconProps & CustomSvgProps$152): JSX.Element;
|
|
1064
1070
|
//#endregion
|
|
1065
1071
|
//#region src/DesignTokens/Icons/Equipment/TvFlatScreenIcon.d.ts
|
|
1066
|
-
interface CustomSvgProps$
|
|
1072
|
+
interface CustomSvgProps$151 {
|
|
1067
1073
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1068
1074
|
}
|
|
1069
1075
|
declare function TvFlatScreenIcon({
|
|
@@ -1072,10 +1078,10 @@ declare function TvFlatScreenIcon({
|
|
|
1072
1078
|
fill,
|
|
1073
1079
|
size,
|
|
1074
1080
|
...rest
|
|
1075
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1081
|
+
}: SvgIconProps & CustomSvgProps$151): JSX.Element;
|
|
1076
1082
|
//#endregion
|
|
1077
1083
|
//#region src/DesignTokens/Icons/Equipment/TvIcon.d.ts
|
|
1078
|
-
interface CustomSvgProps$
|
|
1084
|
+
interface CustomSvgProps$150 {
|
|
1079
1085
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1080
1086
|
}
|
|
1081
1087
|
declare function TvIcon({
|
|
@@ -1084,7 +1090,7 @@ declare function TvIcon({
|
|
|
1084
1090
|
fill,
|
|
1085
1091
|
size,
|
|
1086
1092
|
...rest
|
|
1087
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1093
|
+
}: SvgIconProps & CustomSvgProps$150): JSX.Element;
|
|
1088
1094
|
//#endregion
|
|
1089
1095
|
//#region src/DesignTokens/Icons/Illustrations/AI_UserTest.d.ts
|
|
1090
1096
|
declare function AI_UserTest({
|
|
@@ -1314,7 +1320,7 @@ declare function WaitingMen({
|
|
|
1314
1320
|
}: SvgIconProps): JSX.Element;
|
|
1315
1321
|
//#endregion
|
|
1316
1322
|
//#region src/DesignTokens/Icons/Interaction/AccountIcon.d.ts
|
|
1317
|
-
interface CustomSvgProps$
|
|
1323
|
+
interface CustomSvgProps$149 {
|
|
1318
1324
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1319
1325
|
}
|
|
1320
1326
|
declare function AccountIcon({
|
|
@@ -1323,10 +1329,10 @@ declare function AccountIcon({
|
|
|
1323
1329
|
fill,
|
|
1324
1330
|
size,
|
|
1325
1331
|
...rest
|
|
1326
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1332
|
+
}: SvgIconProps & CustomSvgProps$149): JSX.Element;
|
|
1327
1333
|
//#endregion
|
|
1328
1334
|
//#region src/DesignTokens/Icons/Interaction/AccountIconMksite.d.ts
|
|
1329
|
-
interface CustomSvgProps$
|
|
1335
|
+
interface CustomSvgProps$148 {
|
|
1330
1336
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1331
1337
|
}
|
|
1332
1338
|
declare function AccountIconMksite({
|
|
@@ -1335,10 +1341,10 @@ declare function AccountIconMksite({
|
|
|
1335
1341
|
fill,
|
|
1336
1342
|
size,
|
|
1337
1343
|
...rest
|
|
1338
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1344
|
+
}: SvgIconProps & CustomSvgProps$148): JSX.Element;
|
|
1339
1345
|
//#endregion
|
|
1340
1346
|
//#region src/DesignTokens/Icons/Interaction/KeyIcon.d.ts
|
|
1341
|
-
interface CustomSvgProps$
|
|
1347
|
+
interface CustomSvgProps$147 {
|
|
1342
1348
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1343
1349
|
}
|
|
1344
1350
|
declare function KeyIcon({
|
|
@@ -1347,10 +1353,10 @@ declare function KeyIcon({
|
|
|
1347
1353
|
fill,
|
|
1348
1354
|
size,
|
|
1349
1355
|
...rest
|
|
1350
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1356
|
+
}: SvgIconProps & CustomSvgProps$147): JSX.Element;
|
|
1351
1357
|
//#endregion
|
|
1352
1358
|
//#region src/DesignTokens/Icons/Interaction/MailIcon.d.ts
|
|
1353
|
-
interface CustomSvgProps$
|
|
1359
|
+
interface CustomSvgProps$146 {
|
|
1354
1360
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1355
1361
|
}
|
|
1356
1362
|
declare function MailIcon({
|
|
@@ -1359,10 +1365,10 @@ declare function MailIcon({
|
|
|
1359
1365
|
fill,
|
|
1360
1366
|
size,
|
|
1361
1367
|
...rest
|
|
1362
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1368
|
+
}: SvgIconProps & CustomSvgProps$146): JSX.Element;
|
|
1363
1369
|
//#endregion
|
|
1364
1370
|
//#region src/DesignTokens/Icons/Interaction/RoleIcon.d.ts
|
|
1365
|
-
interface CustomSvgProps$
|
|
1371
|
+
interface CustomSvgProps$145 {
|
|
1366
1372
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1367
1373
|
}
|
|
1368
1374
|
declare function RoleIcon({
|
|
@@ -1371,10 +1377,10 @@ declare function RoleIcon({
|
|
|
1371
1377
|
fill,
|
|
1372
1378
|
size,
|
|
1373
1379
|
...rest
|
|
1374
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1380
|
+
}: SvgIconProps & CustomSvgProps$145): JSX.Element;
|
|
1375
1381
|
//#endregion
|
|
1376
1382
|
//#region src/DesignTokens/Icons/Interaction/AddIcon.d.ts
|
|
1377
|
-
interface CustomSvgProps$
|
|
1383
|
+
interface CustomSvgProps$144 {
|
|
1378
1384
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1379
1385
|
}
|
|
1380
1386
|
declare function AddIcon({
|
|
@@ -1383,10 +1389,10 @@ declare function AddIcon({
|
|
|
1383
1389
|
fill,
|
|
1384
1390
|
size,
|
|
1385
1391
|
...rest
|
|
1386
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1392
|
+
}: SvgIconProps & CustomSvgProps$144): JSX.Element;
|
|
1387
1393
|
//#endregion
|
|
1388
1394
|
//#region src/DesignTokens/Icons/Interaction/AddTagIcon.d.ts
|
|
1389
|
-
interface CustomSvgProps$
|
|
1395
|
+
interface CustomSvgProps$143 {
|
|
1390
1396
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1391
1397
|
}
|
|
1392
1398
|
declare function AddTagIcon({
|
|
@@ -1395,10 +1401,10 @@ declare function AddTagIcon({
|
|
|
1395
1401
|
fill,
|
|
1396
1402
|
size,
|
|
1397
1403
|
...rest
|
|
1398
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1404
|
+
}: SvgIconProps & CustomSvgProps$143): JSX.Element;
|
|
1399
1405
|
//#endregion
|
|
1400
1406
|
//#region src/DesignTokens/Icons/Interaction/AgendaIcon.d.ts
|
|
1401
|
-
interface CustomSvgProps$
|
|
1407
|
+
interface CustomSvgProps$142 {
|
|
1402
1408
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1403
1409
|
}
|
|
1404
1410
|
declare function AgendaIcon({
|
|
@@ -1407,10 +1413,10 @@ declare function AgendaIcon({
|
|
|
1407
1413
|
fill,
|
|
1408
1414
|
size,
|
|
1409
1415
|
...rest
|
|
1410
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1416
|
+
}: SvgIconProps & CustomSvgProps$142): JSX.Element;
|
|
1411
1417
|
//#endregion
|
|
1412
1418
|
//#region src/DesignTokens/Icons/Interaction/BillingIcon.d.ts
|
|
1413
|
-
interface CustomSvgProps$
|
|
1419
|
+
interface CustomSvgProps$141 {
|
|
1414
1420
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1415
1421
|
}
|
|
1416
1422
|
declare function BillingIcon({
|
|
@@ -1419,10 +1425,10 @@ declare function BillingIcon({
|
|
|
1419
1425
|
fill,
|
|
1420
1426
|
size,
|
|
1421
1427
|
...rest
|
|
1422
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1428
|
+
}: SvgIconProps & CustomSvgProps$141): JSX.Element;
|
|
1423
1429
|
//#endregion
|
|
1424
1430
|
//#region src/DesignTokens/Icons/Interaction/BinIcon.d.ts
|
|
1425
|
-
interface CustomSvgProps$
|
|
1431
|
+
interface CustomSvgProps$140 {
|
|
1426
1432
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1427
1433
|
}
|
|
1428
1434
|
declare function BinIcon({
|
|
@@ -1431,10 +1437,10 @@ declare function BinIcon({
|
|
|
1431
1437
|
fill,
|
|
1432
1438
|
size,
|
|
1433
1439
|
...rest
|
|
1434
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1440
|
+
}: SvgIconProps & CustomSvgProps$140): JSX.Element;
|
|
1435
1441
|
//#endregion
|
|
1436
1442
|
//#region src/DesignTokens/Icons/Interaction/CheckedIcon.d.ts
|
|
1437
|
-
interface CustomSvgProps$
|
|
1443
|
+
interface CustomSvgProps$139 {
|
|
1438
1444
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1439
1445
|
}
|
|
1440
1446
|
declare function CheckedIcon({
|
|
@@ -1443,10 +1449,10 @@ declare function CheckedIcon({
|
|
|
1443
1449
|
fill,
|
|
1444
1450
|
size,
|
|
1445
1451
|
...rest
|
|
1446
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1452
|
+
}: SvgIconProps & CustomSvgProps$139): JSX.Element;
|
|
1447
1453
|
//#endregion
|
|
1448
1454
|
//#region src/DesignTokens/Icons/Interaction/CheckedIconThin.d.ts
|
|
1449
|
-
interface CustomSvgProps$
|
|
1455
|
+
interface CustomSvgProps$138 {
|
|
1450
1456
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1451
1457
|
}
|
|
1452
1458
|
declare function CheckedIconThin({
|
|
@@ -1455,10 +1461,10 @@ declare function CheckedIconThin({
|
|
|
1455
1461
|
fill,
|
|
1456
1462
|
size,
|
|
1457
1463
|
...rest
|
|
1458
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1464
|
+
}: SvgIconProps & CustomSvgProps$138): JSX.Element;
|
|
1459
1465
|
//#endregion
|
|
1460
1466
|
//#region src/DesignTokens/Icons/Interaction/ClockIcon.d.ts
|
|
1461
|
-
interface CustomSvgProps$
|
|
1467
|
+
interface CustomSvgProps$137 {
|
|
1462
1468
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1463
1469
|
}
|
|
1464
1470
|
declare function ClockIcon({
|
|
@@ -1467,10 +1473,10 @@ declare function ClockIcon({
|
|
|
1467
1473
|
fill,
|
|
1468
1474
|
size,
|
|
1469
1475
|
...rest
|
|
1470
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1476
|
+
}: SvgIconProps & CustomSvgProps$137): JSX.Element;
|
|
1471
1477
|
//#endregion
|
|
1472
1478
|
//#region src/DesignTokens/Icons/Interaction/CloseIcon.d.ts
|
|
1473
|
-
interface CustomSvgProps$
|
|
1479
|
+
interface CustomSvgProps$136 {
|
|
1474
1480
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1475
1481
|
}
|
|
1476
1482
|
declare function CloseIcon({
|
|
@@ -1479,10 +1485,10 @@ declare function CloseIcon({
|
|
|
1479
1485
|
fill,
|
|
1480
1486
|
size,
|
|
1481
1487
|
...rest
|
|
1482
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1488
|
+
}: SvgIconProps & CustomSvgProps$136): JSX.Element;
|
|
1483
1489
|
//#endregion
|
|
1484
1490
|
//#region src/DesignTokens/Icons/Interaction/CogIcon.d.ts
|
|
1485
|
-
interface CustomSvgProps$
|
|
1491
|
+
interface CustomSvgProps$135 {
|
|
1486
1492
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1487
1493
|
}
|
|
1488
1494
|
declare function CogIcon({
|
|
@@ -1491,10 +1497,10 @@ declare function CogIcon({
|
|
|
1491
1497
|
fill,
|
|
1492
1498
|
size,
|
|
1493
1499
|
...rest
|
|
1494
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1500
|
+
}: SvgIconProps & CustomSvgProps$135): JSX.Element;
|
|
1495
1501
|
//#endregion
|
|
1496
1502
|
//#region src/DesignTokens/Icons/Interaction/CopyPasteIcon.d.ts
|
|
1497
|
-
interface CustomSvgProps$
|
|
1503
|
+
interface CustomSvgProps$134 {
|
|
1498
1504
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1499
1505
|
}
|
|
1500
1506
|
declare function CopyPasteIcon({
|
|
@@ -1503,10 +1509,10 @@ declare function CopyPasteIcon({
|
|
|
1503
1509
|
fill,
|
|
1504
1510
|
size,
|
|
1505
1511
|
...rest
|
|
1506
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1512
|
+
}: SvgIconProps & CustomSvgProps$134): JSX.Element;
|
|
1507
1513
|
//#endregion
|
|
1508
1514
|
//#region src/DesignTokens/Icons/Interaction/DragDropIcon.d.ts
|
|
1509
|
-
interface CustomSvgProps$
|
|
1515
|
+
interface CustomSvgProps$133 {
|
|
1510
1516
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1511
1517
|
}
|
|
1512
1518
|
declare function DragDropIcon({
|
|
@@ -1515,10 +1521,10 @@ declare function DragDropIcon({
|
|
|
1515
1521
|
fill,
|
|
1516
1522
|
size,
|
|
1517
1523
|
...rest
|
|
1518
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1524
|
+
}: SvgIconProps & CustomSvgProps$133): JSX.Element;
|
|
1519
1525
|
//#endregion
|
|
1520
1526
|
//#region src/DesignTokens/Icons/Interaction/EditIcon.d.ts
|
|
1521
|
-
interface CustomSvgProps$
|
|
1527
|
+
interface CustomSvgProps$132 {
|
|
1522
1528
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1523
1529
|
}
|
|
1524
1530
|
declare function EditIcon({
|
|
@@ -1527,10 +1533,10 @@ declare function EditIcon({
|
|
|
1527
1533
|
fill,
|
|
1528
1534
|
size,
|
|
1529
1535
|
...rest
|
|
1530
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1536
|
+
}: SvgIconProps & CustomSvgProps$132): JSX.Element;
|
|
1531
1537
|
//#endregion
|
|
1532
1538
|
//#region src/DesignTokens/Icons/Interaction/EditTextIcon.d.ts
|
|
1533
|
-
interface CustomSvgProps$
|
|
1539
|
+
interface CustomSvgProps$131 {
|
|
1534
1540
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1535
1541
|
}
|
|
1536
1542
|
declare function EditTextIcon({
|
|
@@ -1539,10 +1545,10 @@ declare function EditTextIcon({
|
|
|
1539
1545
|
fill,
|
|
1540
1546
|
size,
|
|
1541
1547
|
...rest
|
|
1542
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1548
|
+
}: SvgIconProps & CustomSvgProps$131): JSX.Element;
|
|
1543
1549
|
//#endregion
|
|
1544
1550
|
//#region src/DesignTokens/Icons/Interaction/FilterIcon.d.ts
|
|
1545
|
-
interface CustomSvgProps$
|
|
1551
|
+
interface CustomSvgProps$130 {
|
|
1546
1552
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1547
1553
|
}
|
|
1548
1554
|
declare function FilterIcon({
|
|
@@ -1551,10 +1557,10 @@ declare function FilterIcon({
|
|
|
1551
1557
|
fill,
|
|
1552
1558
|
size,
|
|
1553
1559
|
...rest
|
|
1554
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1560
|
+
}: SvgIconProps & CustomSvgProps$130): JSX.Element;
|
|
1555
1561
|
//#endregion
|
|
1556
1562
|
//#region src/DesignTokens/Icons/Interaction/LayoutIcon.d.ts
|
|
1557
|
-
interface CustomSvgProps$
|
|
1563
|
+
interface CustomSvgProps$129 {
|
|
1558
1564
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1559
1565
|
}
|
|
1560
1566
|
declare function LayoutIcon({
|
|
@@ -1563,10 +1569,10 @@ declare function LayoutIcon({
|
|
|
1563
1569
|
fill,
|
|
1564
1570
|
size,
|
|
1565
1571
|
...rest
|
|
1566
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1572
|
+
}: SvgIconProps & CustomSvgProps$129): JSX.Element;
|
|
1567
1573
|
//#endregion
|
|
1568
1574
|
//#region src/DesignTokens/Icons/Interaction/LayoutLeftIcon.d.ts
|
|
1569
|
-
interface CustomSvgProps$
|
|
1575
|
+
interface CustomSvgProps$128 {
|
|
1570
1576
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1571
1577
|
}
|
|
1572
1578
|
declare function LayoutLeftIcon({
|
|
@@ -1575,10 +1581,10 @@ declare function LayoutLeftIcon({
|
|
|
1575
1581
|
fill,
|
|
1576
1582
|
size,
|
|
1577
1583
|
...rest
|
|
1578
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1584
|
+
}: SvgIconProps & CustomSvgProps$128): JSX.Element;
|
|
1579
1585
|
//#endregion
|
|
1580
1586
|
//#region src/DesignTokens/Icons/Interaction/LayoutRightIcon.d.ts
|
|
1581
|
-
interface CustomSvgProps$
|
|
1587
|
+
interface CustomSvgProps$127 {
|
|
1582
1588
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1583
1589
|
}
|
|
1584
1590
|
declare function LayoutRightIcon({
|
|
@@ -1587,10 +1593,10 @@ declare function LayoutRightIcon({
|
|
|
1587
1593
|
fill,
|
|
1588
1594
|
size,
|
|
1589
1595
|
...rest
|
|
1590
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1596
|
+
}: SvgIconProps & CustomSvgProps$127): JSX.Element;
|
|
1591
1597
|
//#endregion
|
|
1592
1598
|
//#region src/DesignTokens/Icons/Interaction/LockIcon.d.ts
|
|
1593
|
-
interface CustomSvgProps$
|
|
1599
|
+
interface CustomSvgProps$126 {
|
|
1594
1600
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1595
1601
|
}
|
|
1596
1602
|
declare function LockIcon({
|
|
@@ -1599,10 +1605,10 @@ declare function LockIcon({
|
|
|
1599
1605
|
fill,
|
|
1600
1606
|
size,
|
|
1601
1607
|
...rest
|
|
1602
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1608
|
+
}: SvgIconProps & CustomSvgProps$126): JSX.Element;
|
|
1603
1609
|
//#endregion
|
|
1604
1610
|
//#region src/DesignTokens/Icons/Interaction/LogoutIcon.d.ts
|
|
1605
|
-
interface CustomSvgProps$
|
|
1611
|
+
interface CustomSvgProps$125 {
|
|
1606
1612
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1607
1613
|
}
|
|
1608
1614
|
declare function LogoutIcon({
|
|
@@ -1611,10 +1617,10 @@ declare function LogoutIcon({
|
|
|
1611
1617
|
fill,
|
|
1612
1618
|
size,
|
|
1613
1619
|
...rest
|
|
1614
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1620
|
+
}: SvgIconProps & CustomSvgProps$125): JSX.Element;
|
|
1615
1621
|
//#endregion
|
|
1616
1622
|
//#region src/DesignTokens/Icons/Interaction/MenuHorizontalIcon.d.ts
|
|
1617
|
-
interface CustomSvgProps$
|
|
1623
|
+
interface CustomSvgProps$124 {
|
|
1618
1624
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1619
1625
|
}
|
|
1620
1626
|
declare function MenuHorizontalIcon({
|
|
@@ -1623,10 +1629,10 @@ declare function MenuHorizontalIcon({
|
|
|
1623
1629
|
fill,
|
|
1624
1630
|
size,
|
|
1625
1631
|
...rest
|
|
1626
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1632
|
+
}: SvgIconProps & CustomSvgProps$124): JSX.Element;
|
|
1627
1633
|
//#endregion
|
|
1628
1634
|
//#region src/DesignTokens/Icons/Interaction/MenuVerticalIcon.d.ts
|
|
1629
|
-
interface CustomSvgProps$
|
|
1635
|
+
interface CustomSvgProps$123 {
|
|
1630
1636
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1631
1637
|
}
|
|
1632
1638
|
declare function MenuVerticalIcon({
|
|
@@ -1635,10 +1641,10 @@ declare function MenuVerticalIcon({
|
|
|
1635
1641
|
fill,
|
|
1636
1642
|
size,
|
|
1637
1643
|
...rest
|
|
1638
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1644
|
+
}: SvgIconProps & CustomSvgProps$123): JSX.Element;
|
|
1639
1645
|
//#endregion
|
|
1640
1646
|
//#region src/DesignTokens/Icons/Interaction/MinusIcon.d.ts
|
|
1641
|
-
interface CustomSvgProps$
|
|
1647
|
+
interface CustomSvgProps$122 {
|
|
1642
1648
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1643
1649
|
}
|
|
1644
1650
|
declare function MinusIcon({
|
|
@@ -1647,10 +1653,10 @@ declare function MinusIcon({
|
|
|
1647
1653
|
fill,
|
|
1648
1654
|
size,
|
|
1649
1655
|
...rest
|
|
1650
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1656
|
+
}: SvgIconProps & CustomSvgProps$122): JSX.Element;
|
|
1651
1657
|
//#endregion
|
|
1652
1658
|
//#region src/DesignTokens/Icons/Interaction/PencilWriteIcon.d.ts
|
|
1653
|
-
interface CustomSvgProps$
|
|
1659
|
+
interface CustomSvgProps$121 {
|
|
1654
1660
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1655
1661
|
}
|
|
1656
1662
|
declare function PencilWriteIcon({
|
|
@@ -1659,10 +1665,10 @@ declare function PencilWriteIcon({
|
|
|
1659
1665
|
fill,
|
|
1660
1666
|
size,
|
|
1661
1667
|
...rest
|
|
1662
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1668
|
+
}: SvgIconProps & CustomSvgProps$121): JSX.Element;
|
|
1663
1669
|
//#endregion
|
|
1664
1670
|
//#region src/DesignTokens/Icons/Interaction/PricingCheckedIcon.d.ts
|
|
1665
|
-
interface CustomSvgProps$
|
|
1671
|
+
interface CustomSvgProps$120 {
|
|
1666
1672
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1667
1673
|
}
|
|
1668
1674
|
declare function PricingCheckedIcon({
|
|
@@ -1671,10 +1677,10 @@ declare function PricingCheckedIcon({
|
|
|
1671
1677
|
fill,
|
|
1672
1678
|
size,
|
|
1673
1679
|
...rest
|
|
1674
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1680
|
+
}: SvgIconProps & CustomSvgProps$120): JSX.Element;
|
|
1675
1681
|
//#endregion
|
|
1676
1682
|
//#region src/DesignTokens/Icons/Interaction/SearchIcon.d.ts
|
|
1677
|
-
interface CustomSvgProps$
|
|
1683
|
+
interface CustomSvgProps$119 {
|
|
1678
1684
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1679
1685
|
}
|
|
1680
1686
|
declare function SearchIcon({
|
|
@@ -1683,10 +1689,10 @@ declare function SearchIcon({
|
|
|
1683
1689
|
fill,
|
|
1684
1690
|
size,
|
|
1685
1691
|
...rest
|
|
1686
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1692
|
+
}: SvgIconProps & CustomSvgProps$119): JSX.Element;
|
|
1687
1693
|
//#endregion
|
|
1688
1694
|
//#region src/DesignTokens/Icons/Interaction/SearchRemoveIcon.d.ts
|
|
1689
|
-
interface CustomSvgProps$
|
|
1695
|
+
interface CustomSvgProps$118 {
|
|
1690
1696
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1691
1697
|
}
|
|
1692
1698
|
declare function SearchRemoveIcon({
|
|
@@ -1695,10 +1701,10 @@ declare function SearchRemoveIcon({
|
|
|
1695
1701
|
fill,
|
|
1696
1702
|
size,
|
|
1697
1703
|
...rest
|
|
1698
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1704
|
+
}: SvgIconProps & CustomSvgProps$118): JSX.Element;
|
|
1699
1705
|
//#endregion
|
|
1700
1706
|
//#region src/DesignTokens/Icons/Interaction/SettingsSliderIcon.d.ts
|
|
1701
|
-
interface CustomSvgProps$
|
|
1707
|
+
interface CustomSvgProps$117 {
|
|
1702
1708
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1703
1709
|
}
|
|
1704
1710
|
declare function SettingsSliderIcon({
|
|
@@ -1707,10 +1713,10 @@ declare function SettingsSliderIcon({
|
|
|
1707
1713
|
fill,
|
|
1708
1714
|
size,
|
|
1709
1715
|
...rest
|
|
1710
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1716
|
+
}: SvgIconProps & CustomSvgProps$117): JSX.Element;
|
|
1711
1717
|
//#endregion
|
|
1712
1718
|
//#region src/DesignTokens/Icons/Interaction/ShareIcon.d.ts
|
|
1713
|
-
interface CustomSvgProps$
|
|
1719
|
+
interface CustomSvgProps$116 {
|
|
1714
1720
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1715
1721
|
}
|
|
1716
1722
|
declare function ShareIcon({
|
|
@@ -1719,10 +1725,10 @@ declare function ShareIcon({
|
|
|
1719
1725
|
fill,
|
|
1720
1726
|
size,
|
|
1721
1727
|
...rest
|
|
1722
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1728
|
+
}: SvgIconProps & CustomSvgProps$116): JSX.Element;
|
|
1723
1729
|
//#endregion
|
|
1724
1730
|
//#region src/DesignTokens/Icons/Interaction/SortingIcon.d.ts
|
|
1725
|
-
interface CustomSvgProps$
|
|
1731
|
+
interface CustomSvgProps$115 {
|
|
1726
1732
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1727
1733
|
}
|
|
1728
1734
|
declare function SortingIcon({
|
|
@@ -1731,10 +1737,10 @@ declare function SortingIcon({
|
|
|
1731
1737
|
fill,
|
|
1732
1738
|
size,
|
|
1733
1739
|
...rest
|
|
1734
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1740
|
+
}: SvgIconProps & CustomSvgProps$115): JSX.Element;
|
|
1735
1741
|
//#endregion
|
|
1736
1742
|
//#region src/DesignTokens/Icons/Interaction/SortingIconZA.d.ts
|
|
1737
|
-
interface CustomSvgProps$
|
|
1743
|
+
interface CustomSvgProps$114 {
|
|
1738
1744
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1739
1745
|
}
|
|
1740
1746
|
declare function SortingIconZA({
|
|
@@ -1743,10 +1749,10 @@ declare function SortingIconZA({
|
|
|
1743
1749
|
fill,
|
|
1744
1750
|
size,
|
|
1745
1751
|
...rest
|
|
1746
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1752
|
+
}: SvgIconProps & CustomSvgProps$114): JSX.Element;
|
|
1747
1753
|
//#endregion
|
|
1748
1754
|
//#region src/DesignTokens/Icons/Interaction/TagAddIcon.d.ts
|
|
1749
|
-
interface CustomSvgProps$
|
|
1755
|
+
interface CustomSvgProps$113 {
|
|
1750
1756
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1751
1757
|
}
|
|
1752
1758
|
declare function TagAddIcon({
|
|
@@ -1755,10 +1761,10 @@ declare function TagAddIcon({
|
|
|
1755
1761
|
fill,
|
|
1756
1762
|
size,
|
|
1757
1763
|
...rest
|
|
1758
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1764
|
+
}: SvgIconProps & CustomSvgProps$113): JSX.Element;
|
|
1759
1765
|
//#endregion
|
|
1760
1766
|
//#region src/DesignTokens/Icons/Interaction/TagEditIcon.d.ts
|
|
1761
|
-
interface CustomSvgProps$
|
|
1767
|
+
interface CustomSvgProps$112 {
|
|
1762
1768
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1763
1769
|
}
|
|
1764
1770
|
declare function TagEditIcon({
|
|
@@ -1767,10 +1773,10 @@ declare function TagEditIcon({
|
|
|
1767
1773
|
fill,
|
|
1768
1774
|
size,
|
|
1769
1775
|
...rest
|
|
1770
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1776
|
+
}: SvgIconProps & CustomSvgProps$112): JSX.Element;
|
|
1771
1777
|
//#endregion
|
|
1772
1778
|
//#region src/DesignTokens/Icons/Interaction/TagRemoveIcon.d.ts
|
|
1773
|
-
interface CustomSvgProps$
|
|
1779
|
+
interface CustomSvgProps$111 {
|
|
1774
1780
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1775
1781
|
}
|
|
1776
1782
|
declare function TagRemoveIcon({
|
|
@@ -1779,10 +1785,10 @@ declare function TagRemoveIcon({
|
|
|
1779
1785
|
fill,
|
|
1780
1786
|
size,
|
|
1781
1787
|
...rest
|
|
1782
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1788
|
+
}: SvgIconProps & CustomSvgProps$111): JSX.Element;
|
|
1783
1789
|
//#endregion
|
|
1784
1790
|
//#region src/DesignTokens/Icons/Interaction/TeamIcon.d.ts
|
|
1785
|
-
interface CustomSvgProps$
|
|
1791
|
+
interface CustomSvgProps$110 {
|
|
1786
1792
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1787
1793
|
}
|
|
1788
1794
|
declare function TeamIcon({
|
|
@@ -1791,10 +1797,10 @@ declare function TeamIcon({
|
|
|
1791
1797
|
fill,
|
|
1792
1798
|
size,
|
|
1793
1799
|
...rest
|
|
1794
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1800
|
+
}: SvgIconProps & CustomSvgProps$110): JSX.Element;
|
|
1795
1801
|
//#endregion
|
|
1796
1802
|
//#region src/DesignTokens/Icons/Interaction/UndoIcon.d.ts
|
|
1797
|
-
interface CustomSvgProps$
|
|
1803
|
+
interface CustomSvgProps$109 {
|
|
1798
1804
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1799
1805
|
}
|
|
1800
1806
|
declare function UndoIcon({
|
|
@@ -1803,10 +1809,10 @@ declare function UndoIcon({
|
|
|
1803
1809
|
fill,
|
|
1804
1810
|
size,
|
|
1805
1811
|
...rest
|
|
1806
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1812
|
+
}: SvgIconProps & CustomSvgProps$109): JSX.Element;
|
|
1807
1813
|
//#endregion
|
|
1808
1814
|
//#region src/DesignTokens/Icons/Interaction/UnlockedIcon.d.ts
|
|
1809
|
-
interface CustomSvgProps$
|
|
1815
|
+
interface CustomSvgProps$108 {
|
|
1810
1816
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1811
1817
|
}
|
|
1812
1818
|
declare function UnlockedIcon({
|
|
@@ -1815,10 +1821,10 @@ declare function UnlockedIcon({
|
|
|
1815
1821
|
fill,
|
|
1816
1822
|
size,
|
|
1817
1823
|
...rest
|
|
1818
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1824
|
+
}: SvgIconProps & CustomSvgProps$108): JSX.Element;
|
|
1819
1825
|
//#endregion
|
|
1820
1826
|
//#region src/DesignTokens/Icons/Interaction/UnLockIcon.d.ts
|
|
1821
|
-
interface CustomSvgProps$
|
|
1827
|
+
interface CustomSvgProps$107 {
|
|
1822
1828
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1823
1829
|
}
|
|
1824
1830
|
declare function UnLockIcon({
|
|
@@ -1827,7 +1833,7 @@ declare function UnLockIcon({
|
|
|
1827
1833
|
fill,
|
|
1828
1834
|
size,
|
|
1829
1835
|
...rest
|
|
1830
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1836
|
+
}: SvgIconProps & CustomSvgProps$107): JSX.Element;
|
|
1831
1837
|
//#endregion
|
|
1832
1838
|
//#region src/DesignTokens/Icons/Logos/LogoBeta.d.ts
|
|
1833
1839
|
declare function LogoBeta({
|
|
@@ -1894,7 +1900,7 @@ declare function LogoBlue({
|
|
|
1894
1900
|
}: SvgIconProps): JSX.Element;
|
|
1895
1901
|
//#endregion
|
|
1896
1902
|
//#region src/DesignTokens/Icons/MediaControl/CutClipIcon.d.ts
|
|
1897
|
-
interface CustomSvgProps$
|
|
1903
|
+
interface CustomSvgProps$106 {
|
|
1898
1904
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1899
1905
|
}
|
|
1900
1906
|
declare function CutClipIcon({
|
|
@@ -1903,10 +1909,10 @@ declare function CutClipIcon({
|
|
|
1903
1909
|
fill,
|
|
1904
1910
|
size,
|
|
1905
1911
|
...rest
|
|
1906
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1912
|
+
}: SvgIconProps & CustomSvgProps$106): JSX.Element;
|
|
1907
1913
|
//#endregion
|
|
1908
1914
|
//#region src/DesignTokens/Icons/MediaControl/HangUpIcon.d.ts
|
|
1909
|
-
interface CustomSvgProps$
|
|
1915
|
+
interface CustomSvgProps$105 {
|
|
1910
1916
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1911
1917
|
}
|
|
1912
1918
|
declare function HangUpIcon({
|
|
@@ -1915,10 +1921,10 @@ declare function HangUpIcon({
|
|
|
1915
1921
|
fill,
|
|
1916
1922
|
size,
|
|
1917
1923
|
...rest
|
|
1918
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1924
|
+
}: SvgIconProps & CustomSvgProps$105): JSX.Element;
|
|
1919
1925
|
//#endregion
|
|
1920
1926
|
//#region src/DesignTokens/Icons/MediaControl/MeetingIcon.d.ts
|
|
1921
|
-
interface CustomSvgProps$
|
|
1927
|
+
interface CustomSvgProps$104 {
|
|
1922
1928
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1923
1929
|
}
|
|
1924
1930
|
declare function MeetingIcon({
|
|
@@ -1927,10 +1933,10 @@ declare function MeetingIcon({
|
|
|
1927
1933
|
fill,
|
|
1928
1934
|
size,
|
|
1929
1935
|
...rest
|
|
1930
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1936
|
+
}: SvgIconProps & CustomSvgProps$104): JSX.Element;
|
|
1931
1937
|
//#endregion
|
|
1932
1938
|
//#region src/DesignTokens/Icons/MediaControl/MicrophoneIcon.d.ts
|
|
1933
|
-
interface CustomSvgProps$
|
|
1939
|
+
interface CustomSvgProps$103 {
|
|
1934
1940
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1935
1941
|
}
|
|
1936
1942
|
declare function MicrophoneIcon({
|
|
@@ -1939,10 +1945,10 @@ declare function MicrophoneIcon({
|
|
|
1939
1945
|
fill,
|
|
1940
1946
|
size,
|
|
1941
1947
|
...rest
|
|
1942
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1948
|
+
}: SvgIconProps & CustomSvgProps$103): JSX.Element;
|
|
1943
1949
|
//#endregion
|
|
1944
1950
|
//#region src/DesignTokens/Icons/MediaControl/MoveBackIcon.d.ts
|
|
1945
|
-
interface CustomSvgProps$
|
|
1951
|
+
interface CustomSvgProps$102 {
|
|
1946
1952
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1947
1953
|
}
|
|
1948
1954
|
declare function MoveBackIcon({
|
|
@@ -1951,10 +1957,10 @@ declare function MoveBackIcon({
|
|
|
1951
1957
|
fill,
|
|
1952
1958
|
size,
|
|
1953
1959
|
...rest
|
|
1954
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1960
|
+
}: SvgIconProps & CustomSvgProps$102): JSX.Element;
|
|
1955
1961
|
//#endregion
|
|
1956
1962
|
//#region src/DesignTokens/Icons/MediaControl/MoveInIcon.d.ts
|
|
1957
|
-
interface CustomSvgProps$
|
|
1963
|
+
interface CustomSvgProps$101 {
|
|
1958
1964
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1959
1965
|
}
|
|
1960
1966
|
declare function MoveInIcon({
|
|
@@ -1963,10 +1969,10 @@ declare function MoveInIcon({
|
|
|
1963
1969
|
fill,
|
|
1964
1970
|
size,
|
|
1965
1971
|
...rest
|
|
1966
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1972
|
+
}: SvgIconProps & CustomSvgProps$101): JSX.Element;
|
|
1967
1973
|
//#endregion
|
|
1968
1974
|
//#region src/DesignTokens/Icons/MediaControl/MuteIcon.d.ts
|
|
1969
|
-
interface CustomSvgProps$
|
|
1975
|
+
interface CustomSvgProps$100 {
|
|
1970
1976
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1971
1977
|
}
|
|
1972
1978
|
declare function MuteIcon({
|
|
@@ -1975,10 +1981,10 @@ declare function MuteIcon({
|
|
|
1975
1981
|
fill,
|
|
1976
1982
|
size,
|
|
1977
1983
|
...rest
|
|
1978
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1984
|
+
}: SvgIconProps & CustomSvgProps$100): JSX.Element;
|
|
1979
1985
|
//#endregion
|
|
1980
1986
|
//#region src/DesignTokens/Icons/MediaControl/NoCameraIcon.d.ts
|
|
1981
|
-
interface CustomSvgProps$
|
|
1987
|
+
interface CustomSvgProps$99 {
|
|
1982
1988
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1983
1989
|
}
|
|
1984
1990
|
declare function NoCameraIcon({
|
|
@@ -1987,10 +1993,10 @@ declare function NoCameraIcon({
|
|
|
1987
1993
|
fill,
|
|
1988
1994
|
size,
|
|
1989
1995
|
...rest
|
|
1990
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1996
|
+
}: SvgIconProps & CustomSvgProps$99): JSX.Element;
|
|
1991
1997
|
//#endregion
|
|
1992
1998
|
//#region src/DesignTokens/Icons/MediaControl/NoMicrophoneIcon.d.ts
|
|
1993
|
-
interface CustomSvgProps$
|
|
1999
|
+
interface CustomSvgProps$98 {
|
|
1994
2000
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1995
2001
|
}
|
|
1996
2002
|
declare function NoMicrophoneIcon({
|
|
@@ -1999,10 +2005,10 @@ declare function NoMicrophoneIcon({
|
|
|
1999
2005
|
fill,
|
|
2000
2006
|
size,
|
|
2001
2007
|
...rest
|
|
2002
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2008
|
+
}: SvgIconProps & CustomSvgProps$98): JSX.Element;
|
|
2003
2009
|
//#endregion
|
|
2004
2010
|
//#region src/DesignTokens/Icons/MediaControl/PauseIcon.d.ts
|
|
2005
|
-
interface CustomSvgProps$
|
|
2011
|
+
interface CustomSvgProps$97 {
|
|
2006
2012
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2007
2013
|
}
|
|
2008
2014
|
declare function PauseIcon({
|
|
@@ -2011,10 +2017,10 @@ declare function PauseIcon({
|
|
|
2011
2017
|
fill,
|
|
2012
2018
|
size,
|
|
2013
2019
|
...rest
|
|
2014
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2020
|
+
}: SvgIconProps & CustomSvgProps$97): JSX.Element;
|
|
2015
2021
|
//#endregion
|
|
2016
2022
|
//#region src/DesignTokens/Icons/MediaControl/PlayIcon.d.ts
|
|
2017
|
-
interface CustomSvgProps$
|
|
2023
|
+
interface CustomSvgProps$96 {
|
|
2018
2024
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2019
2025
|
}
|
|
2020
2026
|
declare function PlayIcon({
|
|
@@ -2023,10 +2029,10 @@ declare function PlayIcon({
|
|
|
2023
2029
|
fill,
|
|
2024
2030
|
size,
|
|
2025
2031
|
...rest
|
|
2026
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2032
|
+
}: SvgIconProps & CustomSvgProps$96): JSX.Element;
|
|
2027
2033
|
//#endregion
|
|
2028
2034
|
//#region src/DesignTokens/Icons/MediaControl/ScreenShareIcon.d.ts
|
|
2029
|
-
interface CustomSvgProps$
|
|
2035
|
+
interface CustomSvgProps$95 {
|
|
2030
2036
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2031
2037
|
}
|
|
2032
2038
|
declare function ScreenShareIcon({
|
|
@@ -2035,10 +2041,10 @@ declare function ScreenShareIcon({
|
|
|
2035
2041
|
fill,
|
|
2036
2042
|
size,
|
|
2037
2043
|
...rest
|
|
2038
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2044
|
+
}: SvgIconProps & CustomSvgProps$95): JSX.Element;
|
|
2039
2045
|
//#endregion
|
|
2040
2046
|
//#region src/DesignTokens/Icons/MediaControl/PlayFillIcon.d.ts
|
|
2041
|
-
interface CustomSvgProps$
|
|
2047
|
+
interface CustomSvgProps$94 {
|
|
2042
2048
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2043
2049
|
}
|
|
2044
2050
|
declare function PlayFillIcon({
|
|
@@ -2047,10 +2053,10 @@ declare function PlayFillIcon({
|
|
|
2047
2053
|
fill,
|
|
2048
2054
|
size,
|
|
2049
2055
|
...rest
|
|
2050
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2056
|
+
}: SvgIconProps & CustomSvgProps$94): JSX.Element;
|
|
2051
2057
|
//#endregion
|
|
2052
2058
|
//#region src/DesignTokens/Icons/MediaControl/PreviousIcon.d.ts
|
|
2053
|
-
interface CustomSvgProps$
|
|
2059
|
+
interface CustomSvgProps$93 {
|
|
2054
2060
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2055
2061
|
}
|
|
2056
2062
|
declare function PreviousIcon({
|
|
@@ -2059,10 +2065,10 @@ declare function PreviousIcon({
|
|
|
2059
2065
|
fill,
|
|
2060
2066
|
size,
|
|
2061
2067
|
...rest
|
|
2062
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2068
|
+
}: SvgIconProps & CustomSvgProps$93): JSX.Element;
|
|
2063
2069
|
//#endregion
|
|
2064
2070
|
//#region src/DesignTokens/Icons/MediaControl/RecordIcon.d.ts
|
|
2065
|
-
interface CustomSvgProps$
|
|
2071
|
+
interface CustomSvgProps$92 {
|
|
2066
2072
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2067
2073
|
}
|
|
2068
2074
|
declare function RecordIcon({
|
|
@@ -2071,10 +2077,10 @@ declare function RecordIcon({
|
|
|
2071
2077
|
fill,
|
|
2072
2078
|
size,
|
|
2073
2079
|
...rest
|
|
2074
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2080
|
+
}: SvgIconProps & CustomSvgProps$92): JSX.Element;
|
|
2075
2081
|
//#endregion
|
|
2076
2082
|
//#region src/DesignTokens/Icons/MediaControl/RecordingIcon.d.ts
|
|
2077
|
-
interface CustomSvgProps$
|
|
2083
|
+
interface CustomSvgProps$91 {
|
|
2078
2084
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2079
2085
|
}
|
|
2080
2086
|
declare function RecordingIcon({
|
|
@@ -2083,10 +2089,10 @@ declare function RecordingIcon({
|
|
|
2083
2089
|
fill,
|
|
2084
2090
|
size,
|
|
2085
2091
|
...rest
|
|
2086
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2092
|
+
}: SvgIconProps & CustomSvgProps$91): JSX.Element;
|
|
2087
2093
|
//#endregion
|
|
2088
2094
|
//#region src/DesignTokens/Icons/MediaControl/StopRecordIcon.d.ts
|
|
2089
|
-
interface CustomSvgProps$
|
|
2095
|
+
interface CustomSvgProps$90 {
|
|
2090
2096
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2091
2097
|
}
|
|
2092
2098
|
declare function StopRecordingIcon({
|
|
@@ -2095,10 +2101,10 @@ declare function StopRecordingIcon({
|
|
|
2095
2101
|
fill,
|
|
2096
2102
|
size,
|
|
2097
2103
|
...rest
|
|
2098
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2104
|
+
}: SvgIconProps & CustomSvgProps$90): JSX.Element;
|
|
2099
2105
|
//#endregion
|
|
2100
2106
|
//#region src/DesignTokens/Icons/MediaControl/TagIcon.d.ts
|
|
2101
|
-
interface CustomSvgProps$
|
|
2107
|
+
interface CustomSvgProps$89 {
|
|
2102
2108
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2103
2109
|
}
|
|
2104
2110
|
declare function TagIcon({
|
|
@@ -2107,10 +2113,10 @@ declare function TagIcon({
|
|
|
2107
2113
|
fill,
|
|
2108
2114
|
size,
|
|
2109
2115
|
...rest
|
|
2110
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2116
|
+
}: SvgIconProps & CustomSvgProps$89): JSX.Element;
|
|
2111
2117
|
//#endregion
|
|
2112
2118
|
//#region src/DesignTokens/Icons/MediaControl/VolumeIcon.d.ts
|
|
2113
|
-
interface CustomSvgProps$
|
|
2119
|
+
interface CustomSvgProps$88 {
|
|
2114
2120
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2115
2121
|
}
|
|
2116
2122
|
declare function VolumeIcon({
|
|
@@ -2119,10 +2125,10 @@ declare function VolumeIcon({
|
|
|
2119
2125
|
fill,
|
|
2120
2126
|
size,
|
|
2121
2127
|
...rest
|
|
2122
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2128
|
+
}: SvgIconProps & CustomSvgProps$88): JSX.Element;
|
|
2123
2129
|
//#endregion
|
|
2124
2130
|
//#region src/DesignTokens/Icons/Miscellaneous/AddSeatIcon.d.ts
|
|
2125
|
-
interface CustomSvgProps$
|
|
2131
|
+
interface CustomSvgProps$87 {
|
|
2126
2132
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2127
2133
|
}
|
|
2128
2134
|
declare function AddSeatIcon({
|
|
@@ -2131,10 +2137,10 @@ declare function AddSeatIcon({
|
|
|
2131
2137
|
fill,
|
|
2132
2138
|
size,
|
|
2133
2139
|
...rest
|
|
2134
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2140
|
+
}: SvgIconProps & CustomSvgProps$87): JSX.Element;
|
|
2135
2141
|
//#endregion
|
|
2136
2142
|
//#region src/DesignTokens/Icons/Miscellaneous/AddUsersIcon.d.ts
|
|
2137
|
-
interface CustomSvgProps$
|
|
2143
|
+
interface CustomSvgProps$86 {
|
|
2138
2144
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2139
2145
|
}
|
|
2140
2146
|
declare function AddUsersIcon({
|
|
@@ -2143,10 +2149,10 @@ declare function AddUsersIcon({
|
|
|
2143
2149
|
fill,
|
|
2144
2150
|
size,
|
|
2145
2151
|
...rest
|
|
2146
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2152
|
+
}: SvgIconProps & CustomSvgProps$86): JSX.Element;
|
|
2147
2153
|
//#endregion
|
|
2148
2154
|
//#region src/DesignTokens/Icons/Miscellaneous/AndroidIcon.d.ts
|
|
2149
|
-
interface CustomSvgProps$
|
|
2155
|
+
interface CustomSvgProps$85 {
|
|
2150
2156
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2151
2157
|
}
|
|
2152
2158
|
declare function AndroidIcon({
|
|
@@ -2155,10 +2161,10 @@ declare function AndroidIcon({
|
|
|
2155
2161
|
fill,
|
|
2156
2162
|
size,
|
|
2157
2163
|
...rest
|
|
2158
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2164
|
+
}: SvgIconProps & CustomSvgProps$85): JSX.Element;
|
|
2159
2165
|
//#endregion
|
|
2160
2166
|
//#region src/DesignTokens/Icons/Miscellaneous/AnonymizeIcon.d.ts
|
|
2161
|
-
interface CustomSvgProps$
|
|
2167
|
+
interface CustomSvgProps$84 {
|
|
2162
2168
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2163
2169
|
}
|
|
2164
2170
|
declare function AnonymizeIcon({
|
|
@@ -2167,10 +2173,10 @@ declare function AnonymizeIcon({
|
|
|
2167
2173
|
fill,
|
|
2168
2174
|
size,
|
|
2169
2175
|
...rest
|
|
2170
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2176
|
+
}: SvgIconProps & CustomSvgProps$84): JSX.Element;
|
|
2171
2177
|
//#endregion
|
|
2172
2178
|
//#region src/DesignTokens/Icons/Miscellaneous/AppWindowPieIcon.d.ts
|
|
2173
|
-
interface CustomSvgProps$
|
|
2179
|
+
interface CustomSvgProps$83 {
|
|
2174
2180
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2175
2181
|
}
|
|
2176
2182
|
declare function AppWindowPieIcon({
|
|
@@ -2179,10 +2185,10 @@ declare function AppWindowPieIcon({
|
|
|
2179
2185
|
fill,
|
|
2180
2186
|
size,
|
|
2181
2187
|
...rest
|
|
2182
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2188
|
+
}: SvgIconProps & CustomSvgProps$83): JSX.Element;
|
|
2183
2189
|
//#endregion
|
|
2184
2190
|
//#region src/DesignTokens/Icons/Miscellaneous/ArchiveIcon.d.ts
|
|
2185
|
-
interface CustomSvgProps$
|
|
2191
|
+
interface CustomSvgProps$82 {
|
|
2186
2192
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2187
2193
|
}
|
|
2188
2194
|
declare function ArchiveIcon({
|
|
@@ -2191,10 +2197,10 @@ declare function ArchiveIcon({
|
|
|
2191
2197
|
fill,
|
|
2192
2198
|
size,
|
|
2193
2199
|
...rest
|
|
2194
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2200
|
+
}: SvgIconProps & CustomSvgProps$82): JSX.Element;
|
|
2195
2201
|
//#endregion
|
|
2196
2202
|
//#region src/DesignTokens/Icons/Miscellaneous/BillPdfIcon.d.ts
|
|
2197
|
-
interface CustomSvgProps$
|
|
2203
|
+
interface CustomSvgProps$81 {
|
|
2198
2204
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2199
2205
|
}
|
|
2200
2206
|
declare function BillPdfIcon({
|
|
@@ -2203,10 +2209,10 @@ declare function BillPdfIcon({
|
|
|
2203
2209
|
fill,
|
|
2204
2210
|
size,
|
|
2205
2211
|
...rest
|
|
2206
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2212
|
+
}: SvgIconProps & CustomSvgProps$81): JSX.Element;
|
|
2207
2213
|
//#endregion
|
|
2208
2214
|
//#region src/DesignTokens/Icons/Miscellaneous/BinocularIcon.d.ts
|
|
2209
|
-
interface CustomSvgProps$
|
|
2215
|
+
interface CustomSvgProps$80 {
|
|
2210
2216
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2211
2217
|
}
|
|
2212
2218
|
declare function BinocularIcon({
|
|
@@ -2215,10 +2221,10 @@ declare function BinocularIcon({
|
|
|
2215
2221
|
fill,
|
|
2216
2222
|
size,
|
|
2217
2223
|
...rest
|
|
2218
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2224
|
+
}: SvgIconProps & CustomSvgProps$80): JSX.Element;
|
|
2219
2225
|
//#endregion
|
|
2220
2226
|
//#region src/DesignTokens/Icons/Miscellaneous/BookFlipPageIcon.d.ts
|
|
2221
|
-
interface CustomSvgProps$
|
|
2227
|
+
interface CustomSvgProps$79 {
|
|
2222
2228
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2223
2229
|
}
|
|
2224
2230
|
declare function BookFlipPageIcon({
|
|
@@ -2227,10 +2233,10 @@ declare function BookFlipPageIcon({
|
|
|
2227
2233
|
fill,
|
|
2228
2234
|
size,
|
|
2229
2235
|
...rest
|
|
2230
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2236
|
+
}: SvgIconProps & CustomSvgProps$79): JSX.Element;
|
|
2231
2237
|
//#endregion
|
|
2232
2238
|
//#region src/DesignTokens/Icons/Miscellaneous/WalletIcon.d.ts
|
|
2233
|
-
interface CustomSvgProps$
|
|
2239
|
+
interface CustomSvgProps$78 {
|
|
2234
2240
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2235
2241
|
}
|
|
2236
2242
|
declare function WalletIcon({
|
|
@@ -2239,10 +2245,10 @@ declare function WalletIcon({
|
|
|
2239
2245
|
fill,
|
|
2240
2246
|
size,
|
|
2241
2247
|
...rest
|
|
2242
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2248
|
+
}: SvgIconProps & CustomSvgProps$78): JSX.Element;
|
|
2243
2249
|
//#endregion
|
|
2244
2250
|
//#region src/DesignTokens/Icons/Miscellaneous/BrainIcon.d.ts
|
|
2245
|
-
interface CustomSvgProps$
|
|
2251
|
+
interface CustomSvgProps$77 {
|
|
2246
2252
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2247
2253
|
}
|
|
2248
2254
|
declare function BrainIcon({
|
|
@@ -2251,10 +2257,10 @@ declare function BrainIcon({
|
|
|
2251
2257
|
fill,
|
|
2252
2258
|
size,
|
|
2253
2259
|
...rest
|
|
2254
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2260
|
+
}: SvgIconProps & CustomSvgProps$77): JSX.Element;
|
|
2255
2261
|
//#endregion
|
|
2256
2262
|
//#region src/DesignTokens/Icons/Miscellaneous/BrainIconGradiant.d.ts
|
|
2257
|
-
interface CustomSvgProps$
|
|
2263
|
+
interface CustomSvgProps$76 {
|
|
2258
2264
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2259
2265
|
}
|
|
2260
2266
|
declare function BrainIconGradiant({
|
|
@@ -2263,10 +2269,10 @@ declare function BrainIconGradiant({
|
|
|
2263
2269
|
fill,
|
|
2264
2270
|
size,
|
|
2265
2271
|
...rest
|
|
2266
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2272
|
+
}: SvgIconProps & CustomSvgProps$76): JSX.Element;
|
|
2267
2273
|
//#endregion
|
|
2268
2274
|
//#region src/DesignTokens/Icons/Miscellaneous/BulbIcon.d.ts
|
|
2269
|
-
interface CustomSvgProps$
|
|
2275
|
+
interface CustomSvgProps$75 {
|
|
2270
2276
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2271
2277
|
}
|
|
2272
2278
|
declare function BulbIcon({
|
|
@@ -2275,10 +2281,10 @@ declare function BulbIcon({
|
|
|
2275
2281
|
fill,
|
|
2276
2282
|
size,
|
|
2277
2283
|
...rest
|
|
2278
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2284
|
+
}: SvgIconProps & CustomSvgProps$75): JSX.Element;
|
|
2279
2285
|
//#endregion
|
|
2280
2286
|
//#region src/DesignTokens/Icons/Miscellaneous/CalendarIcon.d.ts
|
|
2281
|
-
interface CustomSvgProps$
|
|
2287
|
+
interface CustomSvgProps$74 {
|
|
2282
2288
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2283
2289
|
}
|
|
2284
2290
|
declare function CalendarIcon({
|
|
@@ -2287,10 +2293,10 @@ declare function CalendarIcon({
|
|
|
2287
2293
|
fill,
|
|
2288
2294
|
size,
|
|
2289
2295
|
...rest
|
|
2290
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2296
|
+
}: SvgIconProps & CustomSvgProps$74): JSX.Element;
|
|
2291
2297
|
//#endregion
|
|
2292
2298
|
//#region src/DesignTokens/Icons/Miscellaneous/ChatBubbleIcon.d.ts
|
|
2293
|
-
interface CustomSvgProps$
|
|
2299
|
+
interface CustomSvgProps$73 {
|
|
2294
2300
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2295
2301
|
}
|
|
2296
2302
|
declare function ChatBubbleIcon({
|
|
@@ -2298,10 +2304,10 @@ declare function ChatBubbleIcon({
|
|
|
2298
2304
|
strokeWidth,
|
|
2299
2305
|
size,
|
|
2300
2306
|
...rest
|
|
2301
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2307
|
+
}: SvgIconProps & CustomSvgProps$73): JSX.Element;
|
|
2302
2308
|
//#endregion
|
|
2303
2309
|
//#region src/DesignTokens/Icons/Miscellaneous/ChatIcon.d.ts
|
|
2304
|
-
interface CustomSvgProps$
|
|
2310
|
+
interface CustomSvgProps$72 {
|
|
2305
2311
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2306
2312
|
}
|
|
2307
2313
|
declare function ChatIcon({
|
|
@@ -2310,10 +2316,10 @@ declare function ChatIcon({
|
|
|
2310
2316
|
fill,
|
|
2311
2317
|
size,
|
|
2312
2318
|
...rest
|
|
2313
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2319
|
+
}: SvgIconProps & CustomSvgProps$72): JSX.Element;
|
|
2314
2320
|
//#endregion
|
|
2315
2321
|
//#region src/DesignTokens/Icons/Miscellaneous/CheckoutIcon.d.ts
|
|
2316
|
-
interface CustomSvgProps$
|
|
2322
|
+
interface CustomSvgProps$71 {
|
|
2317
2323
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2318
2324
|
}
|
|
2319
2325
|
declare function CheckoutIcon({
|
|
@@ -2322,10 +2328,10 @@ declare function CheckoutIcon({
|
|
|
2322
2328
|
fill,
|
|
2323
2329
|
size,
|
|
2324
2330
|
...rest
|
|
2325
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2331
|
+
}: SvgIconProps & CustomSvgProps$71): JSX.Element;
|
|
2326
2332
|
//#endregion
|
|
2327
2333
|
//#region src/DesignTokens/Icons/Miscellaneous/ClipIcon.d.ts
|
|
2328
|
-
interface CustomSvgProps$
|
|
2334
|
+
interface CustomSvgProps$70 {
|
|
2329
2335
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2330
2336
|
}
|
|
2331
2337
|
declare function ClipIcon({
|
|
@@ -2334,10 +2340,10 @@ declare function ClipIcon({
|
|
|
2334
2340
|
fill,
|
|
2335
2341
|
size,
|
|
2336
2342
|
...rest
|
|
2337
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2343
|
+
}: SvgIconProps & CustomSvgProps$70): JSX.Element;
|
|
2338
2344
|
//#endregion
|
|
2339
2345
|
//#region src/DesignTokens/Icons/Miscellaneous/CloudUpload.d.ts
|
|
2340
|
-
interface CustomSvgProps$
|
|
2346
|
+
interface CustomSvgProps$69 {
|
|
2341
2347
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2342
2348
|
}
|
|
2343
2349
|
declare function CloudUpload({
|
|
@@ -2346,10 +2352,10 @@ declare function CloudUpload({
|
|
|
2346
2352
|
fill,
|
|
2347
2353
|
size,
|
|
2348
2354
|
...rest
|
|
2349
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2355
|
+
}: SvgIconProps & CustomSvgProps$69): JSX.Element;
|
|
2350
2356
|
//#endregion
|
|
2351
2357
|
//#region src/DesignTokens/Icons/Miscellaneous/ContentPenWriteIcon.d.ts
|
|
2352
|
-
interface CustomSvgProps$
|
|
2358
|
+
interface CustomSvgProps$68 {
|
|
2353
2359
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2354
2360
|
}
|
|
2355
2361
|
declare function ContentPenWriteIcon({
|
|
@@ -2358,10 +2364,10 @@ declare function ContentPenWriteIcon({
|
|
|
2358
2364
|
fill,
|
|
2359
2365
|
size,
|
|
2360
2366
|
...rest
|
|
2361
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2367
|
+
}: SvgIconProps & CustomSvgProps$68): JSX.Element;
|
|
2362
2368
|
//#endregion
|
|
2363
2369
|
//#region src/DesignTokens/Icons/Miscellaneous/CreditCardIcon.d.ts
|
|
2364
|
-
interface CustomSvgProps$
|
|
2370
|
+
interface CustomSvgProps$67 {
|
|
2365
2371
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2366
2372
|
}
|
|
2367
2373
|
declare function CreditCardIcon({
|
|
@@ -2370,10 +2376,10 @@ declare function CreditCardIcon({
|
|
|
2370
2376
|
fill,
|
|
2371
2377
|
size,
|
|
2372
2378
|
...rest
|
|
2373
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2379
|
+
}: SvgIconProps & CustomSvgProps$67): JSX.Element;
|
|
2374
2380
|
//#endregion
|
|
2375
2381
|
//#region src/DesignTokens/Icons/Miscellaneous/DisketteIcon.d.ts
|
|
2376
|
-
interface CustomSvgProps$
|
|
2382
|
+
interface CustomSvgProps$66 {
|
|
2377
2383
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2378
2384
|
}
|
|
2379
2385
|
declare function DisketteIcon({
|
|
@@ -2382,10 +2388,10 @@ declare function DisketteIcon({
|
|
|
2382
2388
|
fill,
|
|
2383
2389
|
size,
|
|
2384
2390
|
...rest
|
|
2385
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2391
|
+
}: SvgIconProps & CustomSvgProps$66): React.JSX.Element;
|
|
2386
2392
|
//#endregion
|
|
2387
2393
|
//#region src/DesignTokens/Icons/Miscellaneous/KeyIcon.d.ts
|
|
2388
|
-
interface CustomSvgProps$
|
|
2394
|
+
interface CustomSvgProps$65 {
|
|
2389
2395
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2390
2396
|
}
|
|
2391
2397
|
declare function KeyIcon$1({
|
|
@@ -2394,10 +2400,10 @@ declare function KeyIcon$1({
|
|
|
2394
2400
|
fill,
|
|
2395
2401
|
size,
|
|
2396
2402
|
...rest
|
|
2397
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2403
|
+
}: SvgIconProps & CustomSvgProps$65): React.JSX.Element;
|
|
2398
2404
|
//#endregion
|
|
2399
2405
|
//#region src/DesignTokens/Icons/Miscellaneous/DownloadIcon.d.ts
|
|
2400
|
-
interface CustomSvgProps$
|
|
2406
|
+
interface CustomSvgProps$64 {
|
|
2401
2407
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2402
2408
|
}
|
|
2403
2409
|
declare function DownloadIcon({
|
|
@@ -2406,10 +2412,10 @@ declare function DownloadIcon({
|
|
|
2406
2412
|
fill,
|
|
2407
2413
|
size,
|
|
2408
2414
|
...rest
|
|
2409
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2415
|
+
}: SvgIconProps & CustomSvgProps$64): JSX.Element;
|
|
2410
2416
|
//#endregion
|
|
2411
2417
|
//#region src/DesignTokens/Icons/Miscellaneous/EarthIcon.d.ts
|
|
2412
|
-
interface CustomSvgProps$
|
|
2418
|
+
interface CustomSvgProps$63 {
|
|
2413
2419
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2414
2420
|
}
|
|
2415
2421
|
declare function EarthIcon({
|
|
@@ -2418,10 +2424,10 @@ declare function EarthIcon({
|
|
|
2418
2424
|
fill,
|
|
2419
2425
|
size,
|
|
2420
2426
|
...rest
|
|
2421
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2427
|
+
}: SvgIconProps & CustomSvgProps$63): JSX.Element;
|
|
2422
2428
|
//#endregion
|
|
2423
2429
|
//#region src/DesignTokens/Icons/Miscellaneous/FaceCenterIcon.d.ts
|
|
2424
|
-
interface CustomSvgProps$
|
|
2430
|
+
interface CustomSvgProps$62 {
|
|
2425
2431
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2426
2432
|
}
|
|
2427
2433
|
declare function FaceCenterIcon({
|
|
@@ -2430,10 +2436,10 @@ declare function FaceCenterIcon({
|
|
|
2430
2436
|
fill,
|
|
2431
2437
|
size,
|
|
2432
2438
|
...rest
|
|
2433
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2439
|
+
}: SvgIconProps & CustomSvgProps$62): JSX.Element;
|
|
2434
2440
|
//#endregion
|
|
2435
2441
|
//#region src/DesignTokens/Icons/Miscellaneous/FaceRecognitionIcon.d.ts
|
|
2436
|
-
interface CustomSvgProps$
|
|
2442
|
+
interface CustomSvgProps$61 {
|
|
2437
2443
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2438
2444
|
}
|
|
2439
2445
|
declare function FaceRecognitionIcon({
|
|
@@ -2442,10 +2448,10 @@ declare function FaceRecognitionIcon({
|
|
|
2442
2448
|
fill,
|
|
2443
2449
|
size,
|
|
2444
2450
|
...rest
|
|
2445
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2451
|
+
}: SvgIconProps & CustomSvgProps$61): JSX.Element;
|
|
2446
2452
|
//#endregion
|
|
2447
2453
|
//#region src/DesignTokens/Icons/Miscellaneous/FilesIcon.d.ts
|
|
2448
|
-
interface CustomSvgProps$
|
|
2454
|
+
interface CustomSvgProps$60 {
|
|
2449
2455
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2450
2456
|
}
|
|
2451
2457
|
declare function FilesIcon({
|
|
@@ -2454,10 +2460,10 @@ declare function FilesIcon({
|
|
|
2454
2460
|
fill,
|
|
2455
2461
|
size,
|
|
2456
2462
|
...rest
|
|
2457
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2463
|
+
}: SvgIconProps & CustomSvgProps$60): JSX.Element;
|
|
2458
2464
|
//#endregion
|
|
2459
2465
|
//#region src/DesignTokens/Icons/Miscellaneous/FileUploadIcon.d.ts
|
|
2460
|
-
interface CustomSvgProps$
|
|
2466
|
+
interface CustomSvgProps$59 {
|
|
2461
2467
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2462
2468
|
}
|
|
2463
2469
|
declare function FileUploadIcon({
|
|
@@ -2466,10 +2472,10 @@ declare function FileUploadIcon({
|
|
|
2466
2472
|
fill,
|
|
2467
2473
|
size,
|
|
2468
2474
|
...rest
|
|
2469
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2475
|
+
}: SvgIconProps & CustomSvgProps$59): JSX.Element;
|
|
2470
2476
|
//#endregion
|
|
2471
2477
|
//#region src/DesignTokens/Icons/Miscellaneous/FilledTaskIcon.d.ts
|
|
2472
|
-
interface CustomSvgProps$
|
|
2478
|
+
interface CustomSvgProps$58 {
|
|
2473
2479
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2474
2480
|
}
|
|
2475
2481
|
declare function FilledTaskIcon({
|
|
@@ -2478,10 +2484,10 @@ declare function FilledTaskIcon({
|
|
|
2478
2484
|
fill,
|
|
2479
2485
|
size,
|
|
2480
2486
|
...rest
|
|
2481
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2487
|
+
}: SvgIconProps & CustomSvgProps$58): JSX.Element;
|
|
2482
2488
|
//#endregion
|
|
2483
2489
|
//#region src/DesignTokens/Icons/Miscellaneous/FillRecordIcon.d.ts
|
|
2484
|
-
interface CustomSvgProps$
|
|
2490
|
+
interface CustomSvgProps$57 {
|
|
2485
2491
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2486
2492
|
}
|
|
2487
2493
|
declare function FillRecordIcon({
|
|
@@ -2490,10 +2496,10 @@ declare function FillRecordIcon({
|
|
|
2490
2496
|
fill,
|
|
2491
2497
|
size,
|
|
2492
2498
|
...rest
|
|
2493
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2499
|
+
}: SvgIconProps & CustomSvgProps$57): JSX.Element;
|
|
2494
2500
|
//#endregion
|
|
2495
2501
|
//#region src/DesignTokens/Icons/Miscellaneous/FlashIcon.d.ts
|
|
2496
|
-
interface CustomSvgProps$
|
|
2502
|
+
interface CustomSvgProps$56 {
|
|
2497
2503
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2498
2504
|
}
|
|
2499
2505
|
declare function FlashIcon({
|
|
@@ -2502,10 +2508,10 @@ declare function FlashIcon({
|
|
|
2502
2508
|
fill,
|
|
2503
2509
|
size,
|
|
2504
2510
|
...rest
|
|
2505
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2511
|
+
}: SvgIconProps & CustomSvgProps$56): JSX.Element;
|
|
2506
2512
|
//#endregion
|
|
2507
2513
|
//#region src/DesignTokens/Icons/Miscellaneous/FolderIcon.d.ts
|
|
2508
|
-
interface CustomSvgProps$
|
|
2514
|
+
interface CustomSvgProps$55 {
|
|
2509
2515
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2510
2516
|
}
|
|
2511
2517
|
declare function FolderIcon({
|
|
@@ -2514,10 +2520,10 @@ declare function FolderIcon({
|
|
|
2514
2520
|
fill,
|
|
2515
2521
|
size,
|
|
2516
2522
|
...rest
|
|
2517
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2523
|
+
}: SvgIconProps & CustomSvgProps$55): JSX.Element;
|
|
2518
2524
|
//#endregion
|
|
2519
2525
|
//#region src/DesignTokens/Icons/Miscellaneous/GoogleIcon.d.ts
|
|
2520
|
-
interface CustomSvgProps$
|
|
2526
|
+
interface CustomSvgProps$54 {
|
|
2521
2527
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2522
2528
|
}
|
|
2523
2529
|
declare function GoogleIcon({
|
|
@@ -2526,10 +2532,10 @@ declare function GoogleIcon({
|
|
|
2526
2532
|
fill,
|
|
2527
2533
|
size,
|
|
2528
2534
|
...rest
|
|
2529
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2535
|
+
}: SvgIconProps & CustomSvgProps$54): JSX.Element;
|
|
2530
2536
|
//#endregion
|
|
2531
2537
|
//#region src/DesignTokens/Icons/Miscellaneous/GroupIcon.d.ts
|
|
2532
|
-
interface CustomSvgProps$
|
|
2538
|
+
interface CustomSvgProps$53 {
|
|
2533
2539
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2534
2540
|
}
|
|
2535
2541
|
declare function GoogleIcon$1({
|
|
@@ -2538,10 +2544,10 @@ declare function GoogleIcon$1({
|
|
|
2538
2544
|
fill,
|
|
2539
2545
|
size,
|
|
2540
2546
|
...rest
|
|
2541
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2547
|
+
}: SvgIconProps & CustomSvgProps$53): JSX.Element;
|
|
2542
2548
|
//#endregion
|
|
2543
2549
|
//#region src/DesignTokens/Icons/Miscellaneous/HardDriveIcon.d.ts
|
|
2544
|
-
interface CustomSvgProps$
|
|
2550
|
+
interface CustomSvgProps$52 {
|
|
2545
2551
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2546
2552
|
}
|
|
2547
2553
|
declare function HardDriveIcon({
|
|
@@ -2550,10 +2556,10 @@ declare function HardDriveIcon({
|
|
|
2550
2556
|
fill,
|
|
2551
2557
|
size,
|
|
2552
2558
|
...rest
|
|
2553
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2559
|
+
}: SvgIconProps & CustomSvgProps$52): JSX.Element;
|
|
2554
2560
|
//#endregion
|
|
2555
2561
|
//#region src/DesignTokens/Icons/Miscellaneous/HeartIcon.d.ts
|
|
2556
|
-
interface CustomSvgProps$
|
|
2562
|
+
interface CustomSvgProps$51 {
|
|
2557
2563
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2558
2564
|
}
|
|
2559
2565
|
declare function HeartIcon({
|
|
@@ -2562,10 +2568,10 @@ declare function HeartIcon({
|
|
|
2562
2568
|
fill,
|
|
2563
2569
|
size,
|
|
2564
2570
|
...rest
|
|
2565
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2571
|
+
}: SvgIconProps & CustomSvgProps$51): JSX.Element;
|
|
2566
2572
|
//#endregion
|
|
2567
2573
|
//#region src/DesignTokens/Icons/Miscellaneous/HeartIconFilled.d.ts
|
|
2568
|
-
interface CustomSvgProps$
|
|
2574
|
+
interface CustomSvgProps$50 {
|
|
2569
2575
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2570
2576
|
}
|
|
2571
2577
|
declare function HeartIconFilled({
|
|
@@ -2574,10 +2580,10 @@ declare function HeartIconFilled({
|
|
|
2574
2580
|
fill,
|
|
2575
2581
|
size,
|
|
2576
2582
|
...rest
|
|
2577
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2583
|
+
}: SvgIconProps & CustomSvgProps$50): JSX.Element;
|
|
2578
2584
|
//#endregion
|
|
2579
2585
|
//#region src/DesignTokens/Icons/Miscellaneous/HelpIcon.d.ts
|
|
2580
|
-
interface CustomSvgProps$
|
|
2586
|
+
interface CustomSvgProps$49 {
|
|
2581
2587
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2582
2588
|
}
|
|
2583
2589
|
declare function HelpIcon({
|
|
@@ -2586,10 +2592,10 @@ declare function HelpIcon({
|
|
|
2586
2592
|
fill,
|
|
2587
2593
|
size,
|
|
2588
2594
|
...rest
|
|
2589
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2595
|
+
}: SvgIconProps & CustomSvgProps$49): JSX.Element;
|
|
2590
2596
|
//#endregion
|
|
2591
2597
|
//#region src/DesignTokens/Icons/Miscellaneous/HelpIconAlt.d.ts
|
|
2592
|
-
interface CustomSvgProps$
|
|
2598
|
+
interface CustomSvgProps$48 {
|
|
2593
2599
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2594
2600
|
}
|
|
2595
2601
|
declare function HelpIconAlt({
|
|
@@ -2598,10 +2604,10 @@ declare function HelpIconAlt({
|
|
|
2598
2604
|
fill,
|
|
2599
2605
|
size,
|
|
2600
2606
|
...rest
|
|
2601
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2607
|
+
}: SvgIconProps & CustomSvgProps$48): JSX.Element;
|
|
2602
2608
|
//#endregion
|
|
2603
2609
|
//#region src/DesignTokens/Icons/Miscellaneous/IosIcon.d.ts
|
|
2604
|
-
interface CustomSvgProps$
|
|
2610
|
+
interface CustomSvgProps$47 {
|
|
2605
2611
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2606
2612
|
backgroundFill?: string;
|
|
2607
2613
|
}
|
|
@@ -2613,10 +2619,10 @@ declare function IosIcon({
|
|
|
2613
2619
|
backgroundFill,
|
|
2614
2620
|
// Default background color to white
|
|
2615
2621
|
...rest
|
|
2616
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2622
|
+
}: SvgIconProps & CustomSvgProps$47): JSX.Element;
|
|
2617
2623
|
//#endregion
|
|
2618
2624
|
//#region src/DesignTokens/Icons/Miscellaneous/LanguageIcon.d.ts
|
|
2619
|
-
interface CustomSvgProps$
|
|
2625
|
+
interface CustomSvgProps$46 {
|
|
2620
2626
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2621
2627
|
}
|
|
2622
2628
|
declare function LanguageIcon({
|
|
@@ -2625,6 +2631,18 @@ declare function LanguageIcon({
|
|
|
2625
2631
|
fill,
|
|
2626
2632
|
size,
|
|
2627
2633
|
...rest
|
|
2634
|
+
}: SvgIconProps & CustomSvgProps$46): JSX.Element;
|
|
2635
|
+
//#endregion
|
|
2636
|
+
//#region src/DesignTokens/Icons/Miscellaneous/ColorSample.d.ts
|
|
2637
|
+
interface CustomSvgProps$45 {
|
|
2638
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2639
|
+
}
|
|
2640
|
+
declare function ColorSample({
|
|
2641
|
+
stroke,
|
|
2642
|
+
strokeWidth,
|
|
2643
|
+
fill,
|
|
2644
|
+
size,
|
|
2645
|
+
...rest
|
|
2628
2646
|
}: SvgIconProps & CustomSvgProps$45): JSX.Element;
|
|
2629
2647
|
//#endregion
|
|
2630
2648
|
//#region src/DesignTokens/Icons/Miscellaneous/ArrowsIcon.d.ts
|
|
@@ -5060,5 +5078,5 @@ declare const getIconSize: (size: "sm" | "base" | "lg" | "xl") => string;
|
|
|
5060
5078
|
*/
|
|
5061
5079
|
declare const getReadableTextColor: (backgroundColor: Colord) => string;
|
|
5062
5080
|
//#endregion
|
|
5063
|
-
export { AI_UserTest, Accordion, AccountIcon, AccountIconMksite, AddCircledIcon, AddIcon, AddSeatIcon, AddTagIcon, AddUsersIcon, AgendaIcon, AlamBellIdleIcon, AlarmBellStatusIcon, AlertCircledIcon, AndroidIcon, AngryIntervieweeFemale, AnonymizeIcon, AppStoreBadge, AppWindowPieIcon, ArchiveIcon, ArrowDoubleLineDownIcon, ArrowDoubleLineLeftIcon, ArrowDoubleLineRightIcon, ArrowDoubleLineUpIcon, ArrowFilledDownIcon, ArrowFilledLeftIcon, ArrowFilledRightIcon, ArrowFilledUpIcon, ArrowLineDowIcon as ArrowLineDownIcon, ArrowLineLeftIcon, ArrowLineRightIcon, ArrowLineUpIcon, ArrowPointerDown, ArrowPointerDownLeft, ArrowPointerDownRight, ArrowPointerLeft, ArrowPointerRight, ArrowPointerUp, ArrowPointerUpLeft, ArrowPointerUpRight, ArrowsIcon, Avatar, Badge, Banner, BigEmojisAnimation, BillPdfIcon, BillingIcon, BinIcon, BinocularIcon, Blog, BookFlipPageIcon, Box, BrainIcon, BrainIconGradiant, BulbIcon, Button, ButtonProps, CalendarIcon, CameraIcon, Caption, Card, CardButton, CardButtonProps, CardProps, ChatBubbleIcon, ChatIcon, ChatInput, ChatMessage, ChatMessageProps, Checkbox, CheckedCircled, CheckedIcon, CheckedIconThin, CheckoutIcon, CircledIconButton, CircledIconButtonProps, ClipIcon, ClockIcon, CloseIcon, CloudUpload, Cluster, ClusterProps, CogIcon, ColorPicker, ConfusedInterviewee, ConfusedIntervieweeFemale, ContentPenWriteIcon, ControlsBar, ControlsBarProps, ConversationIdleIcon, ConversationStatusIcon, CopyPasteIcon, CreditCardIcon, CutClipIcon, DashedArrow, DataProtectionDisclaimer, DatePicker, DatePickerProps, DateTimePicker, DateTimePickerProps, DisketteIcon, DownloadIcon, DragDropIcon, EarthIcon, EditIcon, EditTextIcon, EmotionsHeatMap, EndRecording, EndRecordingProps, ExpandIcon, FaceCenterIcon, FaceRecognitionIcon, Faq, FeaturesTable, FileInput, FileUploadIcon, FilesIcon, FillRecordIcon, FilledTaskIcon, FilterIcon, FlashIcon, FlyingDudeAnimation, FolderIcon, FormQuestions, GoogleIcon, GoogleIcon$1 as GroupIcon, HangUpIcon, HappyMen, HappyRobotAnimation, HardDriveIcon, HeartIcon, HeartIconFilled, HelpIcon, HelpIconAlt, HistoryIcon, IconButton, IconButtonProps, InfoCircledIcon, InputElementProps, IntegratedUsabilityScore, KeyIcon as InteractionKeyIcon, InterviewButton, InterviewButtonProps, InterviewTranscript, InterviewTranscriptGreen, IosIcon, KeyIcon$1 as KeyIcon, LanguageIcon, LaptopIcon, LaughingIntervieweeMale, LayoutIcon, LayoutLeftIcon, LayoutRightIcon, Link, LinkIcon, LinkedInIcon, ListToDoIcon, LockIcon, LogoBeta, LogoBlack, LogoBlue, LogoNormal, LogoSlider, LogoSliderProps, LogoSmall, LogoSquare, LogoText, LogoWhite, LogoutIcon, MailIcon, MarkUpBar, MarkUpBarProps, MeetingIcon, MenShowingSomething, MenuHorizontalIcon, MenuVerticalIcon, MessagesBubbleSquareQuestionIcon, MetaAnalyse, MetaAnalyse2, MetaAnalyseIcon, MicrophoneIcon, MicrophonePodcastIcon, MinusCircledIcon, MinusIcon, MksiteButton, MksiteButtonProps, MobileIcon, Modal, ModeratedIcon, MoveBackIcon, MoveInIcon, MultiSelect, MultiSelectWithCategories, MultiSelectWithoutFilter, MultipleUsersIcon, MuteIcon, NavigationCircledIcon, NbOfUsersIcon, NeutralBackgroudIcon, NewLoaderAnimation, NoCameraIcon, NoMicrophoneIcon, Non_Moderated, NotifAlertIcon, NotificationIcon, NumberField, NumbersCode, NumbersCodeProps, OdaAccountPro, OdaFeatures, OdaWaiting, OfficeDrawerIcon, OneColumnIcon, OtherTab, PaintingPaletteIcon, Partner1 as Partner1SVG, Partner2 as Partner2SVG, Partner3 as Partner3SVG, Partner4 as Partner4SVG, Partner5 as Partner5SVG, Partner6 as Partner6SVG, Partner7 as Partner7SVG, Partner8 as Partner8SVG, Partner9 as Partner9SVG, PasswordField, PauseIcon, PdfReport, PencilWriteIcon, PlayFillIcon, PlayIcon, PlayStoreBadge, PointingMan, PopoverBeta, PreviousIcon, PricingCard, PricingCheckedIcon, ProjectSvg as ProjectHoverSvg, ProjectSvg$1 as ProjectSvg, QuestionButton, QuestionCircledIcon, QuoteIcon, Radio, RatingScale, RecordIcon, RecordingAnimation, RecordingIcon, RecordingWhiteAnimation, RefreshIcon, RefusedIcon, RemoveCircledIcon, ReportIcon, RespondentLogo, RessourcesAnimation, RobotAnimation, RobotIcon, RoleIcon, SadInterviewee, Scenario, ScenarioProps, ScheduleTasks, ScreenShareIcon, Search, SearchCircledIcon, SearchIcon, SearchRemoveIcon, SeatIcon, SelfProtocolManager, SelfProtocolManagerProps, SendEmailIcon, SendIcon, Sentiment, SettingsCircledIcon, SettingsSliderIcon, ShareIcon, SingleSelect, SingleSelectWithCategories, SingleSelectWithoutFilter, Slider, SmartBrainIcon, SortingIcon, SortingIconZA, SoundInputAnimation, SquareText, StarFilledIcon, StarIcon, StarRating, StopRecordingIcon as StopRecordIcon, Success, SurprisedInterviewee, SusExplanation, SusExplanationProps, Switch, Table, TableCell, TableFooter, TableHeader, TableRows, Tabs, TabsUnderline, Tag, TagAddIcon, TagEditIcon, TagIcon, TagRemoveIcon, Task, TaskIcon, TaskProps, TeamIcon, TestDetailsIcon, TestIcon, TestimonialAnimation, Text, TextForButton, TextForDropDownItem, TextInput, TextWithLink, Textarea, Thematic, ThematicProps, ThreeColumnIcon, TimeInterval, TimeIntervalProps, TimePicker, TimePickerProps, Title, Toast, ToggleTab, Tooltip, TvFlatScreenIcon, TvIcon, TwoColumnIcon, UnLockIcon, UndoIcon, UnhappyIntervieweeMale, UnlockedIcon, UnmoderatedIcon, UsabilityBrowser, UserFlows, UserIndicator, UserPanel, UxGuide, VideoFlag, VideoFlag2, VideoFlagGreen, ViewIcon, ViewOffIcon, VoiceIcon, VolumeIcon, WaitingMen, WalletIcon, WarningIcon, WelcomeMessage, WelcomeMessageProps, changeColorLuminance, colors, getColor, getIconSize, getReadableTextColor };
|
|
5081
|
+
export { AI_UserTest, Accordion, AccountIcon, AccountIconMksite, AddCircledIcon, AddIcon, AddSeatIcon, AddTagIcon, AddUsersIcon, AgendaIcon, AlamBellIdleIcon, AlarmBellStatusIcon, AlertCircledIcon, AndroidIcon, AngryIntervieweeFemale, AnonymizeIcon, AppStoreBadge, AppWindowPieIcon, ArchiveIcon, ArrowDoubleLineDownIcon, ArrowDoubleLineLeftIcon, ArrowDoubleLineRightIcon, ArrowDoubleLineUpIcon, ArrowFilledDownIcon, ArrowFilledLeftIcon, ArrowFilledRightIcon, ArrowFilledUpIcon, ArrowLineDowIcon as ArrowLineDownIcon, ArrowLineLeftIcon, ArrowLineRightIcon, ArrowLineUpIcon, ArrowPointerDown, ArrowPointerDownLeft, ArrowPointerDownRight, ArrowPointerLeft, ArrowPointerRight, ArrowPointerUp, ArrowPointerUpLeft, ArrowPointerUpRight, ArrowsIcon, Avatar, Badge, Banner, BigEmojisAnimation, BillPdfIcon, BillingIcon, BinIcon, BinocularIcon, Blog, BookFlipPageIcon, Box, BrainIcon, BrainIconGradiant, BulbIcon, Button, ButtonProps, CalendarIcon, CameraIcon, Caption, Card, CardButton, CardButtonProps, CardProps, ChatBubbleIcon, ChatIcon, ChatInput, ChatMessage, ChatMessageProps, Checkbox, CheckedCircled, CheckedIcon, CheckedIconThin, CheckoutIcon, CircledIconButton, CircledIconButtonProps, ClipIcon, ClockIcon, CloseIcon, CloudUpload, Cluster, ClusterProps, CogIcon, ColorPicker, ColorSample, ConfusedInterviewee, ConfusedIntervieweeFemale, ContentPenWriteIcon, ControlsBar, ControlsBarProps, ConversationIdleIcon, ConversationStatusIcon, CopyPasteIcon, CreditCardIcon, CutClipIcon, DashedArrow, DataProtectionDisclaimer, DatePicker, DatePickerProps, DateTimePicker, DateTimePickerProps, DisketteIcon, DownloadIcon, DragDropIcon, EarthIcon, EditIcon, EditTextIcon, EmotionsHeatMap, EndRecording, EndRecordingProps, ExpandIcon, FaceCenterIcon, FaceRecognitionIcon, Faq, FeaturesTable, FileInput, FileUploadIcon, FilesIcon, FillRecordIcon, FilledTaskIcon, FilterIcon, FlashIcon, FlyingDudeAnimation, FolderIcon, FormQuestions, GoogleIcon, GoogleIcon$1 as GroupIcon, HangUpIcon, HappyMen, HappyRobotAnimation, HardDriveIcon, HeartIcon, HeartIconFilled, HelpIcon, HelpIconAlt, HistoryIcon, IconButton, IconButtonProps, InfoCircledIcon, InputElementProps, IntegratedUsabilityScore, KeyIcon as InteractionKeyIcon, InterviewButton, InterviewButtonProps, InterviewTranscript, InterviewTranscriptGreen, IosIcon, KeyIcon$1 as KeyIcon, LanguageIcon, LaptopIcon, LaughingIntervieweeMale, LayoutIcon, LayoutLeftIcon, LayoutRightIcon, Link, LinkIcon, LinkedInIcon, ListToDoIcon, LockIcon, LogoBeta, LogoBlack, LogoBlue, LogoNormal, LogoSlider, LogoSliderProps, LogoSmall, LogoSquare, LogoText, LogoWhite, LogoutIcon, MailIcon, MarkUpBar, MarkUpBarProps, MeetingIcon, MenShowingSomething, MenuHorizontalIcon, MenuVerticalIcon, MessagesBubbleSquareQuestionIcon, MetaAnalyse, MetaAnalyse2, MetaAnalyseIcon, MicrophoneIcon, MicrophonePodcastIcon, MinusCircledIcon, MinusIcon, MksiteButton, MksiteButtonProps, MobileIcon, Modal, ModeratedIcon, MoveBackIcon, MoveInIcon, MultiSelect, MultiSelectWithCategories, MultiSelectWithoutFilter, MultipleUsersIcon, MuteIcon, NavigationCircledIcon, NbOfUsersIcon, NeutralBackgroudIcon, NewLoaderAnimation, NoCameraIcon, NoMicrophoneIcon, Non_Moderated, NotifAlertIcon, NotificationIcon, NumberField, NumbersCode, NumbersCodeProps, OdaAccountPro, OdaFeatures, OdaWaiting, OfficeDrawerIcon, OneColumnIcon, OtherTab, PaintingPaletteIcon, Partner1 as Partner1SVG, Partner2 as Partner2SVG, Partner3 as Partner3SVG, Partner4 as Partner4SVG, Partner5 as Partner5SVG, Partner6 as Partner6SVG, Partner7 as Partner7SVG, Partner8 as Partner8SVG, Partner9 as Partner9SVG, PasswordField, PauseIcon, PdfReport, PencilWriteIcon, PlayFillIcon, PlayIcon, PlayStoreBadge, PointingMan, PopoverBeta, PreviousIcon, PricingCard, PricingCheckedIcon, ProjectSvg as ProjectHoverSvg, ProjectSvg$1 as ProjectSvg, QuestionButton, QuestionCircledIcon, QuoteIcon, Radio, RatingScale, RecordIcon, RecordingAnimation, RecordingIcon, RecordingWhiteAnimation, RefreshIcon, RefusedIcon, RemoveCircledIcon, ReportIcon, RespondentLogo, RessourcesAnimation, RobotAnimation, RobotIcon, RoleIcon, SadInterviewee, Scenario, ScenarioProps, ScheduleTasks, ScreenShareIcon, Search, SearchCircledIcon, SearchIcon, SearchRemoveIcon, SeatIcon, SelfProtocolManager, SelfProtocolManagerProps, SendEmailIcon, SendIcon, Sentiment, SettingsCircledIcon, SettingsSliderIcon, ShareIcon, SingleSelect, SingleSelectWithCategories, SingleSelectWithoutFilter, Slider, SmartBrainIcon, SortingIcon, SortingIconZA, SoundInputAnimation, SquareText, StarFilledIcon, StarIcon, StarRating, StopRecordingIcon as StopRecordIcon, Success, SurprisedInterviewee, SusExplanation, SusExplanationProps, Switch, Table, TableCell, TableFooter, TableHeader, TableRows, Tabs, TabsUnderline, Tag, TagAddIcon, TagEditIcon, TagIcon, TagRemoveIcon, Task, TaskIcon, TaskProps, TeamIcon, TestDetailsIcon, TestIcon, TestimonialAnimation, Text, TextForButton, TextForDropDownItem, TextInput, TextWithLink, Textarea, Thematic, ThematicProps, ThreeColumnIcon, TimeInterval, TimeIntervalProps, TimePicker, TimePickerProps, Title, Toast, ToggleTab, Tooltip, TvFlatScreenIcon, TvIcon, TwoColumnIcon, UnLockIcon, UndoIcon, UnhappyIntervieweeMale, UnlockedIcon, UnmoderatedIcon, UsabilityBrowser, UserFlows, UserIndicator, UserPanel, UxGuide, VideoFlag, VideoFlag2, VideoFlagGreen, ViewIcon, ViewOffIcon, VoiceIcon, VolumeIcon, WaitingMen, WalletIcon, WarningIcon, WelcomeMessage, WelcomeMessageProps, changeColorLuminance, colors, getColor, getIconSize, getReadableTextColor };
|
|
5064
5082
|
//# sourceMappingURL=index.d.cts.map
|