Skip to content

Commit

Permalink
change loader from hamster to cube (Helicone#2978)
Browse files Browse the repository at this point in the history
  • Loading branch information
kavinvalli authored Nov 20, 2024
1 parent cfef208 commit 0393713
Show file tree
Hide file tree
Showing 2 changed files with 2,931 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/components/shared/loadingAnimation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import * as hamster from "../../public/lottie/Aniki Hamster.json";
import * as plane from "../../public/lottie/Paper Airplane.json";
import * as PartyParrot from "../../public/lottie/PartyParrot.json";
import * as Pacman from "../../public/lottie/Pacman.json";
import * as Cube from "../../public/lottie/cube.json";

type Animation =
| typeof chicky
Expand All @@ -28,7 +29,7 @@ const LoadingAnimation = ({
height = 300,
width = 300,
}: LoadingAnimationProps) => {
const animation = defaultAnimation || hamster;
const animation = defaultAnimation || Cube;

return (
<div className="flex flex-col items-center justify-center align-middle w-full space-y-4">
Expand Down
Loading

0 comments on commit 0393713

Please sign in to comment.