@abqm-ds/icons 1.0.20 → 2.0.0
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +439 -176
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +435 -176
- package/package.json +3 -2
- package/scripts/move-icons.js +4 -1
- package/scripts/updateIndex.js +1 -1
- package/src/_images/DefaultHorseRounded.tsx +38 -0
- package/src/_images/DefaultHorseSquad.tsx +69 -0
- package/src/components/icons/LaurelIcon.tsx +25 -0
- package/src/components/icons/MedalIcon.tsx +62 -0
- package/src/components/icons/index.ts +2 -0
- package/src/components/images/DefaultHorseRoundedIconIMG.tsx +37 -0
- package/src/components/images/DefaultHorseSquadIconIMG.tsx +68 -0
- package/src/components/images/index.ts +2 -0
- package/src/icons/laurel.svg +35 -0
- package/src/icons/medal.svg +25 -0
- package/src/images/default-horse-rounded.svg +6 -0
- package/src/images/default-horse-squad.svg +22 -0
- package/src/index.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -43,10 +43,14 @@ declare const GoogleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
|
|
|
43
43
|
|
|
44
44
|
declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
45
|
|
|
46
|
+
declare const LaurelIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
46
48
|
declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
49
|
|
|
48
50
|
declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
51
|
|
|
52
|
+
declare const MedalIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
50
54
|
declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
55
|
|
|
52
56
|
declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -125,4 +129,8 @@ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react
|
|
|
125
129
|
|
|
126
130
|
declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
127
131
|
|
|
128
|
-
|
|
132
|
+
declare const DefaultHorseRoundedIconIMG: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const DefaultHorseSquadIconIMG: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
136
|
+
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, DashIcon, DefaultHorseRoundedIconIMG, DefaultHorseSquadIconIMG, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, GoogleColorIcon, GoogleIcon, InstagramIcon, LacoCabecaIconSEQM, LacoCompridoIconSEQM, LacoCompridoTecnicoIconSEQM, LacoEmDuplaIconSEQM, LacoIndividualIconSEQM, LacoIndividualTecnicoIconSEQM, LacoPeIconSEQM, LaurelIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, ManeabilidadeEVelocidadeIconSEQM, MedalIcon, PencilSquareIcon, PerformanceHalterIconSEQM, PersonCircleIcon, PlusIcon, PrinterIcon, RanchSortingIconSEQM, RedeasIconSEQM, SearchIcon, SeisBalizasIconSEQM, ShareIcon, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -43,10 +43,14 @@ declare const GoogleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
|
|
|
43
43
|
|
|
44
44
|
declare const InstagramIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
45
45
|
|
|
46
|
+
declare const LaurelIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
46
48
|
declare const ListIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
47
49
|
|
|
48
50
|
declare const ListOlIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
49
51
|
|
|
52
|
+
declare const MedalIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
53
|
+
|
|
50
54
|
declare const PencilSquareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
51
55
|
|
|
52
56
|
declare const PersonCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -125,4 +129,8 @@ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react
|
|
|
125
129
|
|
|
126
130
|
declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
127
131
|
|
|
128
|
-
|
|
132
|
+
declare const DefaultHorseRoundedIconIMG: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
133
|
+
|
|
134
|
+
declare const DefaultHorseSquadIconIMG: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
135
|
+
|
|
136
|
+
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, DashIcon, DefaultHorseRoundedIconIMG, DefaultHorseSquadIconIMG, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, FileEarmarkTextIcon, FileTextIcon, FilterIcon, GoogleColorIcon, GoogleIcon, InstagramIcon, LacoCabecaIconSEQM, LacoCompridoIconSEQM, LacoCompridoTecnicoIconSEQM, LacoEmDuplaIconSEQM, LacoIndividualIconSEQM, LacoIndividualTecnicoIconSEQM, LacoPeIconSEQM, LaurelIcon, ListIcon, ListOlIcon, LogoPadraoIcon, LogoSeqmBlackGreenIcon, LogoSeqmIcon, LogoSeqmMobileIcon, ManeabilidadeEVelocidadeIconSEQM, MedalIcon, PencilSquareIcon, PerformanceHalterIconSEQM, PersonCircleIcon, PlusIcon, PrinterIcon, RanchSortingIconSEQM, RedeasIconSEQM, SearchIcon, SeisBalizasIconSEQM, ShareIcon, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|