mirror of
https://github.com/FranP-code/Reflecto.git
synced 2025-10-13 00:43:31 +00:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
import { Loader2 } from "lucide-react";
|
|
|
|
export default function Loader() {
|
|
return (
|
|
<div className="flex h-full items-center justify-center pt-8">
|
|
<Loader2 className="animate-spin" />
|
|
</div>
|
|
);
|
|
}
|