From 5be79b99557a1b37840316e7d80d32aed42a21ac Mon Sep 17 00:00:00 2001 From: braginini Date: Fri, 8 May 2026 16:11:51 +0200 Subject: [PATCH] Add new loading indicator --- src/assets/icons/LoadingIcon.tsx | 123 ++++++------------------ src/components/ui/FullScreenLoading.tsx | 2 +- 2 files changed, 29 insertions(+), 96 deletions(-) diff --git a/src/assets/icons/LoadingIcon.tsx b/src/assets/icons/LoadingIcon.tsx index 50b20528d..bc0d59972 100644 --- a/src/assets/icons/LoadingIcon.tsx +++ b/src/assets/icons/LoadingIcon.tsx @@ -3,103 +3,36 @@ import { iconProperties, IconProps } from "@/assets/icons/IconProperties"; export default function LoadingIcon(props: IconProps) { return ( - - - - - - - - - - - - - - - - - - - - + + + + + + ); -} +} \ No newline at end of file diff --git a/src/components/ui/FullScreenLoading.tsx b/src/components/ui/FullScreenLoading.tsx index 944381449..8099527cf 100644 --- a/src/components/ui/FullScreenLoading.tsx +++ b/src/components/ui/FullScreenLoading.tsx @@ -12,7 +12,7 @@ export default function FullScreenLoading({ fullScreen = true }: Props) { fullScreen && "h-screen", )} > - + ); }