@abqm-ds/icons 1.0.18 → 1.0.20
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 +6 -6
- package/CHANGELOG.md +12 -0
- package/dist/index.cjs +256 -205
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +254 -205
- package/package.json +1 -1
- package/src/components/icons/DashIcon.tsx +17 -0
- package/src/components/icons/ShareIcon.tsx +24 -0
- package/src/components/icons/index.ts +2 -0
- package/src/icons/dash.svg +3 -0
- package/src/icons/share.svg +10 -0
package/dist/index.d.cts
CHANGED
|
@@ -25,6 +25,8 @@ declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
25
25
|
|
|
26
26
|
declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
|
+
declare const DashIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
28
30
|
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
31
|
|
|
30
32
|
declare const FileEarmarkCheckIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -55,6 +57,8 @@ declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
55
57
|
|
|
56
58
|
declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
57
59
|
|
|
60
|
+
declare const ShareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
58
62
|
declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
59
63
|
|
|
60
64
|
declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -121,4 +125,4 @@ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react
|
|
|
121
125
|
|
|
122
126
|
declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
123
127
|
|
|
124
|
-
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, 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, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|
|
128
|
+
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, DashIcon, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, 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, ShareIcon, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.J
|
|
|
25
25
|
|
|
26
26
|
declare const CircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
27
27
|
|
|
28
|
+
declare const DashIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
|
+
|
|
28
30
|
declare const FacebookIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
29
31
|
|
|
30
32
|
declare const FileEarmarkCheckIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -55,6 +57,8 @@ declare const PrinterIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
|
|
|
55
57
|
|
|
56
58
|
declare const SearchIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
57
59
|
|
|
60
|
+
declare const ShareIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
61
|
+
|
|
58
62
|
declare const SpinnerRingResizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
59
63
|
|
|
60
64
|
declare const StarIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
@@ -121,4 +125,4 @@ declare const WesternPleasureIconSEQM: (props: SVGProps<SVGSVGElement>) => react
|
|
|
121
125
|
|
|
122
126
|
declare const WorkingCowHorseIconSEQM: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
123
127
|
|
|
124
|
-
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, 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, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|
|
128
|
+
export { AbqmOficialColoredIconSEQM, ApartacaoIconSEQM, AppleIcon, ArrowDownShortIcon, AwardFillIcon, BarChartIcon, BarChartLineIcon, BoxArrowInLeftIcon, BreakawayRopingIconSEQM, BroadcastIcon, BulldogIconSEQM, CaretDownFillIcon, CaretLeftFillIcon, CaretRightFillIcon, CheckIcon, CincoTamboresIconSEQM, CircleIcon, ConformacaoIconSEQM, DashIcon, EventSummaryDefaultIcon, FacebookIcon, FileEarmarkCheckIcon, 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, ShareIcon, SpinnerRingResizeIcon, StarIcon, TeamPenningIconSEQM, TresTamboresIconSEQM, TrophyIcon, VaquejadaIconSEQM, WesternPleasureIconSEQM, WorkingCowHorseIconSEQM, XIcon, YoutubeIcon };
|