@guideveloper/design-assets 0.1.10 → 0.1.12
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/README.md +7 -11
- package/dist/index.d.mts +18 -7
- package/dist/index.d.ts +18 -7
- package/dist/index.js +8832 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8829 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -14
- package/src/components/animations/AnimationCardOrderSuccess.tsx +13360 -0
- package/src/components/animations/AnimationCardordersuccess.tsx +2 -2
- package/src/components/animations/AnimationCheckEmail.tsx +8817 -0
- package/src/components/animations/AnimationLoadingHourglassPurple.tsx +3491 -0
- package/src/components/animations/AnimationLoadinghourglasspurple.tsx +2 -2
- package/src/components/animations/AnimationPleasedToMeetYou.tsx +9940 -0
- package/src/components/animations/AnimationPleasedtomeetyou.tsx +2 -2
- package/src/components/index.ts +4 -3
- package/src/metadata/index.ts +9 -3
|
@@ -3484,8 +3484,8 @@ const animationData = {
|
|
|
3484
3484
|
]
|
|
3485
3485
|
} as const;
|
|
3486
3486
|
|
|
3487
|
-
const
|
|
3487
|
+
const AnimationLoadingHourglassPurple: React.FC<{ loop?: boolean; autoplay?: boolean; className?: string } & Partial<React.ComponentProps<typeof Lottie>>> = ({ loop = true, autoplay = true, ...rest }) => {
|
|
3488
3488
|
return <Lottie animationData={animationData} loop={loop} autoplay={autoplay} {...rest} />;
|
|
3489
3489
|
};
|
|
3490
3490
|
|
|
3491
|
-
export {
|
|
3491
|
+
export { AnimationLoadingHourglassPurple };
|