@abqm-ds/icons 1.0.14 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/CHANGELOG.md +12 -0
  3. package/README.md +13 -7
  4. package/dist/index.cjs +1108 -464
  5. package/dist/index.d.cts +56 -10
  6. package/dist/index.d.ts +56 -10
  7. package/dist/index.js +1084 -463
  8. package/package.json +10 -7
  9. package/scripts/move-icons.js +11 -6
  10. package/scripts/process.js +8 -2
  11. package/scripts/updateIndex.js +16 -6
  12. package/src/components/ApartacaoIconSEQM.tsx +20 -0
  13. package/src/components/BreakawayRopingIconSEQM.tsx +20 -0
  14. package/src/components/BulldogIconSEQM.tsx +20 -0
  15. package/src/components/CincoTamboresIconSEQM.tsx +20 -0
  16. package/src/components/ConformacaoIconSEQM.tsx +20 -0
  17. package/src/components/LacoCabecaIconSEQM.tsx +20 -0
  18. package/src/components/LacoCompridoIconSEQM.tsx +20 -0
  19. package/src/components/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  20. package/src/components/LacoEmDuplaIconSEQM.tsx +20 -0
  21. package/src/components/LacoIndividualIconSEQM.tsx +20 -0
  22. package/src/components/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  23. package/src/components/LacoPeIconSEQM.tsx +20 -0
  24. package/src/components/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  25. package/src/components/PerformanceHalterIconSEQM.tsx +20 -0
  26. package/src/components/RanchSortingIconSEQM.tsx +20 -0
  27. package/src/components/RedeasIconSEQM.tsx +20 -0
  28. package/src/components/SeisBalizasIconSEQM.tsx +20 -0
  29. package/src/components/TeamPenningIconSEQM.tsx +20 -0
  30. package/src/components/TresTamboresIconSEQM.tsx +20 -0
  31. package/src/components/VaquejadaIconSEQM.tsx +20 -0
  32. package/src/components/WesternPleasureIconSEQM.tsx +20 -0
  33. package/src/components/WorkingCowHorseIconSEQM.tsx +20 -0
  34. package/src/components/icons/AppleIcon.tsx +22 -0
  35. package/src/components/icons/ArrowDownShortIcon.tsx +19 -0
  36. package/src/components/icons/AwardFillIcon.tsx +21 -0
  37. package/src/components/icons/BarChartIcon.tsx +17 -0
  38. package/src/components/icons/BoxArrowInLeftIcon.tsx +25 -0
  39. package/src/components/icons/BroadcastIcon.tsx +24 -0
  40. package/src/components/icons/CaretDownFillIcon.tsx +17 -0
  41. package/src/components/icons/CaretLeftFillIcon.tsx +17 -0
  42. package/src/components/icons/CaretRightFillIcon.tsx +17 -0
  43. package/src/components/icons/CircleIcon.tsx +24 -0
  44. package/src/components/icons/FacebookIcon.tsx +24 -0
  45. package/src/components/icons/FileEarmarkTextIcon.tsx +21 -0
  46. package/src/components/icons/FileTextIcon.tsx +21 -0
  47. package/src/components/icons/FilterIcon.tsx +17 -0
  48. package/src/components/icons/GoogleColorIcon.tsx +28 -0
  49. package/src/components/icons/GoogleIcon.tsx +24 -0
  50. package/src/components/icons/InstagramIcon.tsx +24 -0
  51. package/src/components/icons/ListIcon.tsx +19 -0
  52. package/src/components/icons/ListOlIcon.tsx +23 -0
  53. package/src/components/icons/PencilSquareIcon.tsx +23 -0
  54. package/src/components/icons/PersonCircleIcon.tsx +26 -0
  55. package/src/components/icons/PlusIcon.tsx +17 -0
  56. package/src/components/icons/PrinterIcon.tsx +18 -0
  57. package/src/components/icons/SearchIcon.tsx +24 -0
  58. package/src/components/icons/SpinnerRingResizeIcon.tsx +37 -0
  59. package/src/components/icons/StarIcon.tsx +24 -0
  60. package/src/components/icons/XIcon.tsx +17 -0
  61. package/src/components/icons/YoutubeIcon.tsx +17 -0
  62. package/src/components/icons/index.ts +28 -0
  63. package/src/components/iconsSEQM/ApartacaoIconSEQM.tsx +20 -0
  64. package/src/components/iconsSEQM/BreakawayRopingIconSEQM.tsx +20 -0
  65. package/src/components/iconsSEQM/BulldogIconSEQM.tsx +20 -0
  66. package/src/components/iconsSEQM/CincoTamboresIconSEQM.tsx +20 -0
  67. package/src/components/iconsSEQM/ConformacaoIconSEQM.tsx +20 -0
  68. package/src/components/iconsSEQM/LacoCabecaIconSEQM.tsx +20 -0
  69. package/src/components/iconsSEQM/LacoCompridoIconSEQM.tsx +20 -0
  70. package/src/components/iconsSEQM/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  71. package/src/components/iconsSEQM/LacoEmDuplaIconSEQM.tsx +20 -0
  72. package/src/components/iconsSEQM/LacoIndividualIconSEQM.tsx +20 -0
  73. package/src/components/iconsSEQM/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  74. package/src/components/iconsSEQM/LacoPeIconSEQM.tsx +20 -0
  75. package/src/components/iconsSEQM/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  76. package/src/components/iconsSEQM/PerformanceHalterIconSEQM.tsx +20 -0
  77. package/src/components/iconsSEQM/RanchSortingIconSEQM.tsx +20 -0
  78. package/src/components/iconsSEQM/RedeasIconSEQM.tsx +20 -0
  79. package/src/components/iconsSEQM/SeisBalizasIconSEQM.tsx +20 -0
  80. package/src/components/iconsSEQM/TeamPenningIconSEQM.tsx +20 -0
  81. package/src/components/iconsSEQM/TresTamboresIconSEQM.tsx +20 -0
  82. package/src/components/iconsSEQM/VaquejadaIconSEQM.tsx +20 -0
  83. package/src/components/iconsSEQM/WesternPleasureIconSEQM.tsx +20 -0
  84. package/src/components/iconsSEQM/WorkingCowHorseIconSEQM.tsx +20 -0
  85. package/src/components/iconsSEQM/index.ts +22 -0
  86. package/src/{_logos/LogoPadrao.tsx → components/logos/LogoPadraoIcon.tsx} +6 -7
  87. package/src/{_logos/LogoSeqmBlackGreen.tsx → components/logos/LogoSeqmBlackGreenIcon.tsx} +13 -14
  88. package/src/{_logos/LogoSeqm.tsx → components/logos/LogoSeqmIcon.tsx} +13 -14
  89. package/src/{_logos/LogoSeqmMobile.tsx → components/logos/LogoSeqmMobileIcon.tsx} +7 -8
  90. package/src/components/logos/index.ts +4 -0
  91. package/src/icons/google-color.svg +1 -0
  92. package/src/icons/google.svg +10 -0
  93. package/src/iconsSEQM/apartacao.svg +3 -0
  94. package/src/iconsSEQM/breakaway-roping.svg +3 -0
  95. package/src/iconsSEQM/bulldog.svg +3 -0
  96. package/src/iconsSEQM/cinco-tambores.svg +3 -0
  97. package/src/iconsSEQM/conformacao.svg +3 -0
  98. package/src/iconsSEQM/laco-cabeca.svg +3 -0
  99. package/src/iconsSEQM/laco-comprido-tecnico.svg +3 -0
  100. package/src/iconsSEQM/laco-comprido.svg +3 -0
  101. package/src/iconsSEQM/laco-em-dupla.svg +3 -0
  102. package/src/iconsSEQM/laco-individual-tecnico.svg +3 -0
  103. package/src/iconsSEQM/laco-individual.svg +3 -0
  104. package/src/iconsSEQM/laco-pe.svg +3 -0
  105. package/src/iconsSEQM/maneabilidade-e-velocidade.svg +6 -0
  106. package/src/iconsSEQM/performance-halter.svg +3 -0
  107. package/src/iconsSEQM/ranch-sorting.svg +3 -0
  108. package/src/iconsSEQM/redeas.svg +3 -0
  109. package/src/iconsSEQM/seis-balizas.svg +3 -0
  110. package/src/iconsSEQM/team-penning.svg +3 -0
  111. package/src/iconsSEQM/tres-tambores.svg +3 -0
  112. package/src/iconsSEQM/vaquejada.svg +4 -0
  113. package/src/iconsSEQM/western-pleasure.svg +3 -0
  114. package/src/iconsSEQM/working-cow-horse.svg +3 -0
  115. package/src/index.ts +3 -31
package/dist/index.d.cts CHANGED
@@ -29,7 +29,9 @@ declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtim
29
29
 
30
30
  declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
31
31
 
32
- declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
32
+ declare const GoogleColorIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
+
34
+ declare const GoogleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
35
 
34
36
  declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
37
 
@@ -37,14 +39,6 @@ declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
37
39
 
38
40
  declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
39
41
 
40
- declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
41
-
42
- declare const LogoSeqmBlackGreenIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
-
44
- declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
-
46
- declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
-
48
42
  declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
49
43
 
50
44
  declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -63,4 +57,56 @@ declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.E
63
57
 
64
58
  declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
65
59
 
66
- export { AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CircleIcon, FacebookIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, HorseIcon, InstagramIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, SpinnerRingResizeIcon, StarIcon, XIcon, YoutubeIcon };
60
+ declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
61
+
62
+ declare const LogoSeqmBlackGreenIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
63
+
64
+ declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
65
+
66
+ declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
67
+
68
+ declare const ApartacaoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
69
+
70
+ declare const BreakawayRopingIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
71
+
72
+ declare const BulldogIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
73
+
74
+ declare const CincoTamboresIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
75
+
76
+ declare const ConformacaoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
77
+
78
+ declare const LacoCabecaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
79
+
80
+ declare const LacoCompridoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
81
+
82
+ declare const LacoCompridoTecnicoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
83
+
84
+ declare const LacoEmDuplaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
85
+
86
+ declare const LacoIndividualIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
87
+
88
+ declare const LacoIndividualTecnicoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
89
+
90
+ declare const LacoPeIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
91
+
92
+ declare const ManeabilidadeEVelocidadeIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
93
+
94
+ declare const PerformanceHalterIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
95
+
96
+ declare const RanchSortingIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
97
+
98
+ declare const RedeasIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare const SeisBalizasIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
101
+
102
+ declare const TeamPenningIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
103
+
104
+ declare const TresTamboresIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
105
+
106
+ declare const VaquejadaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
107
+
108
+ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
109
+
110
+ declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
111
+
112
+ export { ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, FacebookIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, GoogleColorIcon, GoogleIcon, InstagramIcon, LacoCabecaIconSEQM, LacoCompridoIconSEQM, LacoCompridoTecnicoIconSEQM, LacoEmDuplaIconSEQM, LacoIndividualIconSEQM, LacoIndividualTecnicoIconSEQM, LacoPeIconSEQM, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, ManeabilidadeEVelocidadeIconSEQM, PencilSquareIcon, PerformanceHalterIconSEQM, PersonCircleIcon, PlusIcon, PrinterIcon, RanchSortingIconSEQM, RedeasIconSEQM, SearchIcon, SeisBalizasIconSEQM, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
package/dist/index.d.ts CHANGED
@@ -29,7 +29,9 @@ declare const FileTextIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtim
29
29
 
30
30
  declare const FilterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
31
31
 
32
- declare const HorseIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
32
+ declare const GoogleColorIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
+
34
+ declare const GoogleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
33
35
 
34
36
  declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
35
37
 
@@ -37,14 +39,6 @@ declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
37
39
 
38
40
  declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
39
41
 
40
- declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
41
-
42
- declare const LogoSeqmBlackGreenIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
43
-
44
- declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
45
-
46
- declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
47
-
48
42
  declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
49
43
 
50
44
  declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -63,4 +57,56 @@ declare const XIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.E
63
57
 
64
58
  declare const YoutubeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
65
59
 
66
- export { AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BoxArrowInLeftIcon, BroadcastIcon, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CircleIcon, FacebookIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, HorseIcon, InstagramIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, PencilSquareIcon, PersonCircleIcon, PlusIcon, PrinterIcon, SearchIcon, SpinnerRingResizeIcon, StarIcon, XIcon, YoutubeIcon };
60
+ declare const LogoPadraoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
61
+
62
+ declare const LogoSeqmBlackGreenIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
63
+
64
+ declare const LogoSeqmIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
65
+
66
+ declare const LogoSeqmMobileIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
67
+
68
+ declare const ApartacaoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
69
+
70
+ declare const BreakawayRopingIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
71
+
72
+ declare const BulldogIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
73
+
74
+ declare const CincoTamboresIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
75
+
76
+ declare const ConformacaoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
77
+
78
+ declare const LacoCabecaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
79
+
80
+ declare const LacoCompridoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
81
+
82
+ declare const LacoCompridoTecnicoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
83
+
84
+ declare const LacoEmDuplaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
85
+
86
+ declare const LacoIndividualIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
87
+
88
+ declare const LacoIndividualTecnicoIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
89
+
90
+ declare const LacoPeIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
91
+
92
+ declare const ManeabilidadeEVelocidadeIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
93
+
94
+ declare const PerformanceHalterIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
95
+
96
+ declare const RanchSortingIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
97
+
98
+ declare const RedeasIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
99
+
100
+ declare const SeisBalizasIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
101
+
102
+ declare const TeamPenningIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
103
+
104
+ declare const TresTamboresIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
105
+
106
+ declare const VaquejadaIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
107
+
108
+ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
109
+
110
+ declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
111
+
112
+ export { ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, FacebookIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, GoogleColorIcon, GoogleIcon, InstagramIcon, LacoCabecaIconSEQM, LacoCompridoIconSEQM, LacoCompridoTecnicoIconSEQM, LacoEmDuplaIconSEQM, LacoIndividualIconSEQM, LacoIndividualTecnicoIconSEQM, LacoPeIconSEQM, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, ManeabilidadeEVelocidadeIconSEQM, PencilSquareIcon, PerformanceHalterIconSEQM, PersonCircleIcon, PlusIcon, PrinterIcon, RanchSortingIconSEQM, RedeasIconSEQM, SearchIcon, SeisBalizasIconSEQM, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };