Files
portabase/src/components/wrappers/common/loading/loading-spinner.tsx
T

28 lines
734 B
TypeScript
Raw Normal View History

2024-12-16 16:10:02 +01:00
import React from "react";
2025-05-16 15:54:17 +02:00
import { cn } from "@/lib/utils";
2024-12-16 16:10:02 +01:00
export interface ISVGProps extends React.SVGProps<SVGSVGElement> {
size?: number;
className?: string;
}
2025-05-16 15:54:17 +02:00
export const LoadingSpinner = ({ size = 24, className, ...props }: ISVGProps) => {
2024-12-16 16:10:02 +01:00
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
{...props}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
className={cn("animate-spin", className)}
>
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
</svg>
);
2025-05-16 15:54:17 +02:00
};