diff options
| author | 2026-02-25 01:32:51 +0800 | |
|---|---|---|
| committer | 2026-02-25 01:32:51 +0800 | |
| commit | 66668d85d603c5841d755a6023aa1925559fc6d4 (patch) | |
| tree | 485464148c76b0021efb55b7d2afd1c3004ceee0 /packages/ui-new/src/components/ui/spinner.tsx | |
| parent | a6773bd092db654360c599ca6b0108ea0e456e8c (diff) | |
| download | DropOut-66668d85d603c5841d755a6023aa1925559fc6d4.tar.gz DropOut-66668d85d603c5841d755a6023aa1925559fc6d4.zip | |
chore(workspace): replace legacy codes
Diffstat (limited to 'packages/ui-new/src/components/ui/spinner.tsx')
| -rw-r--r-- | packages/ui-new/src/components/ui/spinner.tsx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/ui-new/src/components/ui/spinner.tsx b/packages/ui-new/src/components/ui/spinner.tsx deleted file mode 100644 index 91f6a63..0000000 --- a/packages/ui-new/src/components/ui/spinner.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { cn } from "@/lib/utils" -import { Loader2Icon } from "lucide-react" - -function Spinner({ className, ...props }: React.ComponentProps<"svg">) { - return ( - <Loader2Icon role="status" aria-label="Loading" className={cn("size-4 animate-spin", className)} {...props} /> - ) -} - -export { Spinner } |