import React from "react"; import { cn } from "@/lib/utils"; export interface ISVGProps extends React.SVGProps { size?: number; className?: string; } export const LoadingSpinner = ({ size = 24, className, ...props }: ISVGProps) => { return ( ); };