@guideveloper/design-assets 0.1.9 → 0.1.11
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 +16 -5
- package/dist/index.d.ts +16 -5
- package/dist/index.js +9948 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9946 -6
- 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/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 +9940 -0
- package/src/components/index.ts +3 -2
- package/src/metadata/index.ts +8 -2
|
@@ -13353,8 +13353,8 @@ const animationData = {
|
|
|
13353
13353
|
]
|
|
13354
13354
|
} as const;
|
|
13355
13355
|
|
|
13356
|
-
const
|
|
13356
|
+
const AnimationCardOrderSuccess: React.FC<{ loop?: boolean; autoplay?: boolean; className?: string } & Partial<React.ComponentProps<typeof Lottie>>> = ({ loop = true, autoplay = true, ...rest }) => {
|
|
13357
13357
|
return <Lottie animationData={animationData} loop={loop} autoplay={autoplay} {...rest} />;
|
|
13358
13358
|
};
|
|
13359
13359
|
|
|
13360
|
-
export {
|
|
13360
|
+
export { AnimationCardOrderSuccess };
|