odaptos_design_system 2.0.341 → 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 +870 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +413 -339
- package/dist/index.d.ts +413 -339
- package/dist/index.js +865 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -369,7 +369,7 @@ interface TagProps$1 extends HTMLAttributes<HTMLDivElement> {
|
|
|
369
369
|
text: string;
|
|
370
370
|
id?: string;
|
|
371
371
|
status?: 'idle' | 'success' | 'info' | 'warning' | 'critical' | 'light' | 'violet';
|
|
372
|
-
size?: 'sm' | 'base';
|
|
372
|
+
size?: 'sm' | 'base' | 'lg';
|
|
373
373
|
iconLeft?: JSX.Element;
|
|
374
374
|
iconRight?: JSX.Element;
|
|
375
375
|
amountNumber?: number | undefined;
|
|
@@ -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({
|
|
@@ -1156,6 +1162,14 @@ declare function IntegratedUsabilityScore({
|
|
|
1156
1162
|
...rest
|
|
1157
1163
|
}: SvgIconProps): JSX.Element;
|
|
1158
1164
|
//#endregion
|
|
1165
|
+
//#region src/DesignTokens/Icons/Illustrations/PdfReport.d.ts
|
|
1166
|
+
declare function PdfReport({
|
|
1167
|
+
stroke,
|
|
1168
|
+
strokeWidth,
|
|
1169
|
+
fill,
|
|
1170
|
+
...rest
|
|
1171
|
+
}: SvgIconProps): JSX.Element;
|
|
1172
|
+
//#endregion
|
|
1159
1173
|
//#region src/DesignTokens/Icons/Illustrations/InterviewTranscript.d.ts
|
|
1160
1174
|
declare function InterviewTranscript({
|
|
1161
1175
|
...rest
|
|
@@ -1306,7 +1320,7 @@ declare function WaitingMen({
|
|
|
1306
1320
|
}: SvgIconProps): JSX.Element;
|
|
1307
1321
|
//#endregion
|
|
1308
1322
|
//#region src/DesignTokens/Icons/Interaction/AccountIcon.d.ts
|
|
1309
|
-
interface CustomSvgProps$
|
|
1323
|
+
interface CustomSvgProps$149 {
|
|
1310
1324
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1311
1325
|
}
|
|
1312
1326
|
declare function AccountIcon({
|
|
@@ -1315,10 +1329,10 @@ declare function AccountIcon({
|
|
|
1315
1329
|
fill,
|
|
1316
1330
|
size,
|
|
1317
1331
|
...rest
|
|
1318
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1332
|
+
}: SvgIconProps & CustomSvgProps$149): JSX.Element;
|
|
1319
1333
|
//#endregion
|
|
1320
1334
|
//#region src/DesignTokens/Icons/Interaction/AccountIconMksite.d.ts
|
|
1321
|
-
interface CustomSvgProps$
|
|
1335
|
+
interface CustomSvgProps$148 {
|
|
1322
1336
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1323
1337
|
}
|
|
1324
1338
|
declare function AccountIconMksite({
|
|
@@ -1327,10 +1341,10 @@ declare function AccountIconMksite({
|
|
|
1327
1341
|
fill,
|
|
1328
1342
|
size,
|
|
1329
1343
|
...rest
|
|
1330
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1344
|
+
}: SvgIconProps & CustomSvgProps$148): JSX.Element;
|
|
1331
1345
|
//#endregion
|
|
1332
1346
|
//#region src/DesignTokens/Icons/Interaction/KeyIcon.d.ts
|
|
1333
|
-
interface CustomSvgProps$
|
|
1347
|
+
interface CustomSvgProps$147 {
|
|
1334
1348
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1335
1349
|
}
|
|
1336
1350
|
declare function KeyIcon({
|
|
@@ -1339,10 +1353,10 @@ declare function KeyIcon({
|
|
|
1339
1353
|
fill,
|
|
1340
1354
|
size,
|
|
1341
1355
|
...rest
|
|
1342
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1356
|
+
}: SvgIconProps & CustomSvgProps$147): JSX.Element;
|
|
1343
1357
|
//#endregion
|
|
1344
1358
|
//#region src/DesignTokens/Icons/Interaction/MailIcon.d.ts
|
|
1345
|
-
interface CustomSvgProps$
|
|
1359
|
+
interface CustomSvgProps$146 {
|
|
1346
1360
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1347
1361
|
}
|
|
1348
1362
|
declare function MailIcon({
|
|
@@ -1351,10 +1365,10 @@ declare function MailIcon({
|
|
|
1351
1365
|
fill,
|
|
1352
1366
|
size,
|
|
1353
1367
|
...rest
|
|
1354
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1368
|
+
}: SvgIconProps & CustomSvgProps$146): JSX.Element;
|
|
1355
1369
|
//#endregion
|
|
1356
1370
|
//#region src/DesignTokens/Icons/Interaction/RoleIcon.d.ts
|
|
1357
|
-
interface CustomSvgProps$
|
|
1371
|
+
interface CustomSvgProps$145 {
|
|
1358
1372
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1359
1373
|
}
|
|
1360
1374
|
declare function RoleIcon({
|
|
@@ -1363,10 +1377,10 @@ declare function RoleIcon({
|
|
|
1363
1377
|
fill,
|
|
1364
1378
|
size,
|
|
1365
1379
|
...rest
|
|
1366
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1380
|
+
}: SvgIconProps & CustomSvgProps$145): JSX.Element;
|
|
1367
1381
|
//#endregion
|
|
1368
1382
|
//#region src/DesignTokens/Icons/Interaction/AddIcon.d.ts
|
|
1369
|
-
interface CustomSvgProps$
|
|
1383
|
+
interface CustomSvgProps$144 {
|
|
1370
1384
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1371
1385
|
}
|
|
1372
1386
|
declare function AddIcon({
|
|
@@ -1375,10 +1389,10 @@ declare function AddIcon({
|
|
|
1375
1389
|
fill,
|
|
1376
1390
|
size,
|
|
1377
1391
|
...rest
|
|
1378
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1392
|
+
}: SvgIconProps & CustomSvgProps$144): JSX.Element;
|
|
1379
1393
|
//#endregion
|
|
1380
1394
|
//#region src/DesignTokens/Icons/Interaction/AddTagIcon.d.ts
|
|
1381
|
-
interface CustomSvgProps$
|
|
1395
|
+
interface CustomSvgProps$143 {
|
|
1382
1396
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1383
1397
|
}
|
|
1384
1398
|
declare function AddTagIcon({
|
|
@@ -1387,10 +1401,10 @@ declare function AddTagIcon({
|
|
|
1387
1401
|
fill,
|
|
1388
1402
|
size,
|
|
1389
1403
|
...rest
|
|
1390
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1404
|
+
}: SvgIconProps & CustomSvgProps$143): JSX.Element;
|
|
1391
1405
|
//#endregion
|
|
1392
1406
|
//#region src/DesignTokens/Icons/Interaction/AgendaIcon.d.ts
|
|
1393
|
-
interface CustomSvgProps$
|
|
1407
|
+
interface CustomSvgProps$142 {
|
|
1394
1408
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1395
1409
|
}
|
|
1396
1410
|
declare function AgendaIcon({
|
|
@@ -1399,10 +1413,10 @@ declare function AgendaIcon({
|
|
|
1399
1413
|
fill,
|
|
1400
1414
|
size,
|
|
1401
1415
|
...rest
|
|
1402
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1416
|
+
}: SvgIconProps & CustomSvgProps$142): JSX.Element;
|
|
1403
1417
|
//#endregion
|
|
1404
1418
|
//#region src/DesignTokens/Icons/Interaction/BillingIcon.d.ts
|
|
1405
|
-
interface CustomSvgProps$
|
|
1419
|
+
interface CustomSvgProps$141 {
|
|
1406
1420
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1407
1421
|
}
|
|
1408
1422
|
declare function BillingIcon({
|
|
@@ -1411,10 +1425,10 @@ declare function BillingIcon({
|
|
|
1411
1425
|
fill,
|
|
1412
1426
|
size,
|
|
1413
1427
|
...rest
|
|
1414
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1428
|
+
}: SvgIconProps & CustomSvgProps$141): JSX.Element;
|
|
1415
1429
|
//#endregion
|
|
1416
1430
|
//#region src/DesignTokens/Icons/Interaction/BinIcon.d.ts
|
|
1417
|
-
interface CustomSvgProps$
|
|
1431
|
+
interface CustomSvgProps$140 {
|
|
1418
1432
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1419
1433
|
}
|
|
1420
1434
|
declare function BinIcon({
|
|
@@ -1423,10 +1437,10 @@ declare function BinIcon({
|
|
|
1423
1437
|
fill,
|
|
1424
1438
|
size,
|
|
1425
1439
|
...rest
|
|
1426
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1440
|
+
}: SvgIconProps & CustomSvgProps$140): JSX.Element;
|
|
1427
1441
|
//#endregion
|
|
1428
1442
|
//#region src/DesignTokens/Icons/Interaction/CheckedIcon.d.ts
|
|
1429
|
-
interface CustomSvgProps$
|
|
1443
|
+
interface CustomSvgProps$139 {
|
|
1430
1444
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1431
1445
|
}
|
|
1432
1446
|
declare function CheckedIcon({
|
|
@@ -1435,10 +1449,10 @@ declare function CheckedIcon({
|
|
|
1435
1449
|
fill,
|
|
1436
1450
|
size,
|
|
1437
1451
|
...rest
|
|
1438
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1452
|
+
}: SvgIconProps & CustomSvgProps$139): JSX.Element;
|
|
1439
1453
|
//#endregion
|
|
1440
1454
|
//#region src/DesignTokens/Icons/Interaction/CheckedIconThin.d.ts
|
|
1441
|
-
interface CustomSvgProps$
|
|
1455
|
+
interface CustomSvgProps$138 {
|
|
1442
1456
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1443
1457
|
}
|
|
1444
1458
|
declare function CheckedIconThin({
|
|
@@ -1447,10 +1461,10 @@ declare function CheckedIconThin({
|
|
|
1447
1461
|
fill,
|
|
1448
1462
|
size,
|
|
1449
1463
|
...rest
|
|
1450
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1464
|
+
}: SvgIconProps & CustomSvgProps$138): JSX.Element;
|
|
1451
1465
|
//#endregion
|
|
1452
1466
|
//#region src/DesignTokens/Icons/Interaction/ClockIcon.d.ts
|
|
1453
|
-
interface CustomSvgProps$
|
|
1467
|
+
interface CustomSvgProps$137 {
|
|
1454
1468
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1455
1469
|
}
|
|
1456
1470
|
declare function ClockIcon({
|
|
@@ -1459,10 +1473,10 @@ declare function ClockIcon({
|
|
|
1459
1473
|
fill,
|
|
1460
1474
|
size,
|
|
1461
1475
|
...rest
|
|
1462
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1476
|
+
}: SvgIconProps & CustomSvgProps$137): JSX.Element;
|
|
1463
1477
|
//#endregion
|
|
1464
1478
|
//#region src/DesignTokens/Icons/Interaction/CloseIcon.d.ts
|
|
1465
|
-
interface CustomSvgProps$
|
|
1479
|
+
interface CustomSvgProps$136 {
|
|
1466
1480
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1467
1481
|
}
|
|
1468
1482
|
declare function CloseIcon({
|
|
@@ -1471,10 +1485,10 @@ declare function CloseIcon({
|
|
|
1471
1485
|
fill,
|
|
1472
1486
|
size,
|
|
1473
1487
|
...rest
|
|
1474
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1488
|
+
}: SvgIconProps & CustomSvgProps$136): JSX.Element;
|
|
1475
1489
|
//#endregion
|
|
1476
1490
|
//#region src/DesignTokens/Icons/Interaction/CogIcon.d.ts
|
|
1477
|
-
interface CustomSvgProps$
|
|
1491
|
+
interface CustomSvgProps$135 {
|
|
1478
1492
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1479
1493
|
}
|
|
1480
1494
|
declare function CogIcon({
|
|
@@ -1483,10 +1497,10 @@ declare function CogIcon({
|
|
|
1483
1497
|
fill,
|
|
1484
1498
|
size,
|
|
1485
1499
|
...rest
|
|
1486
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1500
|
+
}: SvgIconProps & CustomSvgProps$135): JSX.Element;
|
|
1487
1501
|
//#endregion
|
|
1488
1502
|
//#region src/DesignTokens/Icons/Interaction/CopyPasteIcon.d.ts
|
|
1489
|
-
interface CustomSvgProps$
|
|
1503
|
+
interface CustomSvgProps$134 {
|
|
1490
1504
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1491
1505
|
}
|
|
1492
1506
|
declare function CopyPasteIcon({
|
|
@@ -1495,10 +1509,10 @@ declare function CopyPasteIcon({
|
|
|
1495
1509
|
fill,
|
|
1496
1510
|
size,
|
|
1497
1511
|
...rest
|
|
1498
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1512
|
+
}: SvgIconProps & CustomSvgProps$134): JSX.Element;
|
|
1499
1513
|
//#endregion
|
|
1500
1514
|
//#region src/DesignTokens/Icons/Interaction/DragDropIcon.d.ts
|
|
1501
|
-
interface CustomSvgProps$
|
|
1515
|
+
interface CustomSvgProps$133 {
|
|
1502
1516
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1503
1517
|
}
|
|
1504
1518
|
declare function DragDropIcon({
|
|
@@ -1507,10 +1521,10 @@ declare function DragDropIcon({
|
|
|
1507
1521
|
fill,
|
|
1508
1522
|
size,
|
|
1509
1523
|
...rest
|
|
1510
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1524
|
+
}: SvgIconProps & CustomSvgProps$133): JSX.Element;
|
|
1511
1525
|
//#endregion
|
|
1512
1526
|
//#region src/DesignTokens/Icons/Interaction/EditIcon.d.ts
|
|
1513
|
-
interface CustomSvgProps$
|
|
1527
|
+
interface CustomSvgProps$132 {
|
|
1514
1528
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1515
1529
|
}
|
|
1516
1530
|
declare function EditIcon({
|
|
@@ -1519,10 +1533,10 @@ declare function EditIcon({
|
|
|
1519
1533
|
fill,
|
|
1520
1534
|
size,
|
|
1521
1535
|
...rest
|
|
1522
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1536
|
+
}: SvgIconProps & CustomSvgProps$132): JSX.Element;
|
|
1523
1537
|
//#endregion
|
|
1524
1538
|
//#region src/DesignTokens/Icons/Interaction/EditTextIcon.d.ts
|
|
1525
|
-
interface CustomSvgProps$
|
|
1539
|
+
interface CustomSvgProps$131 {
|
|
1526
1540
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1527
1541
|
}
|
|
1528
1542
|
declare function EditTextIcon({
|
|
@@ -1531,10 +1545,10 @@ declare function EditTextIcon({
|
|
|
1531
1545
|
fill,
|
|
1532
1546
|
size,
|
|
1533
1547
|
...rest
|
|
1534
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1548
|
+
}: SvgIconProps & CustomSvgProps$131): JSX.Element;
|
|
1535
1549
|
//#endregion
|
|
1536
1550
|
//#region src/DesignTokens/Icons/Interaction/FilterIcon.d.ts
|
|
1537
|
-
interface CustomSvgProps$
|
|
1551
|
+
interface CustomSvgProps$130 {
|
|
1538
1552
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1539
1553
|
}
|
|
1540
1554
|
declare function FilterIcon({
|
|
@@ -1543,10 +1557,10 @@ declare function FilterIcon({
|
|
|
1543
1557
|
fill,
|
|
1544
1558
|
size,
|
|
1545
1559
|
...rest
|
|
1546
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1560
|
+
}: SvgIconProps & CustomSvgProps$130): JSX.Element;
|
|
1547
1561
|
//#endregion
|
|
1548
1562
|
//#region src/DesignTokens/Icons/Interaction/LayoutIcon.d.ts
|
|
1549
|
-
interface CustomSvgProps$
|
|
1563
|
+
interface CustomSvgProps$129 {
|
|
1550
1564
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1551
1565
|
}
|
|
1552
1566
|
declare function LayoutIcon({
|
|
@@ -1555,10 +1569,10 @@ declare function LayoutIcon({
|
|
|
1555
1569
|
fill,
|
|
1556
1570
|
size,
|
|
1557
1571
|
...rest
|
|
1558
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1572
|
+
}: SvgIconProps & CustomSvgProps$129): JSX.Element;
|
|
1559
1573
|
//#endregion
|
|
1560
1574
|
//#region src/DesignTokens/Icons/Interaction/LayoutLeftIcon.d.ts
|
|
1561
|
-
interface CustomSvgProps$
|
|
1575
|
+
interface CustomSvgProps$128 {
|
|
1562
1576
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1563
1577
|
}
|
|
1564
1578
|
declare function LayoutLeftIcon({
|
|
@@ -1567,10 +1581,10 @@ declare function LayoutLeftIcon({
|
|
|
1567
1581
|
fill,
|
|
1568
1582
|
size,
|
|
1569
1583
|
...rest
|
|
1570
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1584
|
+
}: SvgIconProps & CustomSvgProps$128): JSX.Element;
|
|
1571
1585
|
//#endregion
|
|
1572
1586
|
//#region src/DesignTokens/Icons/Interaction/LayoutRightIcon.d.ts
|
|
1573
|
-
interface CustomSvgProps$
|
|
1587
|
+
interface CustomSvgProps$127 {
|
|
1574
1588
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1575
1589
|
}
|
|
1576
1590
|
declare function LayoutRightIcon({
|
|
@@ -1579,10 +1593,10 @@ declare function LayoutRightIcon({
|
|
|
1579
1593
|
fill,
|
|
1580
1594
|
size,
|
|
1581
1595
|
...rest
|
|
1582
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1596
|
+
}: SvgIconProps & CustomSvgProps$127): JSX.Element;
|
|
1583
1597
|
//#endregion
|
|
1584
1598
|
//#region src/DesignTokens/Icons/Interaction/LockIcon.d.ts
|
|
1585
|
-
interface CustomSvgProps$
|
|
1599
|
+
interface CustomSvgProps$126 {
|
|
1586
1600
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1587
1601
|
}
|
|
1588
1602
|
declare function LockIcon({
|
|
@@ -1591,10 +1605,10 @@ declare function LockIcon({
|
|
|
1591
1605
|
fill,
|
|
1592
1606
|
size,
|
|
1593
1607
|
...rest
|
|
1594
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1608
|
+
}: SvgIconProps & CustomSvgProps$126): JSX.Element;
|
|
1595
1609
|
//#endregion
|
|
1596
1610
|
//#region src/DesignTokens/Icons/Interaction/LogoutIcon.d.ts
|
|
1597
|
-
interface CustomSvgProps$
|
|
1611
|
+
interface CustomSvgProps$125 {
|
|
1598
1612
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1599
1613
|
}
|
|
1600
1614
|
declare function LogoutIcon({
|
|
@@ -1603,10 +1617,10 @@ declare function LogoutIcon({
|
|
|
1603
1617
|
fill,
|
|
1604
1618
|
size,
|
|
1605
1619
|
...rest
|
|
1606
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1620
|
+
}: SvgIconProps & CustomSvgProps$125): JSX.Element;
|
|
1607
1621
|
//#endregion
|
|
1608
1622
|
//#region src/DesignTokens/Icons/Interaction/MenuHorizontalIcon.d.ts
|
|
1609
|
-
interface CustomSvgProps$
|
|
1623
|
+
interface CustomSvgProps$124 {
|
|
1610
1624
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1611
1625
|
}
|
|
1612
1626
|
declare function MenuHorizontalIcon({
|
|
@@ -1615,10 +1629,10 @@ declare function MenuHorizontalIcon({
|
|
|
1615
1629
|
fill,
|
|
1616
1630
|
size,
|
|
1617
1631
|
...rest
|
|
1618
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1632
|
+
}: SvgIconProps & CustomSvgProps$124): JSX.Element;
|
|
1619
1633
|
//#endregion
|
|
1620
1634
|
//#region src/DesignTokens/Icons/Interaction/MenuVerticalIcon.d.ts
|
|
1621
|
-
interface CustomSvgProps$
|
|
1635
|
+
interface CustomSvgProps$123 {
|
|
1622
1636
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1623
1637
|
}
|
|
1624
1638
|
declare function MenuVerticalIcon({
|
|
@@ -1627,10 +1641,10 @@ declare function MenuVerticalIcon({
|
|
|
1627
1641
|
fill,
|
|
1628
1642
|
size,
|
|
1629
1643
|
...rest
|
|
1630
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1644
|
+
}: SvgIconProps & CustomSvgProps$123): JSX.Element;
|
|
1631
1645
|
//#endregion
|
|
1632
1646
|
//#region src/DesignTokens/Icons/Interaction/MinusIcon.d.ts
|
|
1633
|
-
interface CustomSvgProps$
|
|
1647
|
+
interface CustomSvgProps$122 {
|
|
1634
1648
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1635
1649
|
}
|
|
1636
1650
|
declare function MinusIcon({
|
|
@@ -1639,10 +1653,10 @@ declare function MinusIcon({
|
|
|
1639
1653
|
fill,
|
|
1640
1654
|
size,
|
|
1641
1655
|
...rest
|
|
1642
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1656
|
+
}: SvgIconProps & CustomSvgProps$122): JSX.Element;
|
|
1643
1657
|
//#endregion
|
|
1644
1658
|
//#region src/DesignTokens/Icons/Interaction/PencilWriteIcon.d.ts
|
|
1645
|
-
interface CustomSvgProps$
|
|
1659
|
+
interface CustomSvgProps$121 {
|
|
1646
1660
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1647
1661
|
}
|
|
1648
1662
|
declare function PencilWriteIcon({
|
|
@@ -1651,10 +1665,10 @@ declare function PencilWriteIcon({
|
|
|
1651
1665
|
fill,
|
|
1652
1666
|
size,
|
|
1653
1667
|
...rest
|
|
1654
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1668
|
+
}: SvgIconProps & CustomSvgProps$121): JSX.Element;
|
|
1655
1669
|
//#endregion
|
|
1656
1670
|
//#region src/DesignTokens/Icons/Interaction/PricingCheckedIcon.d.ts
|
|
1657
|
-
interface CustomSvgProps$
|
|
1671
|
+
interface CustomSvgProps$120 {
|
|
1658
1672
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1659
1673
|
}
|
|
1660
1674
|
declare function PricingCheckedIcon({
|
|
@@ -1663,10 +1677,10 @@ declare function PricingCheckedIcon({
|
|
|
1663
1677
|
fill,
|
|
1664
1678
|
size,
|
|
1665
1679
|
...rest
|
|
1666
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1680
|
+
}: SvgIconProps & CustomSvgProps$120): JSX.Element;
|
|
1667
1681
|
//#endregion
|
|
1668
1682
|
//#region src/DesignTokens/Icons/Interaction/SearchIcon.d.ts
|
|
1669
|
-
interface CustomSvgProps$
|
|
1683
|
+
interface CustomSvgProps$119 {
|
|
1670
1684
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1671
1685
|
}
|
|
1672
1686
|
declare function SearchIcon({
|
|
@@ -1675,10 +1689,10 @@ declare function SearchIcon({
|
|
|
1675
1689
|
fill,
|
|
1676
1690
|
size,
|
|
1677
1691
|
...rest
|
|
1678
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1692
|
+
}: SvgIconProps & CustomSvgProps$119): JSX.Element;
|
|
1679
1693
|
//#endregion
|
|
1680
1694
|
//#region src/DesignTokens/Icons/Interaction/SearchRemoveIcon.d.ts
|
|
1681
|
-
interface CustomSvgProps$
|
|
1695
|
+
interface CustomSvgProps$118 {
|
|
1682
1696
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1683
1697
|
}
|
|
1684
1698
|
declare function SearchRemoveIcon({
|
|
@@ -1687,10 +1701,10 @@ declare function SearchRemoveIcon({
|
|
|
1687
1701
|
fill,
|
|
1688
1702
|
size,
|
|
1689
1703
|
...rest
|
|
1690
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1704
|
+
}: SvgIconProps & CustomSvgProps$118): JSX.Element;
|
|
1691
1705
|
//#endregion
|
|
1692
1706
|
//#region src/DesignTokens/Icons/Interaction/SettingsSliderIcon.d.ts
|
|
1693
|
-
interface CustomSvgProps$
|
|
1707
|
+
interface CustomSvgProps$117 {
|
|
1694
1708
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1695
1709
|
}
|
|
1696
1710
|
declare function SettingsSliderIcon({
|
|
@@ -1699,10 +1713,10 @@ declare function SettingsSliderIcon({
|
|
|
1699
1713
|
fill,
|
|
1700
1714
|
size,
|
|
1701
1715
|
...rest
|
|
1702
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1716
|
+
}: SvgIconProps & CustomSvgProps$117): JSX.Element;
|
|
1703
1717
|
//#endregion
|
|
1704
1718
|
//#region src/DesignTokens/Icons/Interaction/ShareIcon.d.ts
|
|
1705
|
-
interface CustomSvgProps$
|
|
1719
|
+
interface CustomSvgProps$116 {
|
|
1706
1720
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1707
1721
|
}
|
|
1708
1722
|
declare function ShareIcon({
|
|
@@ -1711,10 +1725,10 @@ declare function ShareIcon({
|
|
|
1711
1725
|
fill,
|
|
1712
1726
|
size,
|
|
1713
1727
|
...rest
|
|
1714
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1728
|
+
}: SvgIconProps & CustomSvgProps$116): JSX.Element;
|
|
1715
1729
|
//#endregion
|
|
1716
1730
|
//#region src/DesignTokens/Icons/Interaction/SortingIcon.d.ts
|
|
1717
|
-
interface CustomSvgProps$
|
|
1731
|
+
interface CustomSvgProps$115 {
|
|
1718
1732
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1719
1733
|
}
|
|
1720
1734
|
declare function SortingIcon({
|
|
@@ -1723,10 +1737,10 @@ declare function SortingIcon({
|
|
|
1723
1737
|
fill,
|
|
1724
1738
|
size,
|
|
1725
1739
|
...rest
|
|
1726
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1740
|
+
}: SvgIconProps & CustomSvgProps$115): JSX.Element;
|
|
1727
1741
|
//#endregion
|
|
1728
1742
|
//#region src/DesignTokens/Icons/Interaction/SortingIconZA.d.ts
|
|
1729
|
-
interface CustomSvgProps$
|
|
1743
|
+
interface CustomSvgProps$114 {
|
|
1730
1744
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1731
1745
|
}
|
|
1732
1746
|
declare function SortingIconZA({
|
|
@@ -1735,10 +1749,10 @@ declare function SortingIconZA({
|
|
|
1735
1749
|
fill,
|
|
1736
1750
|
size,
|
|
1737
1751
|
...rest
|
|
1738
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1752
|
+
}: SvgIconProps & CustomSvgProps$114): JSX.Element;
|
|
1739
1753
|
//#endregion
|
|
1740
1754
|
//#region src/DesignTokens/Icons/Interaction/TagAddIcon.d.ts
|
|
1741
|
-
interface CustomSvgProps$
|
|
1755
|
+
interface CustomSvgProps$113 {
|
|
1742
1756
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1743
1757
|
}
|
|
1744
1758
|
declare function TagAddIcon({
|
|
@@ -1747,10 +1761,10 @@ declare function TagAddIcon({
|
|
|
1747
1761
|
fill,
|
|
1748
1762
|
size,
|
|
1749
1763
|
...rest
|
|
1750
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1764
|
+
}: SvgIconProps & CustomSvgProps$113): JSX.Element;
|
|
1751
1765
|
//#endregion
|
|
1752
1766
|
//#region src/DesignTokens/Icons/Interaction/TagEditIcon.d.ts
|
|
1753
|
-
interface CustomSvgProps$
|
|
1767
|
+
interface CustomSvgProps$112 {
|
|
1754
1768
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1755
1769
|
}
|
|
1756
1770
|
declare function TagEditIcon({
|
|
@@ -1759,10 +1773,10 @@ declare function TagEditIcon({
|
|
|
1759
1773
|
fill,
|
|
1760
1774
|
size,
|
|
1761
1775
|
...rest
|
|
1762
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1776
|
+
}: SvgIconProps & CustomSvgProps$112): JSX.Element;
|
|
1763
1777
|
//#endregion
|
|
1764
1778
|
//#region src/DesignTokens/Icons/Interaction/TagRemoveIcon.d.ts
|
|
1765
|
-
interface CustomSvgProps$
|
|
1779
|
+
interface CustomSvgProps$111 {
|
|
1766
1780
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1767
1781
|
}
|
|
1768
1782
|
declare function TagRemoveIcon({
|
|
@@ -1771,10 +1785,10 @@ declare function TagRemoveIcon({
|
|
|
1771
1785
|
fill,
|
|
1772
1786
|
size,
|
|
1773
1787
|
...rest
|
|
1774
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1788
|
+
}: SvgIconProps & CustomSvgProps$111): JSX.Element;
|
|
1775
1789
|
//#endregion
|
|
1776
1790
|
//#region src/DesignTokens/Icons/Interaction/TeamIcon.d.ts
|
|
1777
|
-
interface CustomSvgProps$
|
|
1791
|
+
interface CustomSvgProps$110 {
|
|
1778
1792
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1779
1793
|
}
|
|
1780
1794
|
declare function TeamIcon({
|
|
@@ -1783,10 +1797,10 @@ declare function TeamIcon({
|
|
|
1783
1797
|
fill,
|
|
1784
1798
|
size,
|
|
1785
1799
|
...rest
|
|
1786
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1800
|
+
}: SvgIconProps & CustomSvgProps$110): JSX.Element;
|
|
1787
1801
|
//#endregion
|
|
1788
1802
|
//#region src/DesignTokens/Icons/Interaction/UndoIcon.d.ts
|
|
1789
|
-
interface CustomSvgProps$
|
|
1803
|
+
interface CustomSvgProps$109 {
|
|
1790
1804
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1791
1805
|
}
|
|
1792
1806
|
declare function UndoIcon({
|
|
@@ -1795,10 +1809,10 @@ declare function UndoIcon({
|
|
|
1795
1809
|
fill,
|
|
1796
1810
|
size,
|
|
1797
1811
|
...rest
|
|
1798
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1812
|
+
}: SvgIconProps & CustomSvgProps$109): JSX.Element;
|
|
1799
1813
|
//#endregion
|
|
1800
1814
|
//#region src/DesignTokens/Icons/Interaction/UnlockedIcon.d.ts
|
|
1801
|
-
interface CustomSvgProps$
|
|
1815
|
+
interface CustomSvgProps$108 {
|
|
1802
1816
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1803
1817
|
}
|
|
1804
1818
|
declare function UnlockedIcon({
|
|
@@ -1807,10 +1821,10 @@ declare function UnlockedIcon({
|
|
|
1807
1821
|
fill,
|
|
1808
1822
|
size,
|
|
1809
1823
|
...rest
|
|
1810
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1824
|
+
}: SvgIconProps & CustomSvgProps$108): JSX.Element;
|
|
1811
1825
|
//#endregion
|
|
1812
1826
|
//#region src/DesignTokens/Icons/Interaction/UnLockIcon.d.ts
|
|
1813
|
-
interface CustomSvgProps$
|
|
1827
|
+
interface CustomSvgProps$107 {
|
|
1814
1828
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1815
1829
|
}
|
|
1816
1830
|
declare function UnLockIcon({
|
|
@@ -1819,7 +1833,7 @@ declare function UnLockIcon({
|
|
|
1819
1833
|
fill,
|
|
1820
1834
|
size,
|
|
1821
1835
|
...rest
|
|
1822
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1836
|
+
}: SvgIconProps & CustomSvgProps$107): JSX.Element;
|
|
1823
1837
|
//#endregion
|
|
1824
1838
|
//#region src/DesignTokens/Icons/Logos/LogoBeta.d.ts
|
|
1825
1839
|
declare function LogoBeta({
|
|
@@ -1886,7 +1900,7 @@ declare function LogoBlue({
|
|
|
1886
1900
|
}: SvgIconProps): JSX.Element;
|
|
1887
1901
|
//#endregion
|
|
1888
1902
|
//#region src/DesignTokens/Icons/MediaControl/CutClipIcon.d.ts
|
|
1889
|
-
interface CustomSvgProps$
|
|
1903
|
+
interface CustomSvgProps$106 {
|
|
1890
1904
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1891
1905
|
}
|
|
1892
1906
|
declare function CutClipIcon({
|
|
@@ -1895,10 +1909,10 @@ declare function CutClipIcon({
|
|
|
1895
1909
|
fill,
|
|
1896
1910
|
size,
|
|
1897
1911
|
...rest
|
|
1898
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1912
|
+
}: SvgIconProps & CustomSvgProps$106): JSX.Element;
|
|
1899
1913
|
//#endregion
|
|
1900
1914
|
//#region src/DesignTokens/Icons/MediaControl/HangUpIcon.d.ts
|
|
1901
|
-
interface CustomSvgProps$
|
|
1915
|
+
interface CustomSvgProps$105 {
|
|
1902
1916
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1903
1917
|
}
|
|
1904
1918
|
declare function HangUpIcon({
|
|
@@ -1907,10 +1921,10 @@ declare function HangUpIcon({
|
|
|
1907
1921
|
fill,
|
|
1908
1922
|
size,
|
|
1909
1923
|
...rest
|
|
1910
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1924
|
+
}: SvgIconProps & CustomSvgProps$105): JSX.Element;
|
|
1911
1925
|
//#endregion
|
|
1912
1926
|
//#region src/DesignTokens/Icons/MediaControl/MeetingIcon.d.ts
|
|
1913
|
-
interface CustomSvgProps$
|
|
1927
|
+
interface CustomSvgProps$104 {
|
|
1914
1928
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1915
1929
|
}
|
|
1916
1930
|
declare function MeetingIcon({
|
|
@@ -1919,10 +1933,10 @@ declare function MeetingIcon({
|
|
|
1919
1933
|
fill,
|
|
1920
1934
|
size,
|
|
1921
1935
|
...rest
|
|
1922
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1936
|
+
}: SvgIconProps & CustomSvgProps$104): JSX.Element;
|
|
1923
1937
|
//#endregion
|
|
1924
1938
|
//#region src/DesignTokens/Icons/MediaControl/MicrophoneIcon.d.ts
|
|
1925
|
-
interface CustomSvgProps$
|
|
1939
|
+
interface CustomSvgProps$103 {
|
|
1926
1940
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1927
1941
|
}
|
|
1928
1942
|
declare function MicrophoneIcon({
|
|
@@ -1931,10 +1945,10 @@ declare function MicrophoneIcon({
|
|
|
1931
1945
|
fill,
|
|
1932
1946
|
size,
|
|
1933
1947
|
...rest
|
|
1934
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1948
|
+
}: SvgIconProps & CustomSvgProps$103): JSX.Element;
|
|
1935
1949
|
//#endregion
|
|
1936
1950
|
//#region src/DesignTokens/Icons/MediaControl/MoveBackIcon.d.ts
|
|
1937
|
-
interface CustomSvgProps$
|
|
1951
|
+
interface CustomSvgProps$102 {
|
|
1938
1952
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1939
1953
|
}
|
|
1940
1954
|
declare function MoveBackIcon({
|
|
@@ -1943,10 +1957,10 @@ declare function MoveBackIcon({
|
|
|
1943
1957
|
fill,
|
|
1944
1958
|
size,
|
|
1945
1959
|
...rest
|
|
1946
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1960
|
+
}: SvgIconProps & CustomSvgProps$102): JSX.Element;
|
|
1947
1961
|
//#endregion
|
|
1948
1962
|
//#region src/DesignTokens/Icons/MediaControl/MoveInIcon.d.ts
|
|
1949
|
-
interface CustomSvgProps$
|
|
1963
|
+
interface CustomSvgProps$101 {
|
|
1950
1964
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1951
1965
|
}
|
|
1952
1966
|
declare function MoveInIcon({
|
|
@@ -1955,10 +1969,10 @@ declare function MoveInIcon({
|
|
|
1955
1969
|
fill,
|
|
1956
1970
|
size,
|
|
1957
1971
|
...rest
|
|
1958
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1972
|
+
}: SvgIconProps & CustomSvgProps$101): JSX.Element;
|
|
1959
1973
|
//#endregion
|
|
1960
1974
|
//#region src/DesignTokens/Icons/MediaControl/MuteIcon.d.ts
|
|
1961
|
-
interface CustomSvgProps$
|
|
1975
|
+
interface CustomSvgProps$100 {
|
|
1962
1976
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1963
1977
|
}
|
|
1964
1978
|
declare function MuteIcon({
|
|
@@ -1967,10 +1981,10 @@ declare function MuteIcon({
|
|
|
1967
1981
|
fill,
|
|
1968
1982
|
size,
|
|
1969
1983
|
...rest
|
|
1970
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1984
|
+
}: SvgIconProps & CustomSvgProps$100): JSX.Element;
|
|
1971
1985
|
//#endregion
|
|
1972
1986
|
//#region src/DesignTokens/Icons/MediaControl/NoCameraIcon.d.ts
|
|
1973
|
-
interface CustomSvgProps$
|
|
1987
|
+
interface CustomSvgProps$99 {
|
|
1974
1988
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1975
1989
|
}
|
|
1976
1990
|
declare function NoCameraIcon({
|
|
@@ -1979,10 +1993,10 @@ declare function NoCameraIcon({
|
|
|
1979
1993
|
fill,
|
|
1980
1994
|
size,
|
|
1981
1995
|
...rest
|
|
1982
|
-
}: SvgIconProps & CustomSvgProps$
|
|
1996
|
+
}: SvgIconProps & CustomSvgProps$99): JSX.Element;
|
|
1983
1997
|
//#endregion
|
|
1984
1998
|
//#region src/DesignTokens/Icons/MediaControl/NoMicrophoneIcon.d.ts
|
|
1985
|
-
interface CustomSvgProps$
|
|
1999
|
+
interface CustomSvgProps$98 {
|
|
1986
2000
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1987
2001
|
}
|
|
1988
2002
|
declare function NoMicrophoneIcon({
|
|
@@ -1991,10 +2005,10 @@ declare function NoMicrophoneIcon({
|
|
|
1991
2005
|
fill,
|
|
1992
2006
|
size,
|
|
1993
2007
|
...rest
|
|
1994
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2008
|
+
}: SvgIconProps & CustomSvgProps$98): JSX.Element;
|
|
1995
2009
|
//#endregion
|
|
1996
2010
|
//#region src/DesignTokens/Icons/MediaControl/PauseIcon.d.ts
|
|
1997
|
-
interface CustomSvgProps$
|
|
2011
|
+
interface CustomSvgProps$97 {
|
|
1998
2012
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
1999
2013
|
}
|
|
2000
2014
|
declare function PauseIcon({
|
|
@@ -2003,10 +2017,10 @@ declare function PauseIcon({
|
|
|
2003
2017
|
fill,
|
|
2004
2018
|
size,
|
|
2005
2019
|
...rest
|
|
2006
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2020
|
+
}: SvgIconProps & CustomSvgProps$97): JSX.Element;
|
|
2007
2021
|
//#endregion
|
|
2008
2022
|
//#region src/DesignTokens/Icons/MediaControl/PlayIcon.d.ts
|
|
2009
|
-
interface CustomSvgProps$
|
|
2023
|
+
interface CustomSvgProps$96 {
|
|
2010
2024
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2011
2025
|
}
|
|
2012
2026
|
declare function PlayIcon({
|
|
@@ -2015,10 +2029,10 @@ declare function PlayIcon({
|
|
|
2015
2029
|
fill,
|
|
2016
2030
|
size,
|
|
2017
2031
|
...rest
|
|
2018
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2032
|
+
}: SvgIconProps & CustomSvgProps$96): JSX.Element;
|
|
2019
2033
|
//#endregion
|
|
2020
2034
|
//#region src/DesignTokens/Icons/MediaControl/ScreenShareIcon.d.ts
|
|
2021
|
-
interface CustomSvgProps$
|
|
2035
|
+
interface CustomSvgProps$95 {
|
|
2022
2036
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2023
2037
|
}
|
|
2024
2038
|
declare function ScreenShareIcon({
|
|
@@ -2027,10 +2041,10 @@ declare function ScreenShareIcon({
|
|
|
2027
2041
|
fill,
|
|
2028
2042
|
size,
|
|
2029
2043
|
...rest
|
|
2030
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2044
|
+
}: SvgIconProps & CustomSvgProps$95): JSX.Element;
|
|
2031
2045
|
//#endregion
|
|
2032
2046
|
//#region src/DesignTokens/Icons/MediaControl/PlayFillIcon.d.ts
|
|
2033
|
-
interface CustomSvgProps$
|
|
2047
|
+
interface CustomSvgProps$94 {
|
|
2034
2048
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2035
2049
|
}
|
|
2036
2050
|
declare function PlayFillIcon({
|
|
@@ -2039,10 +2053,10 @@ declare function PlayFillIcon({
|
|
|
2039
2053
|
fill,
|
|
2040
2054
|
size,
|
|
2041
2055
|
...rest
|
|
2042
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2056
|
+
}: SvgIconProps & CustomSvgProps$94): JSX.Element;
|
|
2043
2057
|
//#endregion
|
|
2044
2058
|
//#region src/DesignTokens/Icons/MediaControl/PreviousIcon.d.ts
|
|
2045
|
-
interface CustomSvgProps$
|
|
2059
|
+
interface CustomSvgProps$93 {
|
|
2046
2060
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2047
2061
|
}
|
|
2048
2062
|
declare function PreviousIcon({
|
|
@@ -2051,10 +2065,10 @@ declare function PreviousIcon({
|
|
|
2051
2065
|
fill,
|
|
2052
2066
|
size,
|
|
2053
2067
|
...rest
|
|
2054
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2068
|
+
}: SvgIconProps & CustomSvgProps$93): JSX.Element;
|
|
2055
2069
|
//#endregion
|
|
2056
2070
|
//#region src/DesignTokens/Icons/MediaControl/RecordIcon.d.ts
|
|
2057
|
-
interface CustomSvgProps$
|
|
2071
|
+
interface CustomSvgProps$92 {
|
|
2058
2072
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2059
2073
|
}
|
|
2060
2074
|
declare function RecordIcon({
|
|
@@ -2063,10 +2077,10 @@ declare function RecordIcon({
|
|
|
2063
2077
|
fill,
|
|
2064
2078
|
size,
|
|
2065
2079
|
...rest
|
|
2066
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2080
|
+
}: SvgIconProps & CustomSvgProps$92): JSX.Element;
|
|
2067
2081
|
//#endregion
|
|
2068
2082
|
//#region src/DesignTokens/Icons/MediaControl/RecordingIcon.d.ts
|
|
2069
|
-
interface CustomSvgProps$
|
|
2083
|
+
interface CustomSvgProps$91 {
|
|
2070
2084
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2071
2085
|
}
|
|
2072
2086
|
declare function RecordingIcon({
|
|
@@ -2075,10 +2089,10 @@ declare function RecordingIcon({
|
|
|
2075
2089
|
fill,
|
|
2076
2090
|
size,
|
|
2077
2091
|
...rest
|
|
2078
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2092
|
+
}: SvgIconProps & CustomSvgProps$91): JSX.Element;
|
|
2079
2093
|
//#endregion
|
|
2080
2094
|
//#region src/DesignTokens/Icons/MediaControl/StopRecordIcon.d.ts
|
|
2081
|
-
interface CustomSvgProps$
|
|
2095
|
+
interface CustomSvgProps$90 {
|
|
2082
2096
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2083
2097
|
}
|
|
2084
2098
|
declare function StopRecordingIcon({
|
|
@@ -2087,10 +2101,10 @@ declare function StopRecordingIcon({
|
|
|
2087
2101
|
fill,
|
|
2088
2102
|
size,
|
|
2089
2103
|
...rest
|
|
2090
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2104
|
+
}: SvgIconProps & CustomSvgProps$90): JSX.Element;
|
|
2091
2105
|
//#endregion
|
|
2092
2106
|
//#region src/DesignTokens/Icons/MediaControl/TagIcon.d.ts
|
|
2093
|
-
interface CustomSvgProps$
|
|
2107
|
+
interface CustomSvgProps$89 {
|
|
2094
2108
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2095
2109
|
}
|
|
2096
2110
|
declare function TagIcon({
|
|
@@ -2099,10 +2113,10 @@ declare function TagIcon({
|
|
|
2099
2113
|
fill,
|
|
2100
2114
|
size,
|
|
2101
2115
|
...rest
|
|
2102
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2116
|
+
}: SvgIconProps & CustomSvgProps$89): JSX.Element;
|
|
2103
2117
|
//#endregion
|
|
2104
2118
|
//#region src/DesignTokens/Icons/MediaControl/VolumeIcon.d.ts
|
|
2105
|
-
interface CustomSvgProps$
|
|
2119
|
+
interface CustomSvgProps$88 {
|
|
2106
2120
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2107
2121
|
}
|
|
2108
2122
|
declare function VolumeIcon({
|
|
@@ -2111,10 +2125,10 @@ declare function VolumeIcon({
|
|
|
2111
2125
|
fill,
|
|
2112
2126
|
size,
|
|
2113
2127
|
...rest
|
|
2114
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2128
|
+
}: SvgIconProps & CustomSvgProps$88): JSX.Element;
|
|
2115
2129
|
//#endregion
|
|
2116
2130
|
//#region src/DesignTokens/Icons/Miscellaneous/AddSeatIcon.d.ts
|
|
2117
|
-
interface CustomSvgProps$
|
|
2131
|
+
interface CustomSvgProps$87 {
|
|
2118
2132
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2119
2133
|
}
|
|
2120
2134
|
declare function AddSeatIcon({
|
|
@@ -2123,10 +2137,10 @@ declare function AddSeatIcon({
|
|
|
2123
2137
|
fill,
|
|
2124
2138
|
size,
|
|
2125
2139
|
...rest
|
|
2126
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2140
|
+
}: SvgIconProps & CustomSvgProps$87): JSX.Element;
|
|
2127
2141
|
//#endregion
|
|
2128
2142
|
//#region src/DesignTokens/Icons/Miscellaneous/AddUsersIcon.d.ts
|
|
2129
|
-
interface CustomSvgProps$
|
|
2143
|
+
interface CustomSvgProps$86 {
|
|
2130
2144
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2131
2145
|
}
|
|
2132
2146
|
declare function AddUsersIcon({
|
|
@@ -2135,10 +2149,10 @@ declare function AddUsersIcon({
|
|
|
2135
2149
|
fill,
|
|
2136
2150
|
size,
|
|
2137
2151
|
...rest
|
|
2138
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2152
|
+
}: SvgIconProps & CustomSvgProps$86): JSX.Element;
|
|
2139
2153
|
//#endregion
|
|
2140
2154
|
//#region src/DesignTokens/Icons/Miscellaneous/AndroidIcon.d.ts
|
|
2141
|
-
interface CustomSvgProps$
|
|
2155
|
+
interface CustomSvgProps$85 {
|
|
2142
2156
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2143
2157
|
}
|
|
2144
2158
|
declare function AndroidIcon({
|
|
@@ -2147,10 +2161,10 @@ declare function AndroidIcon({
|
|
|
2147
2161
|
fill,
|
|
2148
2162
|
size,
|
|
2149
2163
|
...rest
|
|
2150
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2164
|
+
}: SvgIconProps & CustomSvgProps$85): JSX.Element;
|
|
2151
2165
|
//#endregion
|
|
2152
2166
|
//#region src/DesignTokens/Icons/Miscellaneous/AnonymizeIcon.d.ts
|
|
2153
|
-
interface CustomSvgProps$
|
|
2167
|
+
interface CustomSvgProps$84 {
|
|
2154
2168
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2155
2169
|
}
|
|
2156
2170
|
declare function AnonymizeIcon({
|
|
@@ -2159,10 +2173,10 @@ declare function AnonymizeIcon({
|
|
|
2159
2173
|
fill,
|
|
2160
2174
|
size,
|
|
2161
2175
|
...rest
|
|
2162
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2176
|
+
}: SvgIconProps & CustomSvgProps$84): JSX.Element;
|
|
2163
2177
|
//#endregion
|
|
2164
2178
|
//#region src/DesignTokens/Icons/Miscellaneous/AppWindowPieIcon.d.ts
|
|
2165
|
-
interface CustomSvgProps$
|
|
2179
|
+
interface CustomSvgProps$83 {
|
|
2166
2180
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2167
2181
|
}
|
|
2168
2182
|
declare function AppWindowPieIcon({
|
|
@@ -2171,10 +2185,10 @@ declare function AppWindowPieIcon({
|
|
|
2171
2185
|
fill,
|
|
2172
2186
|
size,
|
|
2173
2187
|
...rest
|
|
2174
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2188
|
+
}: SvgIconProps & CustomSvgProps$83): JSX.Element;
|
|
2175
2189
|
//#endregion
|
|
2176
2190
|
//#region src/DesignTokens/Icons/Miscellaneous/ArchiveIcon.d.ts
|
|
2177
|
-
interface CustomSvgProps$
|
|
2191
|
+
interface CustomSvgProps$82 {
|
|
2178
2192
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2179
2193
|
}
|
|
2180
2194
|
declare function ArchiveIcon({
|
|
@@ -2183,10 +2197,10 @@ declare function ArchiveIcon({
|
|
|
2183
2197
|
fill,
|
|
2184
2198
|
size,
|
|
2185
2199
|
...rest
|
|
2186
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2200
|
+
}: SvgIconProps & CustomSvgProps$82): JSX.Element;
|
|
2187
2201
|
//#endregion
|
|
2188
2202
|
//#region src/DesignTokens/Icons/Miscellaneous/BillPdfIcon.d.ts
|
|
2189
|
-
interface CustomSvgProps$
|
|
2203
|
+
interface CustomSvgProps$81 {
|
|
2190
2204
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2191
2205
|
}
|
|
2192
2206
|
declare function BillPdfIcon({
|
|
@@ -2195,10 +2209,10 @@ declare function BillPdfIcon({
|
|
|
2195
2209
|
fill,
|
|
2196
2210
|
size,
|
|
2197
2211
|
...rest
|
|
2198
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2212
|
+
}: SvgIconProps & CustomSvgProps$81): JSX.Element;
|
|
2199
2213
|
//#endregion
|
|
2200
2214
|
//#region src/DesignTokens/Icons/Miscellaneous/BinocularIcon.d.ts
|
|
2201
|
-
interface CustomSvgProps$
|
|
2215
|
+
interface CustomSvgProps$80 {
|
|
2202
2216
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2203
2217
|
}
|
|
2204
2218
|
declare function BinocularIcon({
|
|
@@ -2207,10 +2221,10 @@ declare function BinocularIcon({
|
|
|
2207
2221
|
fill,
|
|
2208
2222
|
size,
|
|
2209
2223
|
...rest
|
|
2210
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2224
|
+
}: SvgIconProps & CustomSvgProps$80): JSX.Element;
|
|
2211
2225
|
//#endregion
|
|
2212
2226
|
//#region src/DesignTokens/Icons/Miscellaneous/BookFlipPageIcon.d.ts
|
|
2213
|
-
interface CustomSvgProps$
|
|
2227
|
+
interface CustomSvgProps$79 {
|
|
2214
2228
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2215
2229
|
}
|
|
2216
2230
|
declare function BookFlipPageIcon({
|
|
@@ -2219,10 +2233,10 @@ declare function BookFlipPageIcon({
|
|
|
2219
2233
|
fill,
|
|
2220
2234
|
size,
|
|
2221
2235
|
...rest
|
|
2222
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2236
|
+
}: SvgIconProps & CustomSvgProps$79): JSX.Element;
|
|
2223
2237
|
//#endregion
|
|
2224
2238
|
//#region src/DesignTokens/Icons/Miscellaneous/WalletIcon.d.ts
|
|
2225
|
-
interface CustomSvgProps$
|
|
2239
|
+
interface CustomSvgProps$78 {
|
|
2226
2240
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2227
2241
|
}
|
|
2228
2242
|
declare function WalletIcon({
|
|
@@ -2231,10 +2245,10 @@ declare function WalletIcon({
|
|
|
2231
2245
|
fill,
|
|
2232
2246
|
size,
|
|
2233
2247
|
...rest
|
|
2234
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2248
|
+
}: SvgIconProps & CustomSvgProps$78): JSX.Element;
|
|
2235
2249
|
//#endregion
|
|
2236
2250
|
//#region src/DesignTokens/Icons/Miscellaneous/BrainIcon.d.ts
|
|
2237
|
-
interface CustomSvgProps$
|
|
2251
|
+
interface CustomSvgProps$77 {
|
|
2238
2252
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2239
2253
|
}
|
|
2240
2254
|
declare function BrainIcon({
|
|
@@ -2243,10 +2257,10 @@ declare function BrainIcon({
|
|
|
2243
2257
|
fill,
|
|
2244
2258
|
size,
|
|
2245
2259
|
...rest
|
|
2246
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2260
|
+
}: SvgIconProps & CustomSvgProps$77): JSX.Element;
|
|
2247
2261
|
//#endregion
|
|
2248
2262
|
//#region src/DesignTokens/Icons/Miscellaneous/BrainIconGradiant.d.ts
|
|
2249
|
-
interface CustomSvgProps$
|
|
2263
|
+
interface CustomSvgProps$76 {
|
|
2250
2264
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2251
2265
|
}
|
|
2252
2266
|
declare function BrainIconGradiant({
|
|
@@ -2255,10 +2269,10 @@ declare function BrainIconGradiant({
|
|
|
2255
2269
|
fill,
|
|
2256
2270
|
size,
|
|
2257
2271
|
...rest
|
|
2258
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2272
|
+
}: SvgIconProps & CustomSvgProps$76): JSX.Element;
|
|
2259
2273
|
//#endregion
|
|
2260
2274
|
//#region src/DesignTokens/Icons/Miscellaneous/BulbIcon.d.ts
|
|
2261
|
-
interface CustomSvgProps$
|
|
2275
|
+
interface CustomSvgProps$75 {
|
|
2262
2276
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2263
2277
|
}
|
|
2264
2278
|
declare function BulbIcon({
|
|
@@ -2267,10 +2281,10 @@ declare function BulbIcon({
|
|
|
2267
2281
|
fill,
|
|
2268
2282
|
size,
|
|
2269
2283
|
...rest
|
|
2270
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2284
|
+
}: SvgIconProps & CustomSvgProps$75): JSX.Element;
|
|
2271
2285
|
//#endregion
|
|
2272
2286
|
//#region src/DesignTokens/Icons/Miscellaneous/CalendarIcon.d.ts
|
|
2273
|
-
interface CustomSvgProps$
|
|
2287
|
+
interface CustomSvgProps$74 {
|
|
2274
2288
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2275
2289
|
}
|
|
2276
2290
|
declare function CalendarIcon({
|
|
@@ -2279,10 +2293,10 @@ declare function CalendarIcon({
|
|
|
2279
2293
|
fill,
|
|
2280
2294
|
size,
|
|
2281
2295
|
...rest
|
|
2282
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2296
|
+
}: SvgIconProps & CustomSvgProps$74): JSX.Element;
|
|
2283
2297
|
//#endregion
|
|
2284
2298
|
//#region src/DesignTokens/Icons/Miscellaneous/ChatBubbleIcon.d.ts
|
|
2285
|
-
interface CustomSvgProps$
|
|
2299
|
+
interface CustomSvgProps$73 {
|
|
2286
2300
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2287
2301
|
}
|
|
2288
2302
|
declare function ChatBubbleIcon({
|
|
@@ -2290,10 +2304,10 @@ declare function ChatBubbleIcon({
|
|
|
2290
2304
|
strokeWidth,
|
|
2291
2305
|
size,
|
|
2292
2306
|
...rest
|
|
2293
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2307
|
+
}: SvgIconProps & CustomSvgProps$73): JSX.Element;
|
|
2294
2308
|
//#endregion
|
|
2295
2309
|
//#region src/DesignTokens/Icons/Miscellaneous/ChatIcon.d.ts
|
|
2296
|
-
interface CustomSvgProps$
|
|
2310
|
+
interface CustomSvgProps$72 {
|
|
2297
2311
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2298
2312
|
}
|
|
2299
2313
|
declare function ChatIcon({
|
|
@@ -2302,10 +2316,10 @@ declare function ChatIcon({
|
|
|
2302
2316
|
fill,
|
|
2303
2317
|
size,
|
|
2304
2318
|
...rest
|
|
2305
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2319
|
+
}: SvgIconProps & CustomSvgProps$72): JSX.Element;
|
|
2306
2320
|
//#endregion
|
|
2307
2321
|
//#region src/DesignTokens/Icons/Miscellaneous/CheckoutIcon.d.ts
|
|
2308
|
-
interface CustomSvgProps$
|
|
2322
|
+
interface CustomSvgProps$71 {
|
|
2309
2323
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2310
2324
|
}
|
|
2311
2325
|
declare function CheckoutIcon({
|
|
@@ -2314,10 +2328,10 @@ declare function CheckoutIcon({
|
|
|
2314
2328
|
fill,
|
|
2315
2329
|
size,
|
|
2316
2330
|
...rest
|
|
2317
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2331
|
+
}: SvgIconProps & CustomSvgProps$71): JSX.Element;
|
|
2318
2332
|
//#endregion
|
|
2319
2333
|
//#region src/DesignTokens/Icons/Miscellaneous/ClipIcon.d.ts
|
|
2320
|
-
interface CustomSvgProps$
|
|
2334
|
+
interface CustomSvgProps$70 {
|
|
2321
2335
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2322
2336
|
}
|
|
2323
2337
|
declare function ClipIcon({
|
|
@@ -2326,10 +2340,10 @@ declare function ClipIcon({
|
|
|
2326
2340
|
fill,
|
|
2327
2341
|
size,
|
|
2328
2342
|
...rest
|
|
2329
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2343
|
+
}: SvgIconProps & CustomSvgProps$70): JSX.Element;
|
|
2330
2344
|
//#endregion
|
|
2331
2345
|
//#region src/DesignTokens/Icons/Miscellaneous/CloudUpload.d.ts
|
|
2332
|
-
interface CustomSvgProps$
|
|
2346
|
+
interface CustomSvgProps$69 {
|
|
2333
2347
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2334
2348
|
}
|
|
2335
2349
|
declare function CloudUpload({
|
|
@@ -2338,10 +2352,10 @@ declare function CloudUpload({
|
|
|
2338
2352
|
fill,
|
|
2339
2353
|
size,
|
|
2340
2354
|
...rest
|
|
2341
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2355
|
+
}: SvgIconProps & CustomSvgProps$69): JSX.Element;
|
|
2342
2356
|
//#endregion
|
|
2343
2357
|
//#region src/DesignTokens/Icons/Miscellaneous/ContentPenWriteIcon.d.ts
|
|
2344
|
-
interface CustomSvgProps$
|
|
2358
|
+
interface CustomSvgProps$68 {
|
|
2345
2359
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2346
2360
|
}
|
|
2347
2361
|
declare function ContentPenWriteIcon({
|
|
@@ -2350,10 +2364,10 @@ declare function ContentPenWriteIcon({
|
|
|
2350
2364
|
fill,
|
|
2351
2365
|
size,
|
|
2352
2366
|
...rest
|
|
2353
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2367
|
+
}: SvgIconProps & CustomSvgProps$68): JSX.Element;
|
|
2354
2368
|
//#endregion
|
|
2355
2369
|
//#region src/DesignTokens/Icons/Miscellaneous/CreditCardIcon.d.ts
|
|
2356
|
-
interface CustomSvgProps$
|
|
2370
|
+
interface CustomSvgProps$67 {
|
|
2357
2371
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2358
2372
|
}
|
|
2359
2373
|
declare function CreditCardIcon({
|
|
@@ -2362,10 +2376,10 @@ declare function CreditCardIcon({
|
|
|
2362
2376
|
fill,
|
|
2363
2377
|
size,
|
|
2364
2378
|
...rest
|
|
2365
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2379
|
+
}: SvgIconProps & CustomSvgProps$67): JSX.Element;
|
|
2366
2380
|
//#endregion
|
|
2367
2381
|
//#region src/DesignTokens/Icons/Miscellaneous/DisketteIcon.d.ts
|
|
2368
|
-
interface CustomSvgProps$
|
|
2382
|
+
interface CustomSvgProps$66 {
|
|
2369
2383
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2370
2384
|
}
|
|
2371
2385
|
declare function DisketteIcon({
|
|
@@ -2374,10 +2388,10 @@ declare function DisketteIcon({
|
|
|
2374
2388
|
fill,
|
|
2375
2389
|
size,
|
|
2376
2390
|
...rest
|
|
2377
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2391
|
+
}: SvgIconProps & CustomSvgProps$66): React.JSX.Element;
|
|
2378
2392
|
//#endregion
|
|
2379
2393
|
//#region src/DesignTokens/Icons/Miscellaneous/KeyIcon.d.ts
|
|
2380
|
-
interface CustomSvgProps$
|
|
2394
|
+
interface CustomSvgProps$65 {
|
|
2381
2395
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2382
2396
|
}
|
|
2383
2397
|
declare function KeyIcon$1({
|
|
@@ -2386,10 +2400,10 @@ declare function KeyIcon$1({
|
|
|
2386
2400
|
fill,
|
|
2387
2401
|
size,
|
|
2388
2402
|
...rest
|
|
2389
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2403
|
+
}: SvgIconProps & CustomSvgProps$65): React.JSX.Element;
|
|
2390
2404
|
//#endregion
|
|
2391
2405
|
//#region src/DesignTokens/Icons/Miscellaneous/DownloadIcon.d.ts
|
|
2392
|
-
interface CustomSvgProps$
|
|
2406
|
+
interface CustomSvgProps$64 {
|
|
2393
2407
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2394
2408
|
}
|
|
2395
2409
|
declare function DownloadIcon({
|
|
@@ -2398,10 +2412,10 @@ declare function DownloadIcon({
|
|
|
2398
2412
|
fill,
|
|
2399
2413
|
size,
|
|
2400
2414
|
...rest
|
|
2401
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2415
|
+
}: SvgIconProps & CustomSvgProps$64): JSX.Element;
|
|
2402
2416
|
//#endregion
|
|
2403
2417
|
//#region src/DesignTokens/Icons/Miscellaneous/EarthIcon.d.ts
|
|
2404
|
-
interface CustomSvgProps$
|
|
2418
|
+
interface CustomSvgProps$63 {
|
|
2405
2419
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2406
2420
|
}
|
|
2407
2421
|
declare function EarthIcon({
|
|
@@ -2410,10 +2424,10 @@ declare function EarthIcon({
|
|
|
2410
2424
|
fill,
|
|
2411
2425
|
size,
|
|
2412
2426
|
...rest
|
|
2413
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2427
|
+
}: SvgIconProps & CustomSvgProps$63): JSX.Element;
|
|
2414
2428
|
//#endregion
|
|
2415
2429
|
//#region src/DesignTokens/Icons/Miscellaneous/FaceCenterIcon.d.ts
|
|
2416
|
-
interface CustomSvgProps$
|
|
2430
|
+
interface CustomSvgProps$62 {
|
|
2417
2431
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2418
2432
|
}
|
|
2419
2433
|
declare function FaceCenterIcon({
|
|
@@ -2422,10 +2436,10 @@ declare function FaceCenterIcon({
|
|
|
2422
2436
|
fill,
|
|
2423
2437
|
size,
|
|
2424
2438
|
...rest
|
|
2425
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2439
|
+
}: SvgIconProps & CustomSvgProps$62): JSX.Element;
|
|
2426
2440
|
//#endregion
|
|
2427
2441
|
//#region src/DesignTokens/Icons/Miscellaneous/FaceRecognitionIcon.d.ts
|
|
2428
|
-
interface CustomSvgProps$
|
|
2442
|
+
interface CustomSvgProps$61 {
|
|
2429
2443
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2430
2444
|
}
|
|
2431
2445
|
declare function FaceRecognitionIcon({
|
|
@@ -2434,10 +2448,10 @@ declare function FaceRecognitionIcon({
|
|
|
2434
2448
|
fill,
|
|
2435
2449
|
size,
|
|
2436
2450
|
...rest
|
|
2437
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2451
|
+
}: SvgIconProps & CustomSvgProps$61): JSX.Element;
|
|
2438
2452
|
//#endregion
|
|
2439
2453
|
//#region src/DesignTokens/Icons/Miscellaneous/FilesIcon.d.ts
|
|
2440
|
-
interface CustomSvgProps$
|
|
2454
|
+
interface CustomSvgProps$60 {
|
|
2441
2455
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2442
2456
|
}
|
|
2443
2457
|
declare function FilesIcon({
|
|
@@ -2446,10 +2460,10 @@ declare function FilesIcon({
|
|
|
2446
2460
|
fill,
|
|
2447
2461
|
size,
|
|
2448
2462
|
...rest
|
|
2449
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2463
|
+
}: SvgIconProps & CustomSvgProps$60): JSX.Element;
|
|
2450
2464
|
//#endregion
|
|
2451
2465
|
//#region src/DesignTokens/Icons/Miscellaneous/FileUploadIcon.d.ts
|
|
2452
|
-
interface CustomSvgProps$
|
|
2466
|
+
interface CustomSvgProps$59 {
|
|
2453
2467
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2454
2468
|
}
|
|
2455
2469
|
declare function FileUploadIcon({
|
|
@@ -2458,10 +2472,10 @@ declare function FileUploadIcon({
|
|
|
2458
2472
|
fill,
|
|
2459
2473
|
size,
|
|
2460
2474
|
...rest
|
|
2461
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2475
|
+
}: SvgIconProps & CustomSvgProps$59): JSX.Element;
|
|
2462
2476
|
//#endregion
|
|
2463
2477
|
//#region src/DesignTokens/Icons/Miscellaneous/FilledTaskIcon.d.ts
|
|
2464
|
-
interface CustomSvgProps$
|
|
2478
|
+
interface CustomSvgProps$58 {
|
|
2465
2479
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2466
2480
|
}
|
|
2467
2481
|
declare function FilledTaskIcon({
|
|
@@ -2470,10 +2484,10 @@ declare function FilledTaskIcon({
|
|
|
2470
2484
|
fill,
|
|
2471
2485
|
size,
|
|
2472
2486
|
...rest
|
|
2473
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2487
|
+
}: SvgIconProps & CustomSvgProps$58): JSX.Element;
|
|
2474
2488
|
//#endregion
|
|
2475
2489
|
//#region src/DesignTokens/Icons/Miscellaneous/FillRecordIcon.d.ts
|
|
2476
|
-
interface CustomSvgProps$
|
|
2490
|
+
interface CustomSvgProps$57 {
|
|
2477
2491
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2478
2492
|
}
|
|
2479
2493
|
declare function FillRecordIcon({
|
|
@@ -2482,10 +2496,10 @@ declare function FillRecordIcon({
|
|
|
2482
2496
|
fill,
|
|
2483
2497
|
size,
|
|
2484
2498
|
...rest
|
|
2485
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2499
|
+
}: SvgIconProps & CustomSvgProps$57): JSX.Element;
|
|
2486
2500
|
//#endregion
|
|
2487
2501
|
//#region src/DesignTokens/Icons/Miscellaneous/FlashIcon.d.ts
|
|
2488
|
-
interface CustomSvgProps$
|
|
2502
|
+
interface CustomSvgProps$56 {
|
|
2489
2503
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2490
2504
|
}
|
|
2491
2505
|
declare function FlashIcon({
|
|
@@ -2494,10 +2508,10 @@ declare function FlashIcon({
|
|
|
2494
2508
|
fill,
|
|
2495
2509
|
size,
|
|
2496
2510
|
...rest
|
|
2497
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2511
|
+
}: SvgIconProps & CustomSvgProps$56): JSX.Element;
|
|
2498
2512
|
//#endregion
|
|
2499
2513
|
//#region src/DesignTokens/Icons/Miscellaneous/FolderIcon.d.ts
|
|
2500
|
-
interface CustomSvgProps$
|
|
2514
|
+
interface CustomSvgProps$55 {
|
|
2501
2515
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2502
2516
|
}
|
|
2503
2517
|
declare function FolderIcon({
|
|
@@ -2506,10 +2520,10 @@ declare function FolderIcon({
|
|
|
2506
2520
|
fill,
|
|
2507
2521
|
size,
|
|
2508
2522
|
...rest
|
|
2509
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2523
|
+
}: SvgIconProps & CustomSvgProps$55): JSX.Element;
|
|
2510
2524
|
//#endregion
|
|
2511
2525
|
//#region src/DesignTokens/Icons/Miscellaneous/GoogleIcon.d.ts
|
|
2512
|
-
interface CustomSvgProps$
|
|
2526
|
+
interface CustomSvgProps$54 {
|
|
2513
2527
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2514
2528
|
}
|
|
2515
2529
|
declare function GoogleIcon({
|
|
@@ -2518,10 +2532,10 @@ declare function GoogleIcon({
|
|
|
2518
2532
|
fill,
|
|
2519
2533
|
size,
|
|
2520
2534
|
...rest
|
|
2521
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2535
|
+
}: SvgIconProps & CustomSvgProps$54): JSX.Element;
|
|
2522
2536
|
//#endregion
|
|
2523
2537
|
//#region src/DesignTokens/Icons/Miscellaneous/GroupIcon.d.ts
|
|
2524
|
-
interface CustomSvgProps$
|
|
2538
|
+
interface CustomSvgProps$53 {
|
|
2525
2539
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2526
2540
|
}
|
|
2527
2541
|
declare function GoogleIcon$1({
|
|
@@ -2530,10 +2544,10 @@ declare function GoogleIcon$1({
|
|
|
2530
2544
|
fill,
|
|
2531
2545
|
size,
|
|
2532
2546
|
...rest
|
|
2533
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2547
|
+
}: SvgIconProps & CustomSvgProps$53): JSX.Element;
|
|
2534
2548
|
//#endregion
|
|
2535
2549
|
//#region src/DesignTokens/Icons/Miscellaneous/HardDriveIcon.d.ts
|
|
2536
|
-
interface CustomSvgProps$
|
|
2550
|
+
interface CustomSvgProps$52 {
|
|
2537
2551
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2538
2552
|
}
|
|
2539
2553
|
declare function HardDriveIcon({
|
|
@@ -2542,10 +2556,10 @@ declare function HardDriveIcon({
|
|
|
2542
2556
|
fill,
|
|
2543
2557
|
size,
|
|
2544
2558
|
...rest
|
|
2545
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2559
|
+
}: SvgIconProps & CustomSvgProps$52): JSX.Element;
|
|
2546
2560
|
//#endregion
|
|
2547
2561
|
//#region src/DesignTokens/Icons/Miscellaneous/HeartIcon.d.ts
|
|
2548
|
-
interface CustomSvgProps$
|
|
2562
|
+
interface CustomSvgProps$51 {
|
|
2549
2563
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2550
2564
|
}
|
|
2551
2565
|
declare function HeartIcon({
|
|
@@ -2554,10 +2568,10 @@ declare function HeartIcon({
|
|
|
2554
2568
|
fill,
|
|
2555
2569
|
size,
|
|
2556
2570
|
...rest
|
|
2557
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2571
|
+
}: SvgIconProps & CustomSvgProps$51): JSX.Element;
|
|
2558
2572
|
//#endregion
|
|
2559
2573
|
//#region src/DesignTokens/Icons/Miscellaneous/HeartIconFilled.d.ts
|
|
2560
|
-
interface CustomSvgProps$
|
|
2574
|
+
interface CustomSvgProps$50 {
|
|
2561
2575
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2562
2576
|
}
|
|
2563
2577
|
declare function HeartIconFilled({
|
|
@@ -2566,10 +2580,10 @@ declare function HeartIconFilled({
|
|
|
2566
2580
|
fill,
|
|
2567
2581
|
size,
|
|
2568
2582
|
...rest
|
|
2569
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2583
|
+
}: SvgIconProps & CustomSvgProps$50): JSX.Element;
|
|
2570
2584
|
//#endregion
|
|
2571
2585
|
//#region src/DesignTokens/Icons/Miscellaneous/HelpIcon.d.ts
|
|
2572
|
-
interface CustomSvgProps$
|
|
2586
|
+
interface CustomSvgProps$49 {
|
|
2573
2587
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2574
2588
|
}
|
|
2575
2589
|
declare function HelpIcon({
|
|
@@ -2578,10 +2592,10 @@ declare function HelpIcon({
|
|
|
2578
2592
|
fill,
|
|
2579
2593
|
size,
|
|
2580
2594
|
...rest
|
|
2581
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2595
|
+
}: SvgIconProps & CustomSvgProps$49): JSX.Element;
|
|
2582
2596
|
//#endregion
|
|
2583
2597
|
//#region src/DesignTokens/Icons/Miscellaneous/HelpIconAlt.d.ts
|
|
2584
|
-
interface CustomSvgProps$
|
|
2598
|
+
interface CustomSvgProps$48 {
|
|
2585
2599
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2586
2600
|
}
|
|
2587
2601
|
declare function HelpIconAlt({
|
|
@@ -2590,10 +2604,10 @@ declare function HelpIconAlt({
|
|
|
2590
2604
|
fill,
|
|
2591
2605
|
size,
|
|
2592
2606
|
...rest
|
|
2593
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2607
|
+
}: SvgIconProps & CustomSvgProps$48): JSX.Element;
|
|
2594
2608
|
//#endregion
|
|
2595
2609
|
//#region src/DesignTokens/Icons/Miscellaneous/IosIcon.d.ts
|
|
2596
|
-
interface CustomSvgProps$
|
|
2610
|
+
interface CustomSvgProps$47 {
|
|
2597
2611
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2598
2612
|
backgroundFill?: string;
|
|
2599
2613
|
}
|
|
@@ -2605,10 +2619,10 @@ declare function IosIcon({
|
|
|
2605
2619
|
backgroundFill,
|
|
2606
2620
|
// Default background color to white
|
|
2607
2621
|
...rest
|
|
2608
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2622
|
+
}: SvgIconProps & CustomSvgProps$47): JSX.Element;
|
|
2609
2623
|
//#endregion
|
|
2610
2624
|
//#region src/DesignTokens/Icons/Miscellaneous/LanguageIcon.d.ts
|
|
2611
|
-
interface CustomSvgProps$
|
|
2625
|
+
interface CustomSvgProps$46 {
|
|
2612
2626
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2613
2627
|
}
|
|
2614
2628
|
declare function LanguageIcon({
|
|
@@ -2617,10 +2631,22 @@ declare function LanguageIcon({
|
|
|
2617
2631
|
fill,
|
|
2618
2632
|
size,
|
|
2619
2633
|
...rest
|
|
2620
|
-
}: SvgIconProps & CustomSvgProps$
|
|
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
|
|
2646
|
+
}: SvgIconProps & CustomSvgProps$45): JSX.Element;
|
|
2621
2647
|
//#endregion
|
|
2622
2648
|
//#region src/DesignTokens/Icons/Miscellaneous/ArrowsIcon.d.ts
|
|
2623
|
-
interface CustomSvgProps$
|
|
2649
|
+
interface CustomSvgProps$44 {
|
|
2624
2650
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2625
2651
|
}
|
|
2626
2652
|
declare function ArrowsIcon({
|
|
@@ -2629,10 +2655,10 @@ declare function ArrowsIcon({
|
|
|
2629
2655
|
fill,
|
|
2630
2656
|
size,
|
|
2631
2657
|
...rest
|
|
2632
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2658
|
+
}: SvgIconProps & CustomSvgProps$44): JSX.Element;
|
|
2633
2659
|
//#endregion
|
|
2634
2660
|
//#region src/DesignTokens/Icons/Miscellaneous/LinkIcon.d.ts
|
|
2635
|
-
interface CustomSvgProps$
|
|
2661
|
+
interface CustomSvgProps$43 {
|
|
2636
2662
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2637
2663
|
}
|
|
2638
2664
|
declare function LinkIcon({
|
|
@@ -2641,10 +2667,10 @@ declare function LinkIcon({
|
|
|
2641
2667
|
fill,
|
|
2642
2668
|
size,
|
|
2643
2669
|
...rest
|
|
2644
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2670
|
+
}: SvgIconProps & CustomSvgProps$43): JSX.Element;
|
|
2645
2671
|
//#endregion
|
|
2646
2672
|
//#region src/DesignTokens/Icons/Miscellaneous/ListToDoIcon.d.ts
|
|
2647
|
-
interface CustomSvgProps$
|
|
2673
|
+
interface CustomSvgProps$42 {
|
|
2648
2674
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2649
2675
|
}
|
|
2650
2676
|
declare function ListToDoIcon({
|
|
@@ -2653,10 +2679,10 @@ declare function ListToDoIcon({
|
|
|
2653
2679
|
fill,
|
|
2654
2680
|
size,
|
|
2655
2681
|
...rest
|
|
2656
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2682
|
+
}: SvgIconProps & CustomSvgProps$42): JSX.Element;
|
|
2657
2683
|
//#endregion
|
|
2658
2684
|
//#region src/DesignTokens/Icons/Miscellaneous/MessagesBubbleSquareQuestionIcon.d.ts
|
|
2659
|
-
interface CustomSvgProps$
|
|
2685
|
+
interface CustomSvgProps$41 {
|
|
2660
2686
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2661
2687
|
}
|
|
2662
2688
|
declare function MessagesBubbleSquareQuestionIcon({
|
|
@@ -2665,10 +2691,10 @@ declare function MessagesBubbleSquareQuestionIcon({
|
|
|
2665
2691
|
fill,
|
|
2666
2692
|
size,
|
|
2667
2693
|
...rest
|
|
2668
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2694
|
+
}: SvgIconProps & CustomSvgProps$41): JSX.Element;
|
|
2669
2695
|
//#endregion
|
|
2670
2696
|
//#region src/DesignTokens/Icons/Miscellaneous/MetaAnalyseIcon.d.ts
|
|
2671
|
-
interface CustomSvgProps$
|
|
2697
|
+
interface CustomSvgProps$40 {
|
|
2672
2698
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2673
2699
|
}
|
|
2674
2700
|
declare function MetaAnalyseIcon({
|
|
@@ -2677,10 +2703,10 @@ declare function MetaAnalyseIcon({
|
|
|
2677
2703
|
fill,
|
|
2678
2704
|
size,
|
|
2679
2705
|
...rest
|
|
2680
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2706
|
+
}: SvgIconProps & CustomSvgProps$40): JSX.Element;
|
|
2681
2707
|
//#endregion
|
|
2682
2708
|
//#region src/DesignTokens/Icons/Miscellaneous/ModeratedIcon.d.ts
|
|
2683
|
-
interface CustomSvgProps$
|
|
2709
|
+
interface CustomSvgProps$39 {
|
|
2684
2710
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2685
2711
|
}
|
|
2686
2712
|
declare function ModeratedIcon({
|
|
@@ -2689,10 +2715,10 @@ declare function ModeratedIcon({
|
|
|
2689
2715
|
fill,
|
|
2690
2716
|
size,
|
|
2691
2717
|
...rest
|
|
2692
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2718
|
+
}: SvgIconProps & CustomSvgProps$39): JSX.Element;
|
|
2693
2719
|
//#endregion
|
|
2694
2720
|
//#region src/DesignTokens/Icons/Miscellaneous/MultipleUsersIcon.d.ts
|
|
2695
|
-
interface CustomSvgProps$
|
|
2721
|
+
interface CustomSvgProps$38 {
|
|
2696
2722
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2697
2723
|
}
|
|
2698
2724
|
declare function MultipleUsersIcon({
|
|
@@ -2701,10 +2727,10 @@ declare function MultipleUsersIcon({
|
|
|
2701
2727
|
fill,
|
|
2702
2728
|
size,
|
|
2703
2729
|
...rest
|
|
2704
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2730
|
+
}: SvgIconProps & CustomSvgProps$38): JSX.Element;
|
|
2705
2731
|
//#endregion
|
|
2706
2732
|
//#region src/DesignTokens/Icons/Miscellaneous/NbOfUsersIcon.d.ts
|
|
2707
|
-
interface CustomSvgProps$
|
|
2733
|
+
interface CustomSvgProps$37 {
|
|
2708
2734
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2709
2735
|
}
|
|
2710
2736
|
declare function NbOfUsersIcon({
|
|
@@ -2713,10 +2739,10 @@ declare function NbOfUsersIcon({
|
|
|
2713
2739
|
fill,
|
|
2714
2740
|
size,
|
|
2715
2741
|
...rest
|
|
2716
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2742
|
+
}: SvgIconProps & CustomSvgProps$37): JSX.Element;
|
|
2717
2743
|
//#endregion
|
|
2718
2744
|
//#region src/DesignTokens/Icons/Miscellaneous/NeutralBackgroudIcon.d.ts
|
|
2719
|
-
interface CustomSvgProps$
|
|
2745
|
+
interface CustomSvgProps$36 {
|
|
2720
2746
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2721
2747
|
}
|
|
2722
2748
|
declare function NeutralBackgroudIcon({
|
|
@@ -2725,10 +2751,10 @@ declare function NeutralBackgroudIcon({
|
|
|
2725
2751
|
fill,
|
|
2726
2752
|
size,
|
|
2727
2753
|
...rest
|
|
2728
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2754
|
+
}: SvgIconProps & CustomSvgProps$36): JSX.Element;
|
|
2729
2755
|
//#endregion
|
|
2730
2756
|
//#region src/DesignTokens/Icons/Miscellaneous/OfficeDrawerIcon.d.ts
|
|
2731
|
-
interface CustomSvgProps$
|
|
2757
|
+
interface CustomSvgProps$35 {
|
|
2732
2758
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2733
2759
|
}
|
|
2734
2760
|
declare function OfficeDrawerIcon({
|
|
@@ -2737,10 +2763,10 @@ declare function OfficeDrawerIcon({
|
|
|
2737
2763
|
fill,
|
|
2738
2764
|
size,
|
|
2739
2765
|
...rest
|
|
2740
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2766
|
+
}: SvgIconProps & CustomSvgProps$35): JSX.Element;
|
|
2741
2767
|
//#endregion
|
|
2742
2768
|
//#region src/DesignTokens/Icons/Miscellaneous/OneColumnIcon.d.ts
|
|
2743
|
-
interface CustomSvgProps$
|
|
2769
|
+
interface CustomSvgProps$34 {
|
|
2744
2770
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2745
2771
|
}
|
|
2746
2772
|
declare function OneColumnIcon({
|
|
@@ -2749,10 +2775,10 @@ declare function OneColumnIcon({
|
|
|
2749
2775
|
fill,
|
|
2750
2776
|
size,
|
|
2751
2777
|
...rest
|
|
2752
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2778
|
+
}: SvgIconProps & CustomSvgProps$34): JSX.Element;
|
|
2753
2779
|
//#endregion
|
|
2754
2780
|
//#region src/DesignTokens/Icons/Miscellaneous/OtherTab.d.ts
|
|
2755
|
-
interface CustomSvgProps$
|
|
2781
|
+
interface CustomSvgProps$33 {
|
|
2756
2782
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2757
2783
|
}
|
|
2758
2784
|
declare function OtherTab({
|
|
@@ -2761,10 +2787,10 @@ declare function OtherTab({
|
|
|
2761
2787
|
fill,
|
|
2762
2788
|
size,
|
|
2763
2789
|
...rest
|
|
2764
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2790
|
+
}: SvgIconProps & CustomSvgProps$33): JSX.Element;
|
|
2765
2791
|
//#endregion
|
|
2766
2792
|
//#region src/DesignTokens/Icons/Miscellaneous/RefreshIcon.d.ts
|
|
2767
|
-
interface CustomSvgProps$
|
|
2793
|
+
interface CustomSvgProps$32 {
|
|
2768
2794
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2769
2795
|
}
|
|
2770
2796
|
declare function RefreshIcon({
|
|
@@ -2773,10 +2799,10 @@ declare function RefreshIcon({
|
|
|
2773
2799
|
fill,
|
|
2774
2800
|
size,
|
|
2775
2801
|
...rest
|
|
2776
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2802
|
+
}: SvgIconProps & CustomSvgProps$32): JSX.Element;
|
|
2777
2803
|
//#endregion
|
|
2778
2804
|
//#region src/DesignTokens/Icons/Miscellaneous/RefusedIcon.d.ts
|
|
2779
|
-
interface CustomSvgProps$
|
|
2805
|
+
interface CustomSvgProps$31 {
|
|
2780
2806
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2781
2807
|
}
|
|
2782
2808
|
declare function RefusedIcon({
|
|
@@ -2785,10 +2811,10 @@ declare function RefusedIcon({
|
|
|
2785
2811
|
fill,
|
|
2786
2812
|
size,
|
|
2787
2813
|
...rest
|
|
2788
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2814
|
+
}: SvgIconProps & CustomSvgProps$31): JSX.Element;
|
|
2789
2815
|
//#endregion
|
|
2790
2816
|
//#region src/DesignTokens/Icons/Miscellaneous/ReportIcon.d.ts
|
|
2791
|
-
interface CustomSvgProps$
|
|
2817
|
+
interface CustomSvgProps$30 {
|
|
2792
2818
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2793
2819
|
}
|
|
2794
2820
|
declare function ReportIcon({
|
|
@@ -2797,10 +2823,10 @@ declare function ReportIcon({
|
|
|
2797
2823
|
fill,
|
|
2798
2824
|
size,
|
|
2799
2825
|
...rest
|
|
2800
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2826
|
+
}: SvgIconProps & CustomSvgProps$30): JSX.Element;
|
|
2801
2827
|
//#endregion
|
|
2802
2828
|
//#region src/DesignTokens/Icons/Miscellaneous/RobotIcon.d.ts
|
|
2803
|
-
interface CustomSvgProps$
|
|
2829
|
+
interface CustomSvgProps$29 {
|
|
2804
2830
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2805
2831
|
}
|
|
2806
2832
|
declare function RobotIcon({
|
|
@@ -2809,10 +2835,10 @@ declare function RobotIcon({
|
|
|
2809
2835
|
fill,
|
|
2810
2836
|
size,
|
|
2811
2837
|
...rest
|
|
2812
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2838
|
+
}: SvgIconProps & CustomSvgProps$29): JSX.Element;
|
|
2813
2839
|
//#endregion
|
|
2814
2840
|
//#region src/DesignTokens/Icons/Miscellaneous/SeatIcon.d.ts
|
|
2815
|
-
interface CustomSvgProps$
|
|
2841
|
+
interface CustomSvgProps$28 {
|
|
2816
2842
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2817
2843
|
}
|
|
2818
2844
|
declare function SeatIcon({
|
|
@@ -2821,10 +2847,10 @@ declare function SeatIcon({
|
|
|
2821
2847
|
fill,
|
|
2822
2848
|
size,
|
|
2823
2849
|
...rest
|
|
2824
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2850
|
+
}: SvgIconProps & CustomSvgProps$28): JSX.Element;
|
|
2825
2851
|
//#endregion
|
|
2826
2852
|
//#region src/DesignTokens/Icons/Miscellaneous/SendEmailIcon.d.ts
|
|
2827
|
-
interface CustomSvgProps$
|
|
2853
|
+
interface CustomSvgProps$27 {
|
|
2828
2854
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2829
2855
|
}
|
|
2830
2856
|
declare function SendEmailIcon({
|
|
@@ -2833,10 +2859,10 @@ declare function SendEmailIcon({
|
|
|
2833
2859
|
fill,
|
|
2834
2860
|
size,
|
|
2835
2861
|
...rest
|
|
2836
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2862
|
+
}: SvgIconProps & CustomSvgProps$27): JSX.Element;
|
|
2837
2863
|
//#endregion
|
|
2838
2864
|
//#region src/DesignTokens/Icons/Miscellaneous/SendIcon.d.ts
|
|
2839
|
-
interface CustomSvgProps$
|
|
2865
|
+
interface CustomSvgProps$26 {
|
|
2840
2866
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2841
2867
|
}
|
|
2842
2868
|
declare function SendIcon({
|
|
@@ -2845,10 +2871,10 @@ declare function SendIcon({
|
|
|
2845
2871
|
fill,
|
|
2846
2872
|
size,
|
|
2847
2873
|
...rest
|
|
2848
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2874
|
+
}: SvgIconProps & CustomSvgProps$26): JSX.Element;
|
|
2849
2875
|
//#endregion
|
|
2850
2876
|
//#region src/DesignTokens/Icons/Miscellaneous/SmartBrainIcon.d.ts
|
|
2851
|
-
interface CustomSvgProps$
|
|
2877
|
+
interface CustomSvgProps$25 {
|
|
2852
2878
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2853
2879
|
}
|
|
2854
2880
|
declare function SmartBrainIcon({
|
|
@@ -2857,10 +2883,10 @@ declare function SmartBrainIcon({
|
|
|
2857
2883
|
fill,
|
|
2858
2884
|
size,
|
|
2859
2885
|
...rest
|
|
2860
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2886
|
+
}: SvgIconProps & CustomSvgProps$25): JSX.Element;
|
|
2861
2887
|
//#endregion
|
|
2862
2888
|
//#region src/DesignTokens/Icons/Miscellaneous/StarFilledIcon.d.ts
|
|
2863
|
-
interface CustomSvgProps$
|
|
2889
|
+
interface CustomSvgProps$24 {
|
|
2864
2890
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2865
2891
|
}
|
|
2866
2892
|
declare function StarFilledIcon({
|
|
@@ -2869,10 +2895,10 @@ declare function StarFilledIcon({
|
|
|
2869
2895
|
fill,
|
|
2870
2896
|
size,
|
|
2871
2897
|
...rest
|
|
2872
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2898
|
+
}: SvgIconProps & CustomSvgProps$24): JSX.Element;
|
|
2873
2899
|
//#endregion
|
|
2874
2900
|
//#region src/DesignTokens/Icons/Miscellaneous/StarIcon.d.ts
|
|
2875
|
-
interface CustomSvgProps$
|
|
2901
|
+
interface CustomSvgProps$23 {
|
|
2876
2902
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2877
2903
|
}
|
|
2878
2904
|
declare function StarIcon({
|
|
@@ -2881,10 +2907,10 @@ declare function StarIcon({
|
|
|
2881
2907
|
fill,
|
|
2882
2908
|
size,
|
|
2883
2909
|
...rest
|
|
2884
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2910
|
+
}: SvgIconProps & CustomSvgProps$23): JSX.Element;
|
|
2885
2911
|
//#endregion
|
|
2886
2912
|
//#region src/DesignTokens/Icons/Miscellaneous/TaskIcon.d.ts
|
|
2887
|
-
interface CustomSvgProps$
|
|
2913
|
+
interface CustomSvgProps$22 {
|
|
2888
2914
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2889
2915
|
}
|
|
2890
2916
|
declare function TaskIcon({
|
|
@@ -2893,10 +2919,10 @@ declare function TaskIcon({
|
|
|
2893
2919
|
fill,
|
|
2894
2920
|
size,
|
|
2895
2921
|
...rest
|
|
2896
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2922
|
+
}: SvgIconProps & CustomSvgProps$22): JSX.Element;
|
|
2897
2923
|
//#endregion
|
|
2898
2924
|
//#region src/DesignTokens/Icons/Miscellaneous/TestDetailsIcon.d.ts
|
|
2899
|
-
interface CustomSvgProps$
|
|
2925
|
+
interface CustomSvgProps$21 {
|
|
2900
2926
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2901
2927
|
}
|
|
2902
2928
|
declare function TestDetailsIcon({
|
|
@@ -2905,10 +2931,10 @@ declare function TestDetailsIcon({
|
|
|
2905
2931
|
fill,
|
|
2906
2932
|
size,
|
|
2907
2933
|
...rest
|
|
2908
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2934
|
+
}: SvgIconProps & CustomSvgProps$21): JSX.Element;
|
|
2909
2935
|
//#endregion
|
|
2910
2936
|
//#region src/DesignTokens/Icons/Miscellaneous/TestIcon.d.ts
|
|
2911
|
-
interface CustomSvgProps$
|
|
2937
|
+
interface CustomSvgProps$20 {
|
|
2912
2938
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2913
2939
|
}
|
|
2914
2940
|
declare function TestIcon({
|
|
@@ -2917,10 +2943,10 @@ declare function TestIcon({
|
|
|
2917
2943
|
fill,
|
|
2918
2944
|
size,
|
|
2919
2945
|
...rest
|
|
2920
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2946
|
+
}: SvgIconProps & CustomSvgProps$20): JSX.Element;
|
|
2921
2947
|
//#endregion
|
|
2922
2948
|
//#region src/DesignTokens/Icons/Miscellaneous/ThreeColumnIcon.d.ts
|
|
2923
|
-
interface CustomSvgProps$
|
|
2949
|
+
interface CustomSvgProps$19 {
|
|
2924
2950
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2925
2951
|
}
|
|
2926
2952
|
declare function ThreeColumnIcon({
|
|
@@ -2929,10 +2955,10 @@ declare function ThreeColumnIcon({
|
|
|
2929
2955
|
fill,
|
|
2930
2956
|
size,
|
|
2931
2957
|
...rest
|
|
2932
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2958
|
+
}: SvgIconProps & CustomSvgProps$19): JSX.Element;
|
|
2933
2959
|
//#endregion
|
|
2934
2960
|
//#region src/DesignTokens/Icons/Miscellaneous/TwoColumnIcon.d.ts
|
|
2935
|
-
interface CustomSvgProps$
|
|
2961
|
+
interface CustomSvgProps$18 {
|
|
2936
2962
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2937
2963
|
}
|
|
2938
2964
|
declare function TwoColumnIcon({
|
|
@@ -2941,10 +2967,10 @@ declare function TwoColumnIcon({
|
|
|
2941
2967
|
fill,
|
|
2942
2968
|
size,
|
|
2943
2969
|
...rest
|
|
2944
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2970
|
+
}: SvgIconProps & CustomSvgProps$18): JSX.Element;
|
|
2945
2971
|
//#endregion
|
|
2946
2972
|
//#region src/DesignTokens/Icons/Miscellaneous/UnmoderatedIcon.d.ts
|
|
2947
|
-
interface CustomSvgProps$
|
|
2973
|
+
interface CustomSvgProps$17 {
|
|
2948
2974
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2949
2975
|
}
|
|
2950
2976
|
declare function UnmoderatedIcon({
|
|
@@ -2953,10 +2979,10 @@ declare function UnmoderatedIcon({
|
|
|
2953
2979
|
fill,
|
|
2954
2980
|
size,
|
|
2955
2981
|
...rest
|
|
2956
|
-
}: SvgIconProps & CustomSvgProps$
|
|
2982
|
+
}: SvgIconProps & CustomSvgProps$17): JSX.Element;
|
|
2957
2983
|
//#endregion
|
|
2958
2984
|
//#region src/DesignTokens/Icons/Miscellaneous/ViewIcon.d.ts
|
|
2959
|
-
interface CustomSvgProps$
|
|
2985
|
+
interface CustomSvgProps$16 {
|
|
2960
2986
|
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2961
2987
|
}
|
|
2962
2988
|
declare function ViewIcon({
|
|
@@ -2965,6 +2991,54 @@ declare function ViewIcon({
|
|
|
2965
2991
|
fill,
|
|
2966
2992
|
size,
|
|
2967
2993
|
...rest
|
|
2994
|
+
}: SvgIconProps & CustomSvgProps$16): JSX.Element;
|
|
2995
|
+
//#endregion
|
|
2996
|
+
//#region src/DesignTokens/Icons/Miscellaneous/QuoteIcon.d.ts
|
|
2997
|
+
interface CustomSvgProps$15 {
|
|
2998
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
2999
|
+
}
|
|
3000
|
+
declare function QuoteIcon({
|
|
3001
|
+
stroke,
|
|
3002
|
+
strokeWidth,
|
|
3003
|
+
fill,
|
|
3004
|
+
size,
|
|
3005
|
+
...rest
|
|
3006
|
+
}: SvgIconProps & CustomSvgProps$15): JSX.Element;
|
|
3007
|
+
//#endregion
|
|
3008
|
+
//#region src/DesignTokens/Icons/Miscellaneous/HistoryIcon.d.ts
|
|
3009
|
+
interface CustomSvgProps$14 {
|
|
3010
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
3011
|
+
}
|
|
3012
|
+
declare function HistoryIcon({
|
|
3013
|
+
stroke,
|
|
3014
|
+
strokeWidth,
|
|
3015
|
+
fill,
|
|
3016
|
+
size,
|
|
3017
|
+
...rest
|
|
3018
|
+
}: SvgIconProps & CustomSvgProps$14): JSX.Element;
|
|
3019
|
+
//#endregion
|
|
3020
|
+
//#region src/DesignTokens/Icons/Miscellaneous/ExpandIcon.d.ts
|
|
3021
|
+
interface CustomSvgProps$13 {
|
|
3022
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
3023
|
+
}
|
|
3024
|
+
declare function ExpandIcon({
|
|
3025
|
+
stroke,
|
|
3026
|
+
strokeWidth,
|
|
3027
|
+
fill,
|
|
3028
|
+
size,
|
|
3029
|
+
...rest
|
|
3030
|
+
}: SvgIconProps & CustomSvgProps$13): JSX.Element;
|
|
3031
|
+
//#endregion
|
|
3032
|
+
//#region src/DesignTokens/Icons/Miscellaneous/PaintingPaletteIcon.d.ts
|
|
3033
|
+
interface CustomSvgProps$12 {
|
|
3034
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
3035
|
+
}
|
|
3036
|
+
declare function PaintingPaletteIcon({
|
|
3037
|
+
stroke,
|
|
3038
|
+
strokeWidth,
|
|
3039
|
+
fill,
|
|
3040
|
+
size,
|
|
3041
|
+
...rest
|
|
2968
3042
|
}: SvgIconProps & CustomSvgProps$12): JSX.Element;
|
|
2969
3043
|
//#endregion
|
|
2970
3044
|
//#region src/DesignTokens/Icons/Miscellaneous/ViewOffIcon.d.ts
|
|
@@ -5004,5 +5078,5 @@ declare const getIconSize: (size: "sm" | "base" | "lg" | "xl") => string;
|
|
|
5004
5078
|
*/
|
|
5005
5079
|
declare const getReadableTextColor: (backgroundColor: Colord) => string;
|
|
5006
5080
|
//#endregion
|
|
5007
|
-
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, 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, 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, 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, PencilWriteIcon, PlayFillIcon, PlayIcon, PlayStoreBadge, PointingMan, PopoverBeta, PreviousIcon, PricingCard, PricingCheckedIcon, ProjectSvg as ProjectHoverSvg, ProjectSvg$1 as ProjectSvg, QuestionButton, QuestionCircledIcon, 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 };
|
|
5008
5082
|
//# sourceMappingURL=index.d.cts.map
|