@okshaun/components 0.5.0 → 0.5.2

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/dist/index.js CHANGED
@@ -2681,10 +2681,14 @@ const Button = React.forwardRef(
2681
2681
  );
2682
2682
  const animationStyles = {
2683
2683
  pop: css({
2684
- animation: "badgePop 200ms ease-out"
2684
+ animationName: "badgePop",
2685
+ animationDuration: "normal",
2686
+ animationTimingFunction: "default"
2685
2687
  }),
2686
2688
  popStandalone: css({
2687
- animation: "badgePopStandalone 200ms ease-out"
2689
+ animationName: "badgePopStandalone",
2690
+ animationDuration: "normal",
2691
+ animationTimingFunction: "default"
2688
2692
  })
2689
2693
  };
2690
2694
  const Badge = React.forwardRef(